First and foremost, a suite of tools that can be used to do some basic statistics given a csv file and a bash shell. No need to use *****soft Excel. This is mostly for school as I don’t like using excel or any free software alternatives, I much more like doing it from the terminal instead, reach out if you want to help or yknow fork.
Simply clone main and add all the program files to your path. Make sure the files are executable, if you only want a specific one refer to the dependecy tree to see what you need. Have a good day and remeber to stick their *****soft excel up their *REDACTED.
The program will just manipulate string. Specifically space seperated I may change this later but this seems like a natural decision as in bash you can loop over a string of values seperated by data like so:
data="data1 data2 data3 data4";
for value in data;
do
echo "$value";
done;
Stuff like frequency tables will only be constructed not read my scripts. This means the programs will be able to take for example this:
data="0 0 1 2 1 1 1 0 0"
And will be able to return to stdout:
"0 4\n1 4\n 2 1\n"
The example above is a frequency table.