search for: iv802

Displaying 4 results from an estimated 4 matches for "iv802".

2000 Sep 22
3
eval functions... (PR#668)
...tcl/tk application that uses R)... here is the error I got in R (but not in S-PLUS)...so I am wondering if it is a bug. Eg., the foll. extract from a function runs fine in S-PLUS but gives the error: Error in x[[j]] : subscript out of bounds in R code snippet ..... attach(xd) resp <- "iv802" pickedlist <- "BD + CEC + CLAY + ERODFAC + INCEPTSL" lmexp <- paste(resp, " ~ ", pickedlist,sep="") tmpzx <- eval(lm(lmexp,data=xd)) Essentially, I want to do: lm(iv802 ~ BD + CEC + CLAY + ERODFAC + INCEPTSL, data=xd) thru a function that has...
2000 Sep 28
0
No subject
..."tcltktst" <- + function(x="") { + xd <- read.table(x, header=T) + library("tcltk") + + tt <- tktoplevel() + tktitle(tt) <- "Diagnostics" + label.widget <- tklabel(tt, text="Choose!") + + pptlabs <- function() { + plot(xd$iv802, xd$PPT) + abline(0,1) + tt2 <- tktoplevel() + tktitle(tt2) <- "Identify Outliers" + lab.wid2 <- tklabel(tt2, text="Identify Outliers") + but.wid2 <- tkbutton(tt2, text="OK", command=function() tkdestroy(tt2)) + tkpack(lab.wid2, but.wid2)...
2000 Sep 28
1
tcltk package functionality
...iated.... Prasad "tcltktst" <- function(x="") { xd <- read.table(x, header=T) library("tcltk") tt <- tktoplevel() tktitle(tt) <- "Diagnostics" label.widget <- tklabel(tt, text="Choose!") pptlabs <- function() { plot(xd$iv802, xd$PPT) abline(0,1) tt2 <- tktoplevel() tktitle(tt2) <- "Identify Outliers" lab.wid2 <- tklabel(tt2, text="Identify Outliers") but.wid2 <- tkbutton(tt2, text="OK", command=function() tkdestroy(tt2)) tkpack(lab.wid2, but.wid2) labp <...
2000 Sep 29
0
Is it R or I?
...AVGT + BD + CEC + CLAY + ERODFAC +INCEPTSL + JANT + JARPPET + JULT + MAXELV + MAYSEPT + MINELV + MOLLISOL + OM + PERM + PET + PH + PPT + PROD + ROCKDEP + ROCKFRAG + SLOPE + SPODOSOL + TAWC + TEXCOARS + TEXFINE + ULTISOL", pickedlist="BD + CEC + CLAY + ERODFAC + INCEPTSL", resp="iv802", idvar="FIPS") Reading in data DONE Reading in data Lm Model Done building model Plotting the model output DONE-Plotting the model output Before tcltk Segmentation fault (core dumped) NOTE: Sometimes the program runs (very slowly) without segmentation fault... File -> eda_lmtst...