Statistics package

Hello,

Could you recommend me a package that I can use to find some statistics and how can I install it in Julia by ATOM

Thank you

The standard library Statistics has some basics. Standard libraries are bundled with Julia already, so there is no need to install it. Other than this, a commonly used package is

If you can be more specific about what statistics you need, it would be easier to recommend other libraries.

See Pkg · The Julia Language about how to install packages.

2 Likes

things like mean, max, min…

I want to calculate the standard deviation, average, maximum and minimum for an array

maximum and minimum are in the language, mean and std are in Statistics. Please do read the relevant manual pages and docstrings (eg ?maximum, Statistics · The Julia Language).

1 Like