R. To get a better overview of data

At work, when I want to understand a data set (I work with portfolio data in life insurance), I would usually use pivot tables in Excel to see, for example. development of variables in time or dependencies between variables. I recalled from the university a nice R-function, where you can build each column of a data frame for every other column, for example:

enter image description here

issue.age , , ( ). , iss.year, "". . , ., -

enter image description here

, 2014 2016 .

, , , Excel.

, , , plot(data.frame)?

+4
1

ggpairs() GGally library. , .

, :

data(tips, package = "reshape")
ggpairs(tips)

ggpair example visualization

+4

Source: https://habr.com/ru/post/1665236/


All Articles