3
3
##Backwards Compatibility
4
4
5
5
* import statements and module locations have changed
6
- * depreciated methods
6
+ * deprecated methods
7
7
8
8
### careful, modules may have shifted during flight
9
9
@@ -14,24 +14,24 @@ The functionality in within `plotly.plotly` has been moved to two locations:
14
14
15
15
Read on to see how this might affect you!
16
16
17
- ### changed/moved/depreciated functionality
17
+ ### changed/moved/deprecated functionality
18
18
19
19
Some functionality has moved, or has been altogether deleted. Here's the
20
20
rundown of what got effected:
21
21
22
22
| Name | Action |
23
23
| ------------------------ | -------------- |
24
24
| ` plotly.embed() ` | moved |
25
- | ` plotly.display() ` | depreciated |
26
- | ` plotly.signup() ` | depreciated |
27
- | ` plotly.plotly() ` | depreciated |
28
- | ` plotly.plotly.ion() ` | depreciated |
29
- | ` plotly.plotly.ioff() ` | depreciated |
25
+ | ` plotly.display() ` | deprecated |
26
+ | ` plotly.signup() ` | deprecated |
27
+ | ` plotly.plotly() ` | deprecated |
28
+ | ` plotly.plotly.ion() ` | deprecated |
29
+ | ` plotly.plotly.ioff() ` | deprecated |
30
30
| ` plotly.plotly.plot() ` | moved/changed |
31
31
| ` plotly.plotly.iplot() ` | moved/changed |
32
- | ` plotly.plotly.layout() ` | depreciated |
33
- | ` plotly.plotly.style() ` | depreciated |
34
- | ` plotly.stream.init() ` | depreciated |
32
+ | ` plotly.plotly.layout() ` | deprecated |
33
+ | ` plotly.plotly.style() ` | deprecated |
34
+ | ` plotly.stream.init() ` | deprecated |
35
35
| ` plotly.stream.write() ` | moved |
36
36
| ` plotly.stream.close() ` | moved |
37
37
@@ -164,7 +164,7 @@ case-insensitive string and a file_id number.
164
164
165
165
###` plotly.display() ` is now ` plotly.tools.embed() `
166
166
167
- The ` plotly.display() ` function is depreciated and has been replaced with
167
+ The ` plotly.display() ` function is deprecated and has been replaced with
168
168
` potly.tools.embed() ` .
169
169
170
170
See the entry on ` embed ` for more details on new call signatures.
@@ -175,7 +175,7 @@ In general, `'orientation'` now describes how x and y data relate to plots
175
175
and can be used more broadly than in just ` 'histogram' ` and ` 'bar' ` . Note,
176
176
however, the ` 'bardir' ` still exists in ` 'layout' ` .
177
177
178
- ###` ion ` and ` ioff ` have been depreciated , use ` auto_open=True `
178
+ ###` ion ` and ` ioff ` have been deprecated , use ` auto_open=True `
179
179
180
180
Previously, you could set whether or not new plots created in Plotly from the
181
181
API caused a new browser tab to open.
@@ -222,7 +222,7 @@ figure['layout'].update({}) # (option 2)
222
222
figure[' layout' ].update(key1 = val1, key2 = val2, key3 = val3) # (option 3)
223
223
```
224
224
225
- ###style() has been depreciated
225
+ ###style() has been deprecated
226
226
227
227
All style parameters need to be declared within their resepctive objects.
228
228
That is, layout styles must be declared within the layout dictionary and data
@@ -234,7 +234,7 @@ Aside from the class name being capitalized, the functionlity of the
234
234
streaming class has improved. Run help(plotly.plotly.Stream) for more
235
235
information.
236
236
237
- ###` plotly.signup() ` has been depreciated
237
+ ###` plotly.signup() ` has been deprecated
238
238
239
239
Users must signup initially at the plotly website, this can no longer be done
240
240
through the Python API.
0 commit comments