You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When writing (psychology) scientific papers, great care must be taken in reporting the state of item-level missing data for each psychological questionnaire. For example, Parent (2013) writes:
I recommend that authors (a) state their tolerance level for missing data by scale or subscale (e.g., “We calculated means for all subscales on which participants gave at least 75% complete data”) and then (b) report the individual missingness rates by scale per data point (i.e., the number of missing values out of all data points on that scale for all participants) and the maximum by participant (e.g., “For Attachment Anxiety, a total of 4 missing data points out of 100 were observed, with no participant missing more than a single data point”).
In order to comply with this recommandation, I have developed the function nice_na(), which nicely summarizes NA values according to those guidelines. The function describes both absolute and percentage values of specified column lists and supports specifying scales through regex. Reprex:
Would you like this function to migrate from rempsyc to datawizard?
For the name, I was thinking data_missing_items or just data_missing since it also works without scale items and it is similar to our other data_ functions like data_duplicated. It could also be describe_missing in line with describe_distribution (actually that one makes more sense I think).
The text was updated successfully, but these errors were encountered:
When writing (psychology) scientific papers, great care must be taken in reporting the state of item-level missing data for each psychological questionnaire. For example, Parent (2013) writes:
In order to comply with this recommandation, I have developed the function
nice_na()
, which nicely summarizesNA
values according to those guidelines. The function describes both absolute and percentage values of specified column lists and supports specifying scales through regex. Reprex:Created on 2023-09-02 with reprex v2.0.2
Would you like this function to migrate from
rempsyc
todatawizard
?For the name, I was thinking
data_missing_items
or justdata_missing
since it also works without scale items and it is similar to our otherdata_
functions likedata_duplicated
. It could also bedescribe_missing
in line withdescribe_distribution
(actually that one makes more sense I think).The text was updated successfully, but these errors were encountered: