Plot the following table Please

Here is an example to help you

julia> using DataFrames, Plots;

julia> df = DataFrame(shoetype = ["Sneaker", "Boot", "High-heels"], price = [10, 20, 15]);

julia> bar(df.shoetype, df.price);

It produces the following graph:

Screenshot from 2020-09-16 11-54-36

2 Likes