You asked for basic training guides...
1. An Introduction to R ships with R. Did you miss it?
2. Google is your friend. There are a ton on the web. Search!
-- Bert
Bert Gunter
Genentech Nonclinical Biostatistics
(650) 467-7374
"Data is not information. Information is not knowledge. And knowled
Hi,
May be this helps:
dat <- read.table(text="Designation Basic
ASA .25
ASA .28
ASA .32
TASA .45
TASA .33
TASA .43",sep="",header=TRUE,stringsAsFactors=FALSE)
boxplot(Basic~Designation,data=dat,col=2:3)
#or
library(ggplot2)
ggplot(dat,aes(x=Designation,
2 matches
Mail list logo