Plot
Plot
04:24
Plotly Express
scatter Create a scatter plot px.scatter(dataframe, x=x_column, y=y_column) px.scatter(df, x=age_array, y=income_array)
bar Create a bar plot px.bar( x=x_column, y=y_column,title='title') px.bar( x=grade_array, y=score_array, title='Pass Percentage')
px.pie(values=exp_percent,
pie Create a pie chart px.pie(values=x,names=y,title="title")
names=house_holdcategories, title='Household Expenditure')