Welcome to my new blog, Random Forest.

Author
Published

October 28, 2018

Hello world!

This blog isn’t only about a random forest. I’ll write about machine learning in general, spatial analysis and data. I’ll focus on R language, primarily describing capabilities of its visualizations.

My blog consists of 3 sections:

Code
require(ggplot2)
require(dplyr)

df <- tibble(t = seq(0, 2 * pi, by = 0.01)) %>% mutate(
  x = 16 * sin(t)^3,
  y = 13 * cos(t) - 5 * cos(2 * t) - 2 * cos(3 * t) - cos(4 * t)
)

p <- ggplot(df, aes(x, y)) +
  geom_polygon(fill = "red", col = NA, alpha = 0.7) +
  theme_void()

p

Heart using ggplot2