{"id":21126176,"url":"https://github.com/sankhadip-roy/statistics-calculator","last_synced_at":"2025-08-23T13:37:17.788Z","repository":{"id":176715008,"uuid":"502137258","full_name":"sankhadip-roy/statistics-calculator","owner":"sankhadip-roy","description":"1st year college project","archived":false,"fork":false,"pushed_at":"2024-10-18T16:11:43.000Z","size":62,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-17T00:28:02.833Z","etag":null,"topics":["c","college-project","statistics"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sankhadip-roy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-06-10T18:05:18.000Z","updated_at":"2024-10-18T16:11:46.000Z","dependencies_parsed_at":null,"dependency_job_id":"c7ac3fa1-a71f-491d-9671-c4aa792dc467","html_url":"https://github.com/sankhadip-roy/statistics-calculator","commit_stats":null,"previous_names":["sankhadip-roy/statisticscalculator","sankhadip-roy/statistics-calculator"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sankhadip-roy/statistics-calculator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sankhadip-roy%2Fstatistics-calculator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sankhadip-roy%2Fstatistics-calculator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sankhadip-roy%2Fstatistics-calculator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sankhadip-roy%2Fstatistics-calculator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sankhadip-roy","download_url":"https://codeload.github.com/sankhadip-roy/statistics-calculator/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sankhadip-roy%2Fstatistics-calculator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271749106,"owners_count":24814128,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-23T02:00:09.327Z","response_time":69,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["c","college-project","statistics"],"created_at":"2024-11-20T04:39:39.085Z","updated_at":"2025-08-23T13:37:17.751Z","avatar_url":"https://github.com/sankhadip-roy.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"To compile in linux machine using gcc:\r\n\r\n```\r\ngcc stat-calc-linux.c -o \u003coutput-file-name\u003e -lm\r\n```\r\n\r\nTo compile in windows machine use MinGW: stat-calc-windows.c\r\n\r\n                                          College 1st Year Group D PCA2 Project\r\n\r\n`PROBLEM STATEMENT:`\r\n\r\n\u003e Statistic Calculator\r\n\u003e\r\n\u003e \u003e 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.\r\n\r\n\u003cul\u003e\r\n  \u003cli\u003emean\u003c/li\u003e\r\n  \u003cli\u003emedian\u003c/li\u003e\r\n  \u003cli\u003emode\u003c/li\u003e\r\n  \u003cli\u003evariance\u003c/li\u003e\r\n  \u003cli\u003estandard deviation\u003c/li\u003e\r\n\u003c/ul\u003e\r\n\r\n`INTRODUCTION:`\r\n\r\n\u003e 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.\r\n\r\n`ALGORITHM:`\r\n\r\n\u003e 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.\r\n\r\n\u003e 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.\r\n\r\n\u003e 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.\r\n\r\n\u003e 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.\r\n\r\n\u003e 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)\r\n\r\n![image](https://user-images.githubusercontent.com/91897336/214807296-57d91f03-f716-4181-af56-97f2b5906039.png)\r\n\r\n`SCOPE OF STATISTICS:`\r\n\r\n \u003col\u003e\r\n  \u003cli\u003eHelps in economic planning\u003c/li\u003e\r\n  \u003cli\u003eHelps in business and management\u003c/li\u003e\r\n  \u003cli\u003eIn administration\u003c/li\u003e\r\n  \u003cli\u003eIn research\u003c/li\u003e\r\n  \u003cli\u003eEconomic problems such as production, consumption, wages, price profits, unemployment, poverty etc. can also be expressed numerically.\u003c/li\u003e\r\n\u003c/ol\u003e\r\n\r\nAs the use of statistics in future developments is very huge, so statistics calculator would also play a very huge role in near future.\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsankhadip-roy%2Fstatistics-calculator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsankhadip-roy%2Fstatistics-calculator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsankhadip-roy%2Fstatistics-calculator/lists"}