Sun Apr 02, 2017 2:57 am
require(foreign)
require(MASS)
require(bootES)
library(ggplot2)
library(plyr) # might be not needed here anyway it is a must-have package I think in R
library(reshape2) # to "melt" your dataset
library (scales) # it has a "rescale" function which is needed in heatmaps
library(RColorBrewer) # for convenience of heatmap colors, it reflects your mood sometimes
require(beanplot)
library(plyr) # For the desc() function
library(ggplot2)
library(crop)
library(directlabels)
library(scales)
library(grid)
library(moments)
### Load your data here
## I loaded here data named"NewCalculation".
p<- ggplot(NewCalculation, aes(factor(trainingSize), recall))+ geom_boxplot(fill="#ffff99")+ylim(0,1)+theme_bw()+
labs(color = "Type",title = ", Title here,")+ geom_hline(yintercept = yvals,color="RED",linetype="dashed")+
ylab("Ylabel text")+xlab("Xlabel text")+ theme(legend.position = "bottom",text = element_text(size=14))
p
|
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.