r - Each cluster of data frame on separate page of pdf file -


i use mtcars data frame example. print 2 columns of data frame on each page of pdf file depending on cluster belong.

                     mpg cyl  disp  hp drat    wt  qsec vs gear carb mazda rx4           21.0   6 160.0 110 3.90 2.620 16.46  0  1    4    4 mazda rx4 wag       21.0   6 160.0 110 3.90 2.875 17.02  0  1    4    4 datsun 710          22.8   4 108.0  93 3.85 2.320 18.61  1  1    4    1 hornet 4 drive      21.4   6 258.0 110 3.08 3.215 19.44  1  0    3    1 hornet sportabout   18.7   8 360.0 175 3.15 3.440 17.02  0  0    3    2 valiant             18.1   6 225.0 105 2.76 3.460 20.22  1  0    3    1 duster 360          14.3   8 360.0 245 3.21 3.570 15.84  0  0    3    4 merc 240d           24.4   4 146.7  62 3.69 3.190 20.00  1  0    4    2 merc 230            22.8   4 140.8  95 3.92 3.150 22.90  1  0    4    2 merc 280            19.2   6 167.6 123 3.92 3.440 18.30  1  0    4    4 merc 280c           17.8   6 167.6 123 3.92 3.440 18.90  1  0    4    4 merc 450se          16.4   8 275.8 180 3.07 4.070 17.40  0  0    3    3 

let's assume column carb cluster column. see have 4 different clusters put output of 2 columns (starting first one) on separate page in pdf.

first page should like:

  1. datsun 710 22.8
  2. hornet 4 drive 21.4
  3. valiant 18.1

second page should like:

  1. hornet sportabout 18.7
  2. merc 240d 24.4
  3. merc 230 22.8

third page should like:

  1. merc 450se 16.4

and believe know how output of last page should like. can me ? data frame contains in total around 250 clusters.

grid.newpage() forces each table appear on new page,

pdf("multipage.pdf") lapply(split(mtcars, mtcars$carb), function(d) {   grid::grid.newpage()   gridextra::grid.table(d)   }   ) dev.off() 

Comments

Popular posts from this blog

c - Bitwise operation with (signed) enum value -

xslt - Unnest parent nodes by child node -

YouTubePlayerFragment cannot be cast to android.support.v4.app.Fragment -