Spotlight archive

Guess the language.

Three lines, three guesses.

MODESpotlight0/3
Spotlight · ?.??
1df <- read.csv("orders.csv")
2summary <- df %>% filter(amount > 100) %>% group_by(country) %>% summarise(total = sum(amount))
3ggplot(summary, aes(x = country, y = total)) + geom_col()
Keep going