Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

207
Views
Elimine "Este es el formato de su cuadrícula de trama:" en una trama secundaria en un Jupyter Notebook

Cuando uso Plotly en un Jupyter Notebook para trazar una figura de iplot fuera de línea con subtramas, antes de la figura obtengo el resultado:

 This is the format of your plot grid: [ (1,1) x1,y1 ] [ (1,2) x2,y2 ] [ (1,3) x3,y3 ] [ (1,4) x4,y4 ] [ (2,1) x5,y5 ] [ (2,2) x6,y6 ] [ (2,3) x7,y7 ] [ (2,4) x8,y8 ] [ (3,1) x9,y9 ] [ (3,2) x10,y10 ] [ (3,3) x11,y11 ] [ (3,4) x12,y12 ] [ (4,1) x13,y13 ] [ (4,2) x14,y14 ] [ (4,3) x15,y15 ] [ (4,4) x16,y16 ]

¿Cómo elimino esto de la salida?

Código de ejemplo:

 import plotly as pl import plotly.graph_objs as go import numpy as np fig = pl.tools.make_subplots(cols=4, rows=4) for col in range(1, 5): for row in range(1, 5): x = np.random.rand(500) trace = go.Histogram(x=x, histnorm='density') fig.append_trace(trace, row, col) pl.offline.iplot(fig)
over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

Lo descubrí, establezca el parámetro print_grid en False:

 fig = pl.tools.make_subplots(cols=4, rows=4, print_grid=False)

que encontré en

 help(pl.tools.make_subplots)
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!