I've recently discovered how useful R is. Compared to Excel or Sheets it's a joy to use, especially if you're on Linux. Installing it is the tricky bit, there are a lot of dependencies. I'm on Linux Mint (Ubuntu/Debian), so:
sudo apt-get install -y r-base-core libxml2-dev libcurl4-openssl-dev libssl-dev libfreetype6-dev libpng-dev libtiff5-dev libjpeg-dev libharfbuzz-dev libfribidi-dev
I know. There's a lot. But all of that will let you do the following and more...
First, get this public csv file:
In the folder with your new csv file, enter R with:
R
Then from within this new R session, type the following to import your csv file:
work1 = read.csv("worksheet1.csv", header = TRUE)
Now we'd like to see a histogram of the "Wellbeing" column, so:
hist(work1$Wellbeing)