-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Description
Hi Dr.McGowan,
I'm using your tidycode pkg for my independent study. I used it on one of the R scripts I have written in tidyverse syntax and compare the result to my (eye-balled) classification. There is one discrepancy where I would classify the functions as "Exploratory" rather than "Data Cleaning," which is what the tidycode package gave. I recreated those lines and replaced the dataset with the built-in dataset mtcars and obtained the same results (that the used functions such as summarize() and mean() are classified as Data Cleaning rather than exploratory):
library(tidyverse)
data(mtcars)
mtcars %>% summarize(mean(hp, na.rm = TRUE))
mtcars %>% group_by(cyl) %>% summarize(mean(wt, na.rm = TRUE))Does the package classify all dplyr functions to be Data Cleaning? Is there any way we can remedy this? Thank you.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels