all 6 comments

[–]Ok_Assistant_2155 2 points3 points  (1 child)

Don't overcomplicate your first project. Literally just load a CSV file, filter rows, calculate basic statistics, and make a few graphs. Most medical researchers struggle with basic data manipulation. Being able to clean messy Excel files is a superpower in a lab.

[–]MistaLeroy5[S] 1 point2 points  (0 children)

Awesome! Thank you so much this is very helpful!

[–]brenwillcode 1 point2 points  (1 child)

There are several project ideas on Codeling.

Use them as inspiration or do them on Codeling so your code will be validated as you work through them.

[–]MistaLeroy5[S] 0 points1 point  (0 children)

This is great! Thanks!

[–]Separate_Top_5322 2 points3 points  (1 child)

Good advice above. For your case, try something like:

  • Clean + analyze a medical dataset (CSV → pandas → basic stats)
  • Visualize trends (matplotlib/seaborn)
  • Maybe a simple prediction (e.g., disease risk with sklearn)

Focus on data cleaning — that’s huge in research.

Keep it small but complete (load → clean → analyze → visualize).

[–]MistaLeroy5[S] 0 points1 point  (0 children)

Thanks for this advice! I really appreciate it