File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed
packages/python/plotly/plotly/express Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change 2
2
`plotly.express` is a terse, consistent, high-level wrapper around `plotly.graph_objects`
3
3
for rapid data exploration and figure generation. Learn more at https://plotly.com/python/plotly-express/
4
4
"""
5
+
5
6
from plotly import optional_imports
6
7
7
8
pd = optional_imports .get_module ("pandas" )
8
9
if pd is None :
9
10
raise ImportError (
10
11
"""\
11
- Plotly express requires pandas to be installed."""
12
+ Plotly Express requires pandas to be installed. You can install pandas using pip with:
13
+
14
+ $ pip install pandas
15
+
16
+ Or install Plotly Express and its dependencies directly with:
17
+
18
+ $ pip install plotly.express
19
+
20
+ You can also use Plotly Graph Objects to create a large number of charts without installing
21
+ pandas. See examples here: https://plotly.com/python/graph-objects/
22
+ """
12
23
)
13
24
14
25
from ._imshow import imshow
You can’t perform that action at this time.
0 commit comments