Re: [R] Issue with results from 'summary' function in R

2015-09-19 Thread Praveen Surendran
Hi Thierry, Thank you for the response. I should have looked at the help page. Kind Regards, Praveen. On 18/09/2015 15:51, "Thierry Onkelinx" wrote: >This is described in ?summary > >> x <- 22072 >> getOption("digits") >[1] 7 >> summary(x) > Min. 1st Qu. Median

[R] Issue with results from 'summary' function in R

2015-09-18 Thread Praveen Surendran
Hi all, Attached table (that contains summary for a genetic association study) was read using the command: test <- read.table('testDat.txt',header=FALSE,stringsAsFactors=FALSE) Results from the summary of the attached table is provided below: > summary(test$V5) Min. 1st Qu. MedianMean

Re: [R] Issue with results from 'summary' function in R

2015-09-18 Thread Thierry Onkelinx
This is described in ?summary > x <- 22072 > getOption("digits") [1] 7 > summary(x) Min. 1st Qu. MedianMean 3rd Qu.Max. 22070 22070 22070 22070 22070 22070 > options(digits = 10) > summary(x) Min. 1st Qu. MedianMean 3rd Qu.Max. 22072 22072 22072 22072

Re: [R] Issue with results from 'summary' function in R

2015-09-18 Thread Keith Jewell
On 18/09/2015 13:08, Praveen Surendran wrote: Hi all, Attached table (that contains summary for a genetic association study) was read using the command: test <- read.table('testDat.txt',header=FALSE,stringsAsFactors=FALSE) Results from the summary of the attached table is provided below: