This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
theme(plot.title = element_text(colour="black",size=20), #plot title | |
axis.text.x = element_text(ang=90, colour="black", size=20), #x axis labels | |
axis.text.y = element_text(colour="black",size=20), #y axis labels | |
axis.title.x = element_blank(), #x axis title | |
axis.title.y = element_text(colour="black",size=20), #y axis title | |
legend.text = element_text(colour="black", size=20), #legend text | |
legend.title = element_blank(),#legend title | |
legend.background = element_rect(fill="white"), #legend background color | |
legend.position = "right", | |
legend.direction= "vertical", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##################################################### | |
#lambda varies over time | |
##################################################### | |
low <- as.data.frame(matrix(ncol=100, nrow=100)) | |
high <- as.data.frame(matrix(ncol=100, nrow=100)) | |
t <- seq(2,101, by=1) | |
N0 <- 50 |
NewerOlder