We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have a data that looks like this with 10 rows
if I do following
data%>%filter(kt==1)%>%rename(group=스) %>% mutate_at(vars(-group),scales::rescale())
I get an error
Error: expecting a one sided formula, a function, or a function name.
If I don't do "scales::rescale()" I get an error saying
Error in check_dot_cols(.vars, .cols) : object 'rescale' not found
I've tried
data%>%filter(kt==1)%>%rename(group=스) %>% mutate_each(funs(rescale),-group)
and I get
Error in is_character(x) : object 'group' not found
can you help?
The text was updated successfully, but these errors were encountered:
when I tried the following all the values are 0.5
data_M=data%>%filter(kt==1)%>%rename(group=스) %>% mutate_at(vars(-group),scales::rescale)
one other question I have is how do I use non english font? I've tried following and it did not display the text correctly.
ggradar(data_M)+theme(text = element_text(size=8,family = "YDIYGO320"))
Sorry, something went wrong.
No branches or pull requests
I have a data that looks like this with 10 rows
if I do following
I get an error
If I don't do "scales::rescale()" I get an error saying
I've tried
and I get
can you help?
The text was updated successfully, but these errors were encountered: