search for: dotdash

Displaying 6 results from an estimated 6 matches for "dotdash".

2009 Jan 29
2
Adding vertical line to histogram and qplot "stacked" plot
...+ scale_x_continuous("Data") + scale_y_continuous("Freq") +  scale_fill_discrete("Temperature") + scale_fill_manual(values = c(LOW = "blue", AMB ="black", HIGH = "red")) +  geom_abline(v = HighVal, col = "dodgerblue3", lty="dotdash")     "hist" approach attempt: hist(data_dataframe, breaks = breaks,  col = "dodgerblue3", xlab="Data", freq = TRUE, main="") +abline(v = HighVal, col = "dodgerblue3", lty="dotdash")     Neither seem to be working.  I think I am mis...
2006 Apr 10
2
Legend in the outer margin
...ow=c(3,3), mar=c(4,4,0.9,0.5), oma=c(1,2,2,4),cex.main=1.1) *postscript(*file=epsfile,onefile=FALSE,horizontal=TRUE*)* /* some plotting */ par(xpd=NA) legend(legend=c("2h-opt Exact","1-shift Exact","2p-opt Exact"), lty=c("solid","dashed","dotdash"),lwd=c(2,2,2),col=c("red","green","black"), bty="n",cex=0.8) Thanks in advance Prasanna [[alternative HTML version deleted]]
2009 Jan 14
1
Help with Plot/Legend
Dear R-Users I have 2 questions: Firstly, If I create a matplot and legend for multiple vectors and then tag another vector on using matlines (e.g. a 'total' of all vectors), is there anyway to add the new line to the legend without recreating it? I have created the plot this way because I would like to define the lty and lwd for the 'total' vector so that it can be
2000 Feb 02
0
Bugs and comments. (PR#410)
Hi, Here are a few errors I found as well as a few comments. 1) In the man page of par: lty: The line type. Line types can either be specified as an integer (0=blank, 1=solid, 2=dashed, 3=dot- ted, 4=dotdash, 5=longdash, 6=twodash) or as one of the character strings `"blank"', `"solid"', `"dashed"', `"dotted"' `"dotdash"', `"longdash"', or `"twodash"', where `&q...
2005 Mar 18
2
How to create a 'fit' plot
Dear List, As someone who is in the process of trying to migrate from Excel, I'd appreciate any help on this question: I have a data set and want to fit, say, three distributions to it. I would like to create a plot that shows my data points against all three fitted curves (estimated d.f.). Basically, I lookint to creat a plot that looks like the one presented in the attached paper (Figure
2011 Jun 12
2
Side by side scatter plots with specified regression lines
I am new and self taught in R, so please bear with me. I want to create two scatter plots side by side. The data set includes measurements from two different countries with 7 treatments over a timeline (x-axis). Problem 1 I want to have each plot to include the data from one of the countries with 7 regression lines of the treatments, but I do no know how to divide the data between them. This is