notebook for imputation methods using PhysioNet2012 - #61
Conversation
|
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
|
View / edit / reply to this conversation on ReviewNB eroell commented on 2026-08-04T17:39:20Z no tem_data layer requried anymore |
|
View / edit / reply to this conversation on ReviewNB eroell commented on 2026-08-04T17:39:21Z Not "manageable", but better "quick for demonstration purposes" |
|
View / edit / reply to this conversation on ReviewNB eroell commented on 2026-08-04T17:39:22Z We use this masking strategy because real-world NaNs in the dataset have no ground truth, so direct accuracy evaluation on them is impossible.
This sentence can be completely deleted |
|
View / edit / reply to this conversation on ReviewNB eroell commented on 2026-08-04T17:39:23Z you can save the need for 2 lines of code if you instead do
edata_explicit = p.pp.explicit_impute(edata=edata_explicit, layer="tem_data", replacement=0, copy=True)
this reads a bit shorter. also for the others |
|
View / edit / reply to this conversation on ReviewNB eroell commented on 2026-08-04T17:39:24Z Avoid calling this three dimensions; three dimensions is already used above to describe the data shape.
Call it better "three aspects" or so
|
|
View / edit / reply to this conversation on ReviewNB eroell commented on 2026-08-04T17:39:25Z You can add the reduce miss-forest already on this figure, just among the others - the notebook is quite comprehensive, and adding this here makes the information more condensed :) |
|
View / edit / reply to this conversation on ReviewNB eroell commented on 2026-08-04T17:39:25Z again, extra line for copy can be avoided with the copy=True argument |
|
View / edit / reply to this conversation on ReviewNB eroell commented on 2026-08-04T17:39:26Z Can we have a closing word afterwards? A small wrapup paragraph, just 2-3 sentences roughly, mentioning e.g. the textbook you refer to for a deeper discussion |
…ctions 5.3.3 and 5.3.4 merged, closing section added
fixes theislab/ehrapy#1061
side note: will see how to fix the rendering problem especially for the raincloud plots since its a little weird atm