aboutsummaryrefslogtreecommitdiff
path: root/inst/doc/README.txt
blob: 10945d9687ef7b8b7c0e1ef8fa2af99044313846 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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.

Contact - Imprint