Posts

What Some stuff about R, data processing, literate data analysis - from small code snippets to tutorials. Why During the last years I …

Example Data costs <- data.frame( Season=c("Spring","Summer","Autumn","Winter"), Rent = …

How to plot a matrix with ggplot? As gglot requires data as dataframes in long format, we have to reshape the matrix. In the example …

Some Python x = [1,2,3,4,5,6] y = [i*i for i in x] And some R df <- data.frame(x=py$x, y=py$y) knitr::kable(df) x y 1 1 2 …