So this might be a really stupid question and I have the feeling that it will be. However, I have to ask it because it doesn’t make sense to me.
I have installed and loaded julia v 0.6.2 on my ubuntu linux 17.10 box. I run the following code in the REPL
using StatsBase
?hist
and I get this as output
Couldn’t find hist
Perhaps you meant hist, Chisq, hash, hcat, FDist, TDist, fit, Cint or Dict
No documentation found.Binding hist does not exist.
So it’s telling me hist couldn’t be found but instead recommends to me that I might be looking for hist?
Follow up question:
I’m trying to achieve the julia version of the following executed in R
plot(hist(rnorm(100)))
What is the Julia way of achieving this?