Displaying 4 results from an estimated 4 matches for "macintoshhd".
Did you mean:
macintoshhd2
1997 Nov 19
2
samba and mac
Hello,
w?ve an problem with the samba server an an mac PPC.
what must we do that an mac-ppc can print over an samba server, we use
also an dave client V1.01 on the mac-side.
thanks in advance
MCL
1999 Sep 12
0
Mac and Dave Client
...Filesystem 1k-blocks Used Available Use% Mounted on
/dev/sda1 1981000 697213 1181375 37% /
/dev/sda3 6411741 22527 6057071 0% /home
//SKNEBEL/MACINTOSHHD
2097060 0 2097060 0% /home/samba/Mac
//AKNEBEL/C 3162880 720448 2442432 23% /home/samba/winC
//AKNEBEL/E 2084320 273216 1811104 13% /home/samba/winE
/...
2009 Sep 10
2
"Read.csv" in R with dynamic file (1st) argument
Dear R users,
I have numerous data sets (csv files) saved in the folder which has the same
name as individual data.
(i.e data x1 saved in x1 folder, data x2 in x2 folder etc)
I would like to read in the desired data set name using 'scan' function and
assign this inputted value to an object so that it can be used in the
'read.csv' function.
For example,
x <- scan()
1: 0708
2009 Sep 11
3
For sending my R package as part of R-project
...at r-project.org>
Message-ID: <4AA98532.8060303 at witthoft.com>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
That will not work (or at least doesn't work for me.
This does work:
fnam<-'thefilename.csv' #or build the name however you like
fpath <- 'macintoshhd/users/me/myfolder/ # or whatever you need
read.csv(eval(paste(fpath,fnam,sep="")) #worked for me
Carl
-----------
Try this:
read.csv(sprintf("D://R//Data//%04d//%04d.csv", x, x), header = TRUE)
On Wed, Sep 9, 2009 at 9:32 PM, Steven Kang <stochastickang at gmail.co...