### # Make an ISEtools folder in the R library # (e.g. C:\Program Files\R\R-3.1.1\library\ISEtools) # and extract ISEtools files there ### library(ISEtools) # Open a graphics window and turn recording on windows(record=T) # Artificial urine data ?urineMC31 # Load, print, and plot calibration data and standard addition experimental data data(urineMC31) print(urineMC31) plot(urineMC31) ### # Characterise the ISEs ### artificial_urine_ISEs = describeISE(urineMC31, Z = -1) print(artificial_urine_ISEs) plot(artificial_urine_ISEs) ### # Analyse the samples ### artificial_urine_results = analyseISE(urineMC31, Z = -1) print(artificial_urine_results) plot(artificial_urine_results, col="blue", x.shift = -0.2, xlim = c(0.5, 5.5), ylim=c(-9, -2), xaxs="i", yaxs="i", add.box=F) ### # Also, refer to loadISEdata for importing your own data ### ?loadISEdata