I have a dataset as shown below
ID MinTemp MaxTemp Quartile1 Quartile2 Quartile3
28 19 88 23 63 80
43 18 78 25 57 77
11 34 118 52 81 101
I am interested in learning how to create an inline boxplot
for each row based on their corresponding, Min
, Max
, Quartile1
, Quartile2
, Quartile3
values using the sparkline package.
The final output should look like this below
Any help on accomplishing this is much appreciated.