arya2004/data-science
Re-implement `06.ipynb` in Python as a `.py` script
Aperta
#13 aperta il 3 ott 2025
data-sciencegood first issuehacktoberfesthacktoberfest-acceptednotebook-to-scriptpython
Metriche repository
- Star
- (1 stella)
- Metriche merge PR
- (Metriche PR in attesa)
Descrizione
🐍 Convert 06.ipynb to a Python script
This notebook currently uses R for data analysis and visualization. Your task is to convert the logic into Python and save it as a standalone .py script in the same folder.
📁 Target file path:
projects/06.py
✅ Guidelines:
- Use
pandasfor data manipulation - Use
matplotlib/seabornfor plots - Use
read_csv()on datasets from thedatasets/folder - Match the logic of the original R notebook as closely as possible
- Add meaningful comments and structure your code clearly
- You may use
argparseif needed to allow parameterization
💡 Bonus Tips:
- You can preview the R logic inside
06.ipynbbefore translating it. - If any logic seems inefficient in R, feel free to write cleaner Python alternatives.
- You may wrap sections of the script into functions or classes for clarity.
Once done, open a pull request referencing this issue.
Happy Hacking! 🎉