Displaying 2 results from an estimated 2 matches for "day100".
2009 Nov 30
3
Assign palette (e.g. rainbow) to a series of points on 1 plot
I have 11 vectors representing insect survival probabilities in
response to different levels of toxins at 10 concentrations
lx100=c(1,1,1,.8,.5,.4,.2,0)
day100=c(0,1,2,3,4,5,6,7,8)
lx90=c(1,1,1,1,.9,.8,.6,.4,.2,.1,0)
day90=c(0,1,2,3,4,5,6,7,8,9,10)
#...and so on10% and a zero (control) series
lx0=c(1,1,1,1,1,1,.9,.9,.8,.8,.6,.5,.4,.3,.2,.1,.1,0)
day0=c(0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17)
I want to plot them on one plot with a palette color sc...
2008 Feb 18
2
R graphics question: "binary" bar chart
...should be illustrated with a dark colour a if there is a stay at home
between 2 hopital stays, it should be illustrated with a bright colour.
e.g.
P1 |//////| |///| |////////|
P2 |//////////|
P3 |//| |////| |///| |//|
Day1------------Day100---------------------------------Day365
legend:
Px Patient with id x
|///| Hospital stay (length of bar symbolizes length of stay)
Place between 2 hospital stays symbolizes stay at home
(not in hospital)
Are there any package which can do that? If not, how can I implement
this in...