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 22`plotly.express` is a terse, consistent, high-level wrapper around `plotly.graph_objects`
33for rapid data exploration and figure generation. Learn more at https://plotly.com/python/plotly-express/
44"""
5+
56from plotly import optional_imports
67
78pd = optional_imports .get_module ("pandas" )
89if pd is None :
910 raise ImportError (
1011 """\
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+ """
1223 )
1324
1425from ._imshow import imshow
You can’t perform that action at this time.
0 commit comments