Displaying 4 results from an estimated 4 matches for "path_to_my_files".
Did you mean:
path_to_my_file
2012 Mar 23
1
[libvirt] Problem with Open vSwitch and dnsmasq
Date: Thu, 22 Mar 2012 11:43:03 -0700
Subject: Re: [libvirt] Problem with Open vSwitch and dnsmasq
From: aatteka at nicira.com
To: dano1988 at hotmail.it
CC: libvir-list at redhat.com; roberto.sassu at polito.it; paolo.smiraglia at polito.it; dev at openvswitch.org
On Thu, Mar 22, 2012 at 11:11 AM, Daniele Milani <dano1988 at hotmail.it> wrote:
I think I could try the first solution.
2009 Mar 30
1
how to input multiple .txt files
how to input multiple .txt files?
A data folder has lots of .txt files from different customers.
Want to read all these .txt files to different master files:
such as:
cust1.xx.txt, cust1.xxx.txt, cust1.xxxx.txt,.............. to master file: X.txt
cust2.xx.txt, cust2.xxx.txt, cust2.xxxx.txt,.............. to master file: Y.txt
Thanks!
[[alternative HTML version deleted]]
2008 Mar 11
2
Error opening SHP file (maptools)
I am having difficulty loading a points shapefile (1600 records) I generated from ArcGIS as a PointsSpatialDataFrame using the maptools readShapePoints function.
library(maptools)
surveypts <- readShapePoints(system.file("C:/temp/survey.shp", package="maptools")[1]
Error in getinfo.shape(filen) : Error opening SHP file
I've tried numerous re-exports and renames of the
2009 Apr 01
0
回复: R-help Digest, Vol 73, Issue 32
...Mike.Lawrence@dal.ca>
Subject: Re: [R] how to input multiple .txt files
To: Qianfeng Li <qflichem@yahoo.com>
Cc: r-help@r-project.org
Message-ID:
<37fda5350903300455y4fca4f73h792cd88e375e4468@mail.gmail.com>
Content-Type: text/plain; charset=ISO-8859-1
my_files = list.files(path=path_to_my_files,pattern='.txt',full.names=TRUE)
a=NULL
for(this_file in my_files){
a=rbind(a,read.table(this_file))
}
write.table(a,my_new_file_name)
On Sun, Mar 29, 2009 at 10:37 PM, Qianfeng Li <qflichem@yahoo.com> wrote:
>
>
> how to input multiple .txt files?
>
> A data fo...