Skip to content

A suite of tools you can use to manipulate data right from the terminal for maximal convinence. Some of them are built on others. No need to use ********* Excel.

License

Notifications You must be signed in to change notification settings

FFFluoride/bash-stats-suite

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

57 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bash-stats-suite

What is it?

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.

How can I use this?

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.

About

Basic syntax

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;

Tables

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.

About

A suite of tools you can use to manipulate data right from the terminal for maximal convinence. Some of them are built on others. No need to use ********* Excel.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages