Welcome to my new blog, Random Forest.
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:
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)
)
ggplot(df, aes(x, y)) +
geom_polygon(fill = "red", col = NA, alpha = 0.7) +
theme_void()
Figure 1: Heart using ggplot2
Text and figures are licensed under Creative Commons Attribution CC BY 4.0. The figures that have been reused from other sources don't fall under this license and can be recognized by a note in their caption: "Figure from ...".
For attribution, please cite this work as
Kyrychenko (2018, Oct. 28). Random Forest: Welcome to Random Forest. Retrieved from http://randomforest.run/posts/welcome/
BibTeX citation
@misc{kyrychenko2018welcome, author = {Kyrychenko, Roman}, title = {Random Forest: Welcome to Random Forest}, url = {http://randomforest.run/posts/welcome/}, year = {2018} }