You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
clone this repository: type git clone https://github.com/marinov98/Statistical_Calculator.git into terminal
cd into Statistical_Calculator
type make
3-ways to use the calculator
defeault option:
This option is if you want to use the calculator's default interface where the calculator asks you for what you want and you answer
type make run to execute this option
About data.txt
You will notice the project comes with the txt file data.txt
You can type any dataset in. However, you must make sure the numbers are separated by a comma and when you are finished you end with a ; (data.txt already has an example provided if you are still confused about the format);
Keep in mind if the format is wrong the program will not do anything.
Special option #1
type make parse
if the file contains an invalid input, the command will not do anything
this command will parse through the data file and every time it finds a ; it will print out every function described in basics.
You can have multiple datasets typed as long as they each end in ; the command will then print each dataset that it finds
Special option #2
There are multiple commands here but they all work the same
Here instead of printing all the fucntions described in basics, you pick the specific one
Again the command will do this for every dataset it finds in the data.txt file
Commands include make:
mean
median
percentile
mode
range
min
max
outliers
sd
lsrl
cc
Example wth outliers and range
Regarding CMake
right now it is best to compile with the Makefile I made for the project