Loading repository data…
Loading repository data…
Rabbani218 / repository
This commit aggregates all four required projects for the freeCodeCamp Data Analysis with Python Developer Certification).\n\nProjects completed:\n- NumPy Mean, Variance, Standard Deviation Calculator\n- Pandas Demographic Data Analyzer\n- Matplotlib/Seaborn Medical Data Visualizer\n- SciPy Sea Level Predictor
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
This repository is a complete collection of all five projects required for the Data Analysis with Python Developer Certification from freeCodeCamp.org.
This 300-hour certification program provided hands-on experience in data analysis by applying foundational Python libraries. Each project in this collection demonstrates proficiency in data manipulation, cleaning, visualization, time-series analysis, and statistical calculation.
Here is a summary of the projects included in this repository, each in its own directory.
.groupby(), .value_counts(), boolean masking.scipy.stats.linregress), time-series analysis, data prediction.The primary technologies used across these projects include:
To run any of these projects locally, please follow the steps below.
Clone the repository:
git clone [https://github.com/](https://github.com/)[YOUR_USERNAME]/fcc-data-analysis-with-python-Collection.git
cd fcc-data-analysis-with-python-Collection
Navigate to a project directory:
# Example:
cd 02-demographic-data-analyzer
Install dependencies: It is highly recommended to use a virtual environment.
# Create a virtual environment
python -m venv venv
source venv/bin/activate # On Windows, use `venv\Scripts\activate`
# Install required packages
pip install -r requirements.txt
Run the project:
Each project's main logic is run from main.py, which also imports the unit tests from test_module.py.
python main.py
This project portfolio is licensed under the MIT License. See the LICENSE file for more details.
A special thank you to Quincy Larson and the entire freeCodeCamp.org team for creating this comprehensive and challenging curriculum, which provides invaluable, accessible education for all.