Hey guys, in the below code I call a histogram but I have no idea what library I call it from (plots or pyplot?) or if it’s built in to Julia or what. can anybody provide any insight? I can’t find it in the julia or the plots documentation, in fact in plots I can only find the plot() function.
More broadly, how can I see all of the functionality in a given library? I keep finding myself not knowing how to do something because I can’t find the right method to achieve it.
here’s the code:
using DataFrames
using CSV
using Plots
using PyPlot
df = CSV.read(“data/train.csv”, header = true, delim = “,”)
for column_name in names(df)[2:end]
…some unimportant stuff…
display(histogram(df[column_name]))
end