diff options
author | ranke <ranke@d1b72e20-2ee0-0310-a1c4-ad5adbbefcdc> | 2006-01-02 16:41:43 +0000 |
---|---|---|
committer | ranke <ranke@d1b72e20-2ee0-0310-a1c4-ad5adbbefcdc> | 2006-01-02 16:41:43 +0000 |
commit | fdd212ca853af2b41736ba6e1cd539feb5f145de (patch) | |
tree | e1790b069bc6f7c00d333a0f95b78d1211a39e16 /inst/doc/README.txt | |
parent | 928b6dc90efe152ec7ebbfd9efb6ab28c8f59dd5 (diff) |
- Added a little documentation of the sample data in inst/doc.
- Added the possibility to show standard deviation or confidence
interval for the mean of the control values, if present in
the dose-response data. Also, control data (with dose=0)
are not listed in the results data frame of drfit any more.
git-svn-id: http://kriemhild.uft.uni-bremen.de/svn/drfit@54 d1b72e20-2ee0-0310-a1c4-ad5adbbefcdc
Diffstat (limited to 'inst/doc/README.txt')
-rw-r--r-- | inst/doc/README.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/inst/doc/README.txt b/inst/doc/README.txt new file mode 100644 index 0000000..10945d9 --- /dev/null +++ b/inst/doc/README.txt @@ -0,0 +1,14 @@ +This sample data is provided to show how dose-response data can be collected +with a spreadsheet program like OpenOfficeCalc (sampledata.ods) or +MS Excel (sampledata.xls) and exported to CSV (comma separated values) format. +OpenOfficeCalc 2.0 (German version, decimal separator is ',') produces +sampledata.csv which can be read in by + + >sampledata <- read.csv('sampledata.csv',skip=2,dec=',') + +and MS Excel 97 produces sampledata.csv2 which can be read in by + + >sampledata <- read.csv2('sampledata2.csv',skip=2) + +if the working directory of R was set to the directory where these +files reside. |