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

Drop .row_col argument from kmeans_tidy function #45

Closed
spsanderson opened this issue Jun 9, 2021 · 0 comments · Fixed by #46
Closed

Drop .row_col argument from kmeans_tidy function #45

spsanderson opened this issue Jun 9, 2021 · 0 comments · Fixed by #46
Assignees
Labels
enhancement New feature or request

Comments

@spsanderson
Copy link
Owner

Is your feature request related to a problem? Please describe.
Since the kmeans_tidy function from #40 uses the input from the kmeans_user_item_tbl() function, there is no need to provide .row_col instead just slice off column one internally as uit_tbl[1] which will require less user input.

Describe the solution you'd like
Internally make the column equal to uit_tbl[1]

uit_col <- uit_tbl[1]
OR
uit_col <- uit_tbl %>% dplyr::select(1)
@spsanderson spsanderson added the enhancement New feature or request label Jun 9, 2021
@spsanderson spsanderson added this to the healthyR 0.1.4 milestone Jun 9, 2021
@spsanderson spsanderson self-assigned this Jun 9, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant