I have followed this documentation
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
.