https://github.com/djeada/10-days-statistics
10 days statistics challenge from hackerrank
https://github.com/djeada/10-days-statistics
Last synced: 3 months ago
JSON representation
10 days statistics challenge from hackerrank
- Host: GitHub
- URL: https://github.com/djeada/10-days-statistics
- Owner: djeada
- License: mit
- Created: 2019-10-31T18:16:28.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-06-18T07:19:05.000Z (over 1 year ago)
- Last Synced: 2025-03-30T10:11:39.677Z (10 months ago)
- Language: Python
- Homepage:
- Size: 363 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 10 Days Statistics
10 days statistics challenge from HackerRank.

## Requirements
* The code is in Python 3.6.
* It should work in later versions as well, but there is no guarantee that it will work with earlier Python versions.
* You may either install Python or use repl.it, a web-based Python interpreter.
* If you decide to use Python locally, then the code may be executed in an IDE or from the command line using ```python filename.py ```.
## How to run the examples?
Follow the steps:
- Download this repository:
```bash
git clone https://github.com/djeada/10DaysStatistics.git
```
- Install virtualenv (if it's not already installed).
- Open the terminal from the project directory and run the following commands (all needed dependencies will be installed):
```bash
virtualenv env
source env/bin/activate
pip3 install -r requirements.txt
```
- You can now run the examples.
## List of Problems
#
Title
Solution
Day 0
Mean, Median, and Mode
Python
Day 0
Weighted Mean
Python
Day 1
Quartiles
Python
Day 1
Interquartile Range
Python
Day 1
Standard Deviation
Python
Day 2
Basic Probability
Math
Day 2
More Dice
Math
Day 2
Compound Event Probability
Math
Day 3
Conditional Probability
Math
Day 3
Cards of the Same Suit
Math
Day 3
Drawing Marbles
Math
Day 4
Binomial Distribution I
Python
Day 4
Binomial Distribution II
Python
Day 4
Geometric Distribution I
Python
Day 4
Geometric Distribution II
Python
Day 5
Poisson Distribution I
Python
Day 5
Poisson Distribution II
Python
Day 5
Normal Distribution I
Python
Day 5
Normal Distribution II
Python
Day 6
The Central Limit Theorem I
Python
Day 6
The Central Limit Theorem II
Python
Day 6
The Central Limit Theorem III
Python
Day 7
Pearson Correlation Coefficient I
Python
Day 7
Spearman's Rank Correlation Coefficient
Python
Day 8
Least Square Regression Line
Python
Day 8
Pearson Correlation Coefficient II
Math
Day 9
Multiple Linear Regression
Python
## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
## License
[MIT](https://choosealicense.com/licenses/mit/)