Table Utilities
visualize_table(table)
fruit = {
'fruit':
['apple', 'orange', 'peach'],
'price':
[1.49, 1.49, 2.49]
}>>> visualize_table(fruit)
fruit price
0 apple 1.49
1 orange 1.49
2 peach 2.49bar(table, x, y)

line(table, x, y)

Last updated
Was this helpful?