Pandas
Plotting
df[anything].hist(bins =50)df.hist(column="record_number", by="final_close_flag", bins=20)df.boxplot(column='name')df.boxplot(column='name', by='feature')import pandas as pd
import plotly.graph_objects as go
pd.options.plotting.backend = 'plotly'
df["Close"].plot()To plot candlestick chart using plotly
fig = go.Figure(data=[go.Candlestick(x=df.index, open=df["Open"],
high=df["High"], low=df["Low"], close=df["Close"])])
fig.show()Links
Tips
Cut function for binning
Coding nominal data using Pandas
Show missing values
Check if there are empty rows or columns and find them
index
Accessories
customer
quantity
List all individual values from categorical columns and their count
Bubble plot
Country
Year
Exports
Last updated