I have a rasterbrick comprising of six layers
class : RasterBrick
dimensions : 47, 89, 4183, 6 (nrow, ncol, ncell, nlayers)
resolution : 0.5, 0.5 (x, y)
extent : 60.75, 105.25, 15.75, 39.25 (xmin, xmax, ymin, ymax)
coord. ref. : NA
data source : in memory
names :
min values : 0, 0, 0, 0, 0, 0
max values : 22.84560, 9.63050, 28.18740, 12.90590, 51.66701, 319.83840
But when I plot the sixth variable, it shows the main heading as VegCX2X0.7, but I want to change it to "Aboveground Biomass Carbon", so I do the following basic code :
plot(try3,6, col=mycol, main=" Aboveground Biomass", legend.args=list(text='Aboveground Carbon Biomass(MgC/ha)', side=4, font=2, line=2.5, cex=0.8))
But the new heading doesnt show up, in fact no heading is not shown. How can i fix this?