I am trying to summarise and visualise three attributes in R:
Patient_Age, Patient_Deprivation and Hospital_Time.
I am trying to summarise the time patients spent in hospital by deprivation(scale 1-5) & Age. I also calculated the covariance and correlation. If I want to summarise the total time (diffr_days) by Age and Deprivation. What would be the best way of visualisation because only violin plot and correlation matrix make a bit of sense to understand the data? Other plots are not making any sense of the data. What would be the best plot and descriptive method to explain such data scenario?
Age Cov: 28.42936 Corr: 0.2497208
Deprivation Cov: 0.3389552 Corr: 0.07772134
Below is the screenshot of my data frame and some visualisations 
do.call(cbind.data.frame,list(id = c(
1011L, 1012L, 1012L, 1014L, 1015L, 1015L, 1018L, 1018L, 1021L,
1022L, 1028L, 1029L, 1036L, 1037L, 1042L, 1044L, 1045L, 1048L,
1049L, 1050L, 1050L, 1051L, 1051L, 1052L, 1054L, 1057L, 1061L,
1064L, 1064L, 1065L, 1066L, 1067L, 1067L, 1069L, 1072L, 1073L,
1078L, 1079L, 1082L, 1083L, 1084L, 1086L, 1087L, 1089L, 1090L,
1090L, 1091L, 1092L, 1095L, 1096L),
age = c(23L, 50L,
6L, 92L, 70L, 70L, 53L, 16L, 16L, 70L, 58L, 58L, 30L, 30L, 30L,
10L, 34L, 69L, 22L, 16L, 38L, 71L, 24L, 57L, 5L, 79L, 79L, 37L,
37L, 35L, 40L, 45L, 72L, 97L, 97L, 34L, 28L, 29L, 29L, 78L, 22L,
25L, 31L, 36L, 53L, 49L, 17L, 48L, 56L, 32L),
deprivation = c(1L, 2L, 3L, 2L, 3L, 3L, 1L, 2L,
2L, 2L, 4L, 4L, 2L, 2L, 2L, 2L, 3L, 2L, 2L, 2L, 3L, 2L, 2L, 2L,
3L, 2L, 2L, 4L, 4L, 2L, 4L, 1L, 1L, 3L, 3L, 4L, 3L, 3L, 3L, 2L,
2L, 1L, 2L, 3L, 3L, 3L, 1L, 2L, 2L, 2L),
diffr_days = c(8L, 2L, 4L, 12L, 12L,
6L, 7L, 6L, 9L, 7L, 8L, 4L, 11L, 5L, 1L, 10L, 7L, 9L, 2L, 5L,
10L, 6L, 3L, 2L, 9L, 1L, 2L, 9L, 0L, 9L, 4L, 1L, 10L, 2L, 5L,
9L, 14L, 0L, 5L, 0L, 0L, 1L, 10L, 8L, 3L, 4L, 2L, 1L, 0L, 2L
)))



dput(your_data_frame)? Given that you apparently have a huge amount of data, perhaps subsample it? – Stephan Kolassa Jun 27 '22 at 14:21hospital_time? – gung - Reinstate Monica Jun 27 '22 at 17:26