diff options
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. |