Displaying 1 result from an estimated 1 matches for "cyto_conc".
2010 Oct 20
3
Plot creates a straigth line
...'plot' with type='b' i get the points connected with lines and one
straigth line from the lowest datapoint to the highest data point. how can i
avoid/remove it from the figure. i am using R2.9.1, below is the example of
the data.
od<-c(10, 8, 6,4,2,1, 10.5,7.8,6.4,3.8,2.1,0.95)
cyto_conc=2650 # Highest cytokine concentration user defined
cyto_std_conc <-c(cyto_conc)
for (i in 1:5)
{
cyto_conc = cyto_conc /3
cyto_std_conc <-c(cyto_std_conc ,cyto_conc)
}
cyto_std_conc<-log2(rep(cyto_std_conc,2))
cyto<-cbind(cyto_std_conc,od)
plot(cyto_std_conc,od, type=&...