Plotly Python - Introduction of plotly data visualization and creating plotly scatter chart

preview_player
Показать описание
This is a second plotly tutorial video of plotly data visualization in python with real data, I have talked about how you can create interactive scatter Plotly chart

#DataScience #MachineLearning #PlotlyPython #plotlychart #DataVisualization
Рекомендации по теме
Комментарии
Автор

Plotly PythonTutorials for Beginners - data visualization in python

RVideoTutorials
Автор

How to get the resultant plot in a new tab ? Or a separate window

rajatdogra
Автор

I got this error :ValueError: Invalid properties specified for object of type plotly.graph_objs.Scatter: (' x', ' y')
when this was typed in and run

pyo.plot([{ x: orders.index, y: orders.Sales}])

thuyvuong
Автор

TypeError: 'module' object is not callable


how do i resolve this error?

aaryareddy
Автор

Sir, you must be havinga Git repostory to follow along, please share that as well

DebayanKar
Автор

i got error


pyo.plot([
go.scatter{
x=sf.Sales,
y=sf.profit,
mode='markers',
}
])


Error Details:

Cell In[11], line 3
x=sf.Sales,
^
SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?

vilaskhadka
Автор

I got an error when setting my mode to 'marker'. In the error it said I could use 'lines', 'markers', or 'text'. Set the mode to 'markers' and I got a bunch of dots. Removed the mode altogether and I got lines.
use ---> mode = 'markers'

jasoncprince