search for: data_new

Displaying 4 results from an estimated 4 matches for "data_new".

2009 Nov 02
3
problems with read.csv
Dear all, I''d like to ask help on R code to get the same results as the following Splus code: >indata<-importData("/home/data_new.csv") >indata[1:5,4] [1] 0930 1601 1006 1032 1020 I tried the following R code: > indata<-read.csv("/home/data_new.csv") > indata[1:5,4] [1] 930 1601 1006 1032 1020 I''d like the first one to be 0930, too. Thanks in advance, Betty...
2002 Feb 14
0
Problems with local rsync on cygwin w2k
I am getting errors when I try and do a dry-run of a local rsync on cygwin on windows 2000. Here is an example command line: /usr/bin/rsync --archive --dry-run --ignore-times --stats --verbose /cygdrive/d/EarthBulletin/data/ /cygdrive/d/EarthBulletin/data_new/ It fails with the following messages: rsync.exe.stackdump rsync: read error: Connection reset by peer rsync error: error in rsync protocol data stream (code 12) at io.c(151) Any ideas of what is wrong? I've tried a few different combinations of options. And actually, the reason I am doin...
2010 Jan 19
5
How to detect and exclude outliers in R?
Suppose I am reading data from a file and the data contains some outliers. I want to know if it is possible in R to automatically detect outliers in a dataset and remove them -- View this message in context: http://n4.nabble.com/How-to-detect-and-exclude-outliers-in-R-tp1017285p1017285.html Sent from the R help mailing list archive at Nabble.com.
2013 Apr 06
1
[PATCH 3/4] fsfreeze: manage kill signal when sb_start_pagefault is called
...47 100644 --- a/fs/f2fs/file.c +++ b/fs/f2fs/file.c @@ -37,7 +37,9 @@ static int f2fs_vm_page_mkwrite(struct vm_area_struct *vma, f2fs_balance_fs(sbi); - sb_start_pagefault(inode->i_sb); + err = sb_start_pagefault(inode->i_sb); + if (err) + return VM_FAULT_RETRY; mutex_lock_op(sbi, DATA_NEW); diff --git a/fs/gfs2/file.c b/fs/gfs2/file.c index d79c2da..071e777 100644 --- a/fs/gfs2/file.c +++ b/fs/gfs2/file.c @@ -396,7 +396,9 @@ static int gfs2_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf) loff_t size; int ret; - sb_start_pagefault(inode->i_sb); + ret = sb_st...