Displaying 7 results from an estimated 7 matches for "longdash".
2012 Mar 25
1
Accessing more than two coefficients in a plot
...(VV1_2, Lambda1_2, ylim=yrange, tck=1, main="V(1) Parameters (V, V^2 & V^0.5)", xlab="VV1_2", ylab="Lambda & Beta1_2",pch=19,col="red")
{abline(lm2.l, col="brown", lty="dotted", lwd=2)
abline(wlm2.l, col="gold",lty="longdash", lwd=2)
points(VV1_2, Beta1_2, pch=19, col="blue")
abline(lm2.b, col="black",lty="dotted", lwd=2)
abline(wlm2.b, col="blue", lty="longdash", lwd=2)
legend("topright", inset=.05, title="Parameters",
labels, lwd=2, lty=c(1, 1...
2011 May 10
2
Leyenda de las series en tsplot
...=c("red","blue","purple","purple"), ##
Color rojo para alisado, azul para original y morado para limites
lwd=c(4,2,1,1), ##
Ancho de línea 4 para alisado, 2 para original y 1 para limites
lty=c("longdash","solid","dashed","dashed") ## Rayas
largas para alisado, solido para original y rayitas para limites
)
)
Seguro que es algo muy basico y facil pero no doy con ello. Cualquier
ayuda sera bienvenida.
Mu...
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 `"blank&qu...
2018 Jul 18
2
Legendas en una gráfica de ggplot2
...###Graficos
ggplot( )+
geom_line(aes(y = i, x=t), color="gray48", size=1.2, linetype="dashed") +
geom_line(aes(y = u, x=t), color = "gray48", size=1.2,linetype="twodash")+
geom_line(aes(y = o,x=t), color = "gray48",
size=1.2,linetype="longdash") +
geom_line(aes(y = l,x=t), color="gray48", size=1.2,linetype="solid")+
labs(x = expression(paste(theta)), y="Probabilidad")+
theme(axis.text=element_text(size=14, face="bold"),
axis.title=element_text(size=14))
Saludos,
Sebastián Rangel Quiñon...
2018 Jul 18
2
Legendas en una gráfica de ggplot2
...i, x=t), color="gray48", size=1.2, linetype="dashed")
>> +
>> geom_line(aes(y = u, x=t), color = "gray48",
>> size=1.2,linetype="twodash")+
>> geom_line(aes(y = o,x=t), color = "gray48",
>> size=1.2,linetype="longdash") +
>> geom_line(aes(y = l,x=t), color="gray48", size=1.2,linetype="solid")+
>> labs(x = expression(paste(theta)), y="Probabilidad")+
>> theme(axis.text=element_text(size=14, face="bold"),
>> axis.title=element_text(size=14)...
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