Add files via upload

bulk data dump
This commit is contained in:
Jason Bou-Samra
2024-04-07 19:13:04 +10:00
committed by GitHub
commit 7ab5faae04
7 changed files with 20212 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
# Histogram
what is a histogram?
The visual representation that charts the frequency distribution of variables in a data set.
A frequency distribution shows the regularity of an occurrence of a value in a set of data.
Often confused with a bar chart, although there are certain defining characteristics of differentiation.
* The x-axis consists of equal width bars without space in between, known as bins or buckets that represent a range of classes.
* x axis is the class interval and is labelled with a number rather than a description.
* The y axis represents the frequency of occurrence of a value.
* Bar graphs represents data that is discrete or categorical in nature
Uses
In statistics to show the frequency of a specific value within a certain range.
Used to analyse large amounts of data easily to detect trends and patterns.
## Change-log:
* 06/04/2023 - Initial release
* 04/04/2023 - Foundation code
## Compilation
type `make` or `cc -o histo histogram.c -lm` on the command line
## Todo
* Need to use SDL2 to plot a graph of the output
## Author(s)
Jason Bou-Samra