Displaying 1 result from an estimated 1 matches for "totaldiff".
Did you mean:
totaldiffs
2009 Dec 18
2
Legend for two plots
...The
legend appears in the second plot,
but I want the legend to appear below the two plots in the center of
the total chart. At the moment the
graphic looks like this: http://i48.tinypic.com/2h2fvhf.jpg
[code]
layout(matrix(1:2, nrow=1))
#c(down,left,top,right)
par(mar=c(4,4,3,1))
plot(totalExp , totalDiffs,
main="Years of experience",
cex.main = 0.9,
cex.lab=0.8,
xlab="Years of experience",
ylab="COCOMO II - expert estimate",
pch=totalPch,
col = totalColors
)
abline(0,0)
plot(totalSoftwareEXP , totalDiffs,
main="Years of prof. software experience",
c...