search for: testdata2

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

Did you mean: testdata
2003 Mar 17
3
Error in file(file, "r")
...he error messages. . I've cc'd Brandon Whitcher because it was recommended in another FAQ. I read that this is a bug that occurs on Windows. Is there is a patch/fix that I can use? I'd appreciate any help with this problem. Thnx, Barbara Chisolm Test2 <- scan("C:\\bac\\TestData2") Error in file(file, "r") : cannot open file `C:\bac\TestData2 ' > test1<-read.table('J:/bac/R/TestDataWord.txt') Error in file(file, "r") : cannot open file `J:/bac/R/TestDataWord....
2007 Jun 28
1
Changing graphics height when using grid and lattice
...(Hmisc) library(grid) # Incidence data testData <- data.frame( strata = rep(c("CHF : Yes", "CHF : No"), each = 20), ae = rep(paste("Adverse Event", 1:10), each = 2), trt = rep(c("Active", "Placebo"), 20), pct = runif(40, 1, 30) ) # RR data testData2 <- data.frame( strata = rep(c("CHF : Yes", "CHF : No"), each = 10), ae = paste("Adverse Event", 1:10), rr = runif(20, 0.5, 5) ) testData2$lower = testData2$rr / 2 testData2$upper = testData2$rr * 2 # Combined plot testPlots <- function(relativeWidth) { plo...
2005 Dec 24
2
Ajax Help: Multiple Updates - ?
...render(:layout => false) end # updateDivs.rhtml <%= javascript_tag( update_element_function( "detail1", :position => :top, :content => "testData1" ) + update_element_function( "detail2", :position => :top, :content => "testData2" ) + update_element_function( "detail3", :position => :top, :content => "testData3" ) + update_element_function( "detail4", :position => :top, :content => "testData4" )) %> I don''t get any errors, but the tes...
2009 Aug 07
0
Bar plots with stacked columns marked with askterisks
...e refer to code below). However, I haven't figured how to put asterisks on columns based on some extra information (such as "used/unused") as in Data set B i.e. asterisks at the top of the Index1 and Index3 columns. ---- R code ---- title = 'frequency' filename = 'testdata2.txt' sample_output = 'sequences' # read in data my.data <- read.delim(filename, sep="\t") # data from second column onward my.dataM <- my.data[,2:ncol(my.data)] # rownames in first column rownames <- my.data[,1] # define colours for the categories col = c ("...