BiAPoL / Quantitative_Bio_Image_Analysis_with_Python_2022

This repository hosts notebooks, information and data for the Quantitative Bio-Image Analysis with Python Course 2022.
https://BiAPoL.github.io/Quantitative_Bio_Image_Analysis_with_Python_2022
Creative Commons Attribution 4.0 International
15 stars 3 forks source link

Statistics session comments #41

Open thawn opened 1 year ago

thawn commented 1 year ago

When we mention filtering a pandas table, also mention, that the criteria should be independent of the thing that you are filtering.

Wrong:

pd['area, pd['area'] > 5].mean()

likely wrong:

pd['area, pd['diameter'] > 5].mean()

likely right:

pd['area, pd['intensity'] > 5].mean()

Later, refer to this when discussing correlation analysis with pearsons coefficient

zoccoler commented 1 year ago

Good idea, let's integrate such examples for the next course! :)