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

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

Awesome Lists containing this project

README

          

# 10 Days Statistics
10 days statistics challenge from HackerRank.

![Capture](https://user-images.githubusercontent.com/37275728/186026660-5b87c93e-7d6f-4540-a196-b5ea003a3df8.PNG)

## 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/)