Recipes for data visualization

eikosogram[source]

eikosogram(df:DataFrame, x:str, color:str, freq:str)

Given a dataframe and two parameters, x and color, return an Eikosogram

df = pd.read_csv('../../data/grad_admissions.csv')
df.head(3)
Admit Gender Dept Freq
0 Admitted Male A 512
1 Rejected Male A 313
2 Admitted Female A 89
fig = eikosogram(df, x='Dept', color='Gender', freq='Freq')

Plotly Themes

Custom Template

Visualizing Graphs

Netron (model graph)

  • There does not seem to be a way to embed within jupyter yet.
import netron

netron.start('model.onnx', port=9191)