Fun
Only logged in members can reply and interact with the post.
Join SimilarWorlds for FREE »

The beauty of R. It recognized both the British and American spelling.

summary_temp <- weather %>%
🇺🇸summarize(mean = mean(temp, na.rm = TRUE),
std_dev = sd(temp, na.rm = TRUE))
summary_temp
summary_temp <- weather %>%
🇬🇧summarise(mean = mean(temp, na.rm = TRUE),
std_dev = sd(temp, na.rm = TRUE))
summary_temp

> summary_temp
# A tibble: 1 x 2
mean std_dev
<dbl> <dbl>
1 55.3 17.8
> summary_temp
# A tibble: 1 x 2
mean std_dev
<dbl> <dbl>
1 55.3 17.8
This page is a permanent link to the reply below and its nested replies. See all post replies »
Elessar · 26-30, M
I want a programming language in Latin 🌝

filum Concatenatio(filum a, filum b) => a + b;
Nanori · F
@Elessar you're drunk
Riemann · 31-35, M
@Elessar Beautiful idea.
Nanori · F
@Riemann 🤦‍♀️
This message was deleted by its author.