Home > other >  how to remove ticks and values within name panels in hexplom() hexbin plot in R?
how to remove ticks and values within name panels in hexplom() hexbin plot in R?

Time:12-09

I have followed this documentation enter image description here

my code

library(hexbin)
hexplom(~df_w_delays_num[1:7] , data = df_w_delays_num,
        xbins = 15, colramp = BTC, varnames = c("dep\ndelay", "temp", "dew", "humidity", "wind\nspeed","wind\ngust", "precipi\ntation", "visibility"))

Does anyone know how to remove the ticks and values obstructing the names of my variables?

CodePudding user response:

Try adding pscales = 0. pscales is documented in ?lattice::panel.pairs.

  • Related