'In Python, you can concatenate strings' + ' like this!'
#> 'In Python, you can concatenate strings like this!'

R Markdown

This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see rmarkdown.rstudio.com.

When you click the Knit button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document.

Useful tools

Plots

Using ggplot

Here is an example of how to make a plot with ggplot2:

bears %>%
  count(month) %>%
  ggplot() +
  geom_col(aes(x = as.factor(month), y = n)) +
  theme_minimal(base_size = 22) + 
  labs(x = "Month", y = "Count")