Displaying 1 result from an estimated 1 matches for "radioanal".
2011 May 14
1
Summary.Formula: prmsd and test statistic
...basic question, but after scouring the web on information for summary.formula, I still am searching for an answer.
I made a function to analyze my data - I have a categorical variable and three continuous variables. I am analyzing my continuous variables on the basis of my categorical variables.
radioanal <- function(a)
{
#Educational status first - pulling variables from my database. categorical is 13 = Edu. numerical is 48=Kyph, 50=Vert, 53=HL.
a1= a[,c(13,48,50,53)]
#make sure they are in numeric form
a2= transform(a1, Kyph=as.numeric(as.character(Kyph)), Vert=as.numeric(as.character(Vert))...