If you'd like to save the output of your wrangling as an object, you will need to use the <-
operator
`r dataframe_name
_new <- r dataframe_name
%>%group_by(
r colnames(df_character_select)
) %>%summarise(mean(
r colnames(df_numeric_select)
))`
*Assigning the object the same name (i.e. r dataframe_name
) will overwrite the object
To save `r dataframe_name
_new` as a new file (e.g. csv), run the following:
write_csv(
r dataframe_name_new, "
r dataframe_name_new.csv")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.