Displaying 2 results from an estimated 2 matches for "ttest_results".
2011 Aug 01
4
Use dump or write? or what?
...ulating two t-test values for each of many files then save it
to file calculate another set and append, repeat.
But I can't figure out how to write it to file and then append
subsequent t-tests.
(maybe too tired ;} )
I have tried to use "dump" and "file.append" to no avial.
ttest_results = tempfile()
two_sample_ttest <- t.test (tempA, tempB, var.equal = TRUE)
welch_ttest <- t.test (tempA, tempB, var.equal = FALSE)
dump (two_sample_ttest, file = "dumpdata.txt"", append=TRUE)
ttest_results <- file.append (ttest_results, two_sample_ttest)
Any suggestions,
M...
2011 Aug 03
2
Error message for MCC
Greetings all,
I am getting an error message that is stifling me.
Any ideas?
> ## Define Directories ##
> load_from <- "/home/mcc/Dropbox/abrodsky/kegg_combine_data/"
> save_to <- "/home/mcc/Dropbox/abrodsky/ttest_results/"
>
> ###############################
> ## Define Columns To Compare ##
> compareA <- "log_b_rich"
> compareB <- "Fc_cdt_rich_tot"
>
> ################################
> ## Collect Files To Compare ##
> setwd(load_from)
> files_to_test &l...