Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sankhadip-roy/statistics-calculator

1st year college project
https://github.com/sankhadip-roy/statistics-calculator

c college-project statistics

Last synced: about 2 months ago
JSON representation

1st year college project

Awesome Lists containing this project

README

        

To compile in linux machine using gcc:

```
gcc stat-calc-linux.c -o -lm
```

To compile in windows machine use MinGW: stat-calc-windows.c

College 1st Year Group D PCA2 Project

`PROBLEM STATEMENT:`

> Statistic Calculator
>
> > It should include all basic statistical calculations. Use proper header file and file management. A menu driven should be presented. All operations are utilised through proper function call. Try to create your own header files.


  • mean

  • median

  • mode

  • variance

  • standard deviation

`INTRODUCTION:`

> Statistics as a subject now has become more and more popular and its applications has become more extensive. Now there is hardly any field of human activity where statistics is not used . So, I have developed a statistical calculator which can perform basic statistical operations.

`ALGORITHM:`

> The **_mean_** (average) of a data set is found by adding all numbers in the data set and then dividing by the number of values in the set.

> The **_median_** is the middle number in a sorted, ascending or descending, list of numbers and can be more descriptive of that data set than the average.

> The **_mode_** is defined as the value that has a higher frequency in a given set of values. It is the value that appears the most number of times.

> The **_variance_** is a measure of variability. It is calculated by taking the average of squared deviations from the mean. Variance tells you the degree of spread in your data set. The more spread the data, the larger the variance is in relation to the mean.

> The **_standard deviation_** (or σ) is a measure of how dispersed the data is in relation to the mean (standard deviation is the square root of the variance)

![image](https://user-images.githubusercontent.com/91897336/214807296-57d91f03-f716-4181-af56-97f2b5906039.png)

`SCOPE OF STATISTICS:`


  1. Helps in economic planning

  2. Helps in business and management

  3. In administration

  4. In research

  5. Economic problems such as production, consumption, wages, price profits, unemployment, poverty etc. can also be expressed numerically.

As the use of statistics in future developments is very huge, so statistics calculator would also play a very huge role in near future.