Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: bodyweight data #12

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open

feat: bodyweight data #12

wants to merge 3 commits into from

Conversation

m-muecke
Copy link
Collaborator

@m-muecke m-muecke commented Dec 4, 2024

Closes: #7

@fabian-s note the following:

  • I've removed the ex (exercise) column since I've filtered for the bicycle crunch data. Perhaps, naming the dataset bicycle might make more sense.
  • I've converted the factor variables to factor().
  • I've not included the raw zip files, since the files are on GitHub, we could add a download script incl. unzipping in the beginning to make it more reproducable.
  • we could also bucket the ratings like @HerrMo did, basically the following:
df |> mutate(coarse_rat = case_when(
  rating <= 1.5 ~ 1,
  rating > 1.5 & rating <= 2.5 ~ 2,
  rating > 2.5 & rating <= 3.5 ~ 3,
  rating > 3.5 & rating <= 4.5 ~ 4,
  rating > 4.5 ~ 5
))

@m-muecke m-muecke requested a review from fabian-s December 4, 2024 11:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

bodyweight exercise tracking
1 participant