free_r_tips icon indicating copy to clipboard operation
free_r_tips copied to clipboard

Free R-Tips is a FREE Newsletter provided by Business Science. It comes with bite-sized code tutorials every week.

Results 9 free_r_tips issues
Sort by recently updated
recently updated
newest added

bug: please check the dates and dataset. You look at a dataset which is 30 steps away from last one, but there is no data coming saturdays, sundays and on...

It seems the parametrization for model_prophet has changed to: model_prophet % set_engine("prophet",yearly.seasonality=TRUE) %>% fit(cnt ~ dteday, training(splits)) FROM: model_prophet % set_engine("prophet") %>% fit(cnt ~ dteday, training(splits))

The R code does not work. The function is not available in the library.

# FORMAT ---- vehicle_summary_tbl % select(class, where(is_numeric), -year) %>% group_by(class) %>% summarise( across(displ:hwy, .fns = median) ) %>% ungroup() %>% rename(group = class) %>% mutate_at(vars(-group), rescale) Error in is_fun_list(.funs) :...

Prepare the repo for poetry package-like structure.

Set up poetry and organize doc structure.

The .DS_Store file reveals bits of info about your local environment and isn't needed to run the code

There's an error when i run the script... ``` > # ggplot (2D visualization) - DS4B 101-R, Week 4 > g1 % + ggplot(aes(disp, mpg, color = cyl)) + +...