Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2949f86

Browse files
committed
rm validate=False yippee
1 parent 4861716 commit 2949f86

30 files changed

+31
-31
lines changed

_posts/python/3d-clusters/2015-07-15-alpha-shape.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@
3636
)
3737
fig = dict( data=[scatter, clusters], layout=layout )
3838
# Use py.iplot() for IPython notebook
39-
url = py.plot(fig, filename='3d point clustering', validate=False)
39+
url = py.plot(fig, filename='3d point clustering')

_posts/python/3d-filled-line/2015-04-09-3d-filled-line.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
fig = dict(data=data, layout=layout)
6565

6666
# IPython notebook
67-
# py.iplot(fig, validate=False, filename='filled-3d-lines')
67+
# py.iplot(fig, filename='filled-3d-lines')
6868

69-
url = py.plot(fig, validate=False, filename='filled-3d-lines')
69+
url = py.plot(fig, filename='filled-3d-lines')
7070

_posts/python/3d-ribbon/2015-07-15-ribbon.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@
3838
))
3939

4040
fig = { 'data':traces, 'layout':{'title':'Ribbon Plot'} }
41-
py.iplot(fig, filename='ribbon-plot-python', validate=False)
41+
py.iplot(fig, filename='ribbon-plot-python')

_posts/python/3d-subplot/2015-08-21-3d-subplots.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,4 @@
6161
fig['layout']['scene4'].update(scene)
6262

6363

64-
plot_url = py.plot(fig, file_name='multiple_plots', validate=False)
64+
plot_url = py.plot(fig, file_name='multiple_plots')

_posts/python/annotations/2015-06-29-disable-hover.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919
hoverinfo='none'
2020
)
2121

22-
url = py.plot([trace], filename='hoverinfo=none', validate=False)
22+
url = py.plot([trace], filename='hoverinfo=none')

_posts/python/annotations/2015-07-17-text-array.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@
4747
}
4848
}
4949

50-
py.iplot(fig, validate=False, filename='Canadian Cities')
50+
py.iplot(fig, filename='Canadian Cities')

_posts/python/axes/2015-06-29-axes-enumerated-ticks.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@
3131
)
3232

3333
fig = { 'data':data, 'layout':layout }
34-
url = py.plot( fig, filename='enumerated-ticks', validate=False )
34+
url = py.plot( fig, filename='enumerated-ticks' )

_posts/python/bubble/2015-08-14-bubble-colorscale.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@
3232
'data': data,
3333
'layout': layout,
3434
}
35-
plot_url = py.plot(fig, validate=False, filename='scatter-colorscale')
35+
plot_url = py.plot(fig, filename='scatter-colorscale')

_posts/python/callbacks-dropdowns/2015-04-09-dropdown.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
)
2222

2323
fig = dict( data=[dict(type = 'scattergeo')], layout=layout )
24-
url = py.plot( fig, validate=False, filename='d3-globe-empty' )
24+
url = py.plot( fig, filename='d3-globe-empty' )

_posts/python/choropleth-maps/2015-06-29-us-states-choropleth-map.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@
5656

5757
fig = dict( data=data, layout=layout )
5858

59-
url = py.plot( fig, validate=False, filename='d3-cloropleth-map' )
59+
url = py.plot( fig, filename='d3-cloropleth-map' )

_posts/python/contour/2015-06-23-contour-colorbar-tick.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@
3131
},
3232
}
3333
}]
34-
plot_url = py.plot(data, validate=False, filename='contour-custom-colorbar-tick')
34+
plot_url = py.plot(data, filename='contour-custom-colorbar-tick')

_posts/python/contour/2015-06-23-contour-xd-yd.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@
2727
'y0':10,
2828
}
2929
]
30-
plot_url = py.plot(data, validate=False, filename='simple-contour-xd-yd')
30+
plot_url = py.plot(data, filename='simple-contour-xd-yd')

_posts/python/heatmap/2015-04-09-datetime-heatmap.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@
4343

4444
fig = go.Figure( data=data, layout=layout )
4545

46-
url = py.plot(fig, filename='datetime-heatmap', validate=False)
46+
url = py.plot(fig, filename='datetime-heatmap')

_posts/python/legends/2015-06-22-basic-legend-groups.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@
5151
'color': 'rgb(142, 124, 195)'
5252
}
5353
}
54-
], filename='basic-legend-grouping', validate=False)
54+
], filename='basic-legend-grouping')

_posts/python/lines-on-maps/2015-06-29-us-flight-paths-map.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,4 @@
6363
)
6464

6565
fig = dict( data=flight_paths + airports, layout=layout )
66-
url = py.plot( fig, validate=False, filename='d3-flight-paths' )
66+
url = py.plot( fig, filename='d3-flight-paths' )

_posts/python/map-subplots/2015-07-05-small-multiple-us-maps.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,4 +130,4 @@
130130
break
131131

132132
fig = { 'data':data, 'layout':layout }
133-
py.iplot( fig, validate=False, filename='US Walmart growth', height=900, width=1000 )
133+
py.iplot( fig, filename='US Walmart growth', height=900, width=1000 )

_posts/python/pie/2015-07-31-pie-chart-subplots.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,4 @@
8080
'showlegend': False}
8181
}
8282

83-
url = py.plot(fig, validate=False, filename='Pie Chart Subplot Example')
83+
url = py.plot(fig, filename='Pie Chart Subplot Example')

_posts/python/pie/2015-07-31-pie-chart.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919
'layout': {'title': 'Forcasted 2014 U.S. PV Installations by Market Segment'}
2020
}
2121

22-
url = py.plot(fig, validate=False, filename='Pie Chart Example')
22+
url = py.plot(fig, filename='Pie Chart Example')

_posts/python/pie/2015-08-03-pie-chart-donut.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,4 @@
7676
}
7777
}
7878

79-
url = py.plot(fig, validate=False, filename='Global Emissions 1990-2011')
79+
url = py.plot(fig, filename='Global Emissions 1990-2011')

_posts/python/scatter-plot-on-maps/2015-07-01-north-america-precipitation.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,4 @@
7676
title = 'US Precipitation 06-30-2015<br>Source: <a href="http://water.weather.gov/precip/">NOAA</a>',
7777
)
7878
fig = { 'data':data, 'layout':layout }
79-
url = py.plot(fig, validate=False, filename='precipitation')
79+
url = py.plot(fig, filename='precipitation')

_posts/python/shapes/2015-06-17-shape-circle.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,4 @@
6161
'data': data,
6262
'layout': layout,
6363
}
64-
plot_url = py.plot(fig, validate=False, filename='shapes-circle')
64+
plot_url = py.plot(fig, filename='shapes-circle')

_posts/python/shapes/2015-06-17-shape-clusters.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,4 +107,4 @@
107107
'data': data,
108108
'layout': layout,
109109
}
110-
plot_url = py.plot(fig, validate=False, filename='clusters')
110+
plot_url = py.plot(fig, filename='clusters')

_posts/python/shapes/2015-06-17-shape-line-ref.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,5 +60,5 @@
6060
'data': data,
6161
'layout': layout,
6262
}
63-
plot_url = py.plot(fig, validate=False, filename='shapes-line-ref')
63+
plot_url = py.plot(fig, filename='shapes-line-ref')
6464

_posts/python/shapes/2015-06-17-shape-lines.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,4 @@
7171
'data': data,
7272
'layout': layout,
7373
}
74-
plot_url = py.plot(fig, validate=False, filename='shapes-lines')
74+
plot_url = py.plot(fig, filename='shapes-lines')

_posts/python/shapes/2015-06-17-shape-path.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,4 @@
7272
'data': data,
7373
'layout': layout,
7474
}
75-
plot_url = py.plot(fig, validate=False, filename='shapes-path')
75+
plot_url = py.plot(fig, filename='shapes-path')

_posts/python/shapes/2015-06-17-shape-rect-ref.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,4 @@
6363
'data': data,
6464
'layout': layout,
6565
}
66-
plot_url = py.plot(fig, validate=False, filename='shapes-rectangle-ref')
66+
plot_url = py.plot(fig, filename='shapes-rectangle-ref')

_posts/python/shapes/2015-06-17-shape-rect.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@
5757
'data': data,
5858
'layout': layout,
5959
}
60-
plot_url = py.plot(fig, validate=False, filename='shapes-rectangle')
60+
plot_url = py.plot(fig, filename='shapes-rectangle')
6161

_posts/python/shapes/2015-06-17-shape-timestamp-highlight.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,4 @@
6464
'height': 600,
6565
'width': 600
6666
}
67-
plot_url = py.plot({'data': data, 'layout': layout}, validate=False, filename='timestamp-highlight')
67+
plot_url = py.plot({'data': data, 'layout': layout}, filename='timestamp-highlight')

_posts/python/shapes/2015-06-17-shape-venn.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,4 @@
7878
'data': data,
7979
'layout': layout,
8080
}
81-
plot_url = py.plot(fig, validate=False, filename='venn-diagram')
81+
plot_url = py.plot(fig, filename='venn-diagram')

_posts/python/shapes/2015-06-18-shape-tangent-line.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,4 @@
6565
'data': data,
6666
'layout': layout,
6767
}
68-
plot_url = py.plot(fig, validate=False, filename='tangent-line')
68+
plot_url = py.plot(fig, filename='tangent-line')

0 commit comments

Comments
 (0)