-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathR_CSV_USAGE
65 lines (60 loc) · 2.28 KB
/
R_CSV_USAGE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
> library(reshape2)
> library(ggplot2)
> data = read.csv("empty.csv", header=T)
> data$id = 1:nrow(data)
> data.m = melt(data, id.vars='id')
> ggplot(data.m, aes(x=id, y=value, colour=variable)) + geom_smooth() + geom_line()
print to file:
> postscript("file.eps", width=60, height=3); OR: > png("file.png", width=640, height=200)
> ggplot(data.m, aes(x=id, y=value, colour=variable)) + geom_smooth() + geom_line()
> dev.off()
new script for plotting summaries:
> getDustPercentage = function(fname)
{
data=read.csv(fname, header=F);
data$tick=1:nrow(data);
data.m=melt(data, id.vars="tick");
res = ggplot(data.m, aes(x=tick, y=value, colour=variable)) + geom_smooth() + geom_line() + ylim(0,50) + ggtitle("Percentage of Dust in Environment");
return(res);
}
> getStatePlot = function(fname)
{
data=read.csv(fname, header=T)
data$tick=1:nrow(data);
data.m=melt(data, id.vars="tick");
res = ggplot(data.m, aes(x=tick, y=value, colour=variable)) + geom_line() + ggtitle(fname)
return(res)
}
> showResults = function(dirname, states)
{
i=2;
plots=list();
plots[[1]]=getDustPercentage(paste(dirname, "dustpercentage.csv", sep=""));
for(state in states)
{
plots[[i]]=getStatePlot(paste(dirname, paste("state-", paste(state, ".csv", sep=""), sep=""), sep=""));
i = i + 1;
}
do.call("grid.arrange", c(plots, ncol=1));
}
> compareDustPercentages = function(maxticks=200, dirnames)
{
comparisonData = as.data.frame(setNames(replicate(1,numeric(maxticks), simplify = F), c("tick")));
for(dirname in dirnames)
{
data = read.csv(paste(dirname, "dustpercentage.csv", sep=""), header=F)
comparisonData[dirname] = data
}
comparisonData$tick=1:nrow(comparisonData)
comparisonData.m = melt(comparisonData, id.vars="tick")
res = ggplot(comparisonData.m, aes(x=tick, y=value, colour=variable)) + geom_smooth() + geom_line() + ylim(0, 50) + ggtitle("Comparison of Percentage of Dust in Environment")
return(res)
}
Individual result:
> showResults(".../.../Default.output/", c("EMPTY", "OBSTACLE_AHEAD", ...))
Compare scores:
> compareDustPercentages(c(".../.../Default.output/", ".../.../Sound.output/", ...))
Printing to png file:
> png("file.png", width=800, height=200)
> compareDustPercentages(...)
> dev.off()