search for: filname

Displaying 18 results from an estimated 18 matches for "filname".

Did you mean: filename
2009 May 29
2
strsplit
I am trying split a string and use one part of it to label graphs. I am using strsplit for that. While I am able to split it, how do I access the separated parts. > filName<-"chrI_2223" >part<- strsplit(filName,"\\_") > part [[1]] [1] "chrI" "2223" > part[1] [[1]] [1] "chrI" "2223" I looked up the help archive but did not find it. Can someone help me here? Cheers../Murli [[alternative HTM...
2012 May 24
6
How to open a file with a name changed?
Hi, I apologize for my english. I?m trying to read a file, but the name of this file changes every day, for example: today is May 24, 2012 bonos<- read.table("C:/Bonos/*20120524*.csv", header=TRUE, sep="\t") So, tomorrow I want to read the file again, but i don?t want to put the date by myself, i want this automatically. I know that if a put day() this instruccion gives
2020 Jan 03
1
Exclude-from file format?
...have seen two main styles in examples for using rsync with exclude-from. The first is simply a list of filename, one per line. The second is a list of filenames, one per line, prefixed with either a - or a + to indicate exclude/include. Which is correct? Also, none show the correct style with a filname containing spaces, though I assumed quoting is OK Exclude1.txt: - filename1 - ?file name 1? Exclude.txt: filename1 ?file name 1? Which of these will exclude both filename1 and ?file name 1? anywhere they appear in the source?
2008 Jan 04
1
R command line arguments
...like start R in BATCH mode and submit my own parameters. Or in other words, I would like to specify variables from the command line and execute a script using those. I have been looking at commandArgs and calling R from the command line under bash: R CMD BATCH --no-save --args -filename="$filname" -- r-test.R r-test.Rout The problem here is, if $filename contains a space it is regarded as a new parameter which makes it more difficult to parse. Also, are there function that help parse the parameters? Or, is there a totally different this is usually done in R? Thanks, Bernd...
2005 May 28
1
Filenames and flags
Hi, Does anyone know how the filnames as created and/or if you can read a mail's flag or status from it? 1 .As you can set i.e. "ToDo" label on a message and then if I open from another thunderbird I can see it is marked there aswell I wonder: Is this read from the filename or some registry? 2 .Can I understand from...
2003 Aug 06
1
rsync OS X to Linux => problem diacritical marks
...l i would like to sync a directory tree on a os x server to my linux "backup" server. in generall it works, but i've asserted that folders and files containg a letter with a diacritical mark (for example: ?,?,?) cause problems. they are beeing transefered but show up with a messed filname on my linx server. has someone an idea how to solve this problem? brest regards sam
2002 Aug 01
1
How can I make the Norwegian chars ø:Ø valid???
Hi I'm wondering if anyone could help me out with this problem that is really bugging me. I've set up samba alright, and it working perfect except for one little detail that I noticed the other day. I tried to copy a filname with the nowegian char ?, over to a samba share, then it turned into an o. I then checked out the other norwegian chars, and they're working ok. So I dont't understand when I've set these lines in the smb.conf character set = ISO8859-1 client code = 850 // norwegian valid chars = ?:?...
2002 Sep 10
1
Can u prevent a macintosh from leaving it's of trash files on the shares?
...cintoshes. (running 0S9.2 and OS8.6)(DAVE is mac to windows(samba) filesharing utility) I use SAMBA from the testing version of DEBIAN. The mac's leave alot of files on the shares that i find annoying. Is there a method I could use to prevent the mac from leaving it's "trash". (filname filtering perhaps)
2002 Jan 23
1
vorbiscomment inconsistency
...rse, I get pounded by script zealots telling me how just one more script in my life will save someone from a world of proper coding. I also think that ogg123 should use -o for output filename, not -f, but I don't expect a change to that to be well received. Guessing the output plugin from the filname might be nice, though. --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-dev-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is neede...
2012 Dec 22
1
plotting and saving diagrams automatically
[if the format of my email is changed or is difficult to understand, a text file is attached for easy understanding]Dear useRs, i was wondering that if its possible in R to automatically generate plots and get it saved at the desired location? i have data of cancer patients, from about 1000 cities around the world. i have converted that data into a list (called tcp) and that list has 1000
2008 Sep 18
1
PNG file don't run on mac's?
Een ingesloten tekst met niet-gespecificeerde tekenset is gescrubt ... Naam: niet beschikbaar URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20080918/ed87aa31/attachment.pl>
2009 Jul 17
0
How to prpare the input data to writeFASTA ? Examples of CharacterToFASTArecords ...
...The on-line documentation reads: "For CharacterToFASTArecords, the (possibly named) character vector to be converted to a list of FASTA records as one returned by readFASTA" Since I have description and sequnce in separate variables ... I do not know how to use it. zz <- file (filname,"w") write(miRNA.rec, zz, append = FALSE) write(miRNA.seq,zz, append = TRUE) # geneDesc <- paste (">",gene.id, "|", gene.map[i,"ensembl_transcript_id"], sep="") geneSeq <- gene.seq[i,"3utr"]...
2006 Apr 11
2
variable-substitution / command-substitution
Hello, I have about 2000 data files which I want to analyse. The file names are all very similar => p"variable1"_t"variable2"_c"variable3".txt There aren?t so much different variables (about 70) , just different combinations of them. To allow an easy way of handling those data files I was wondering whether R is able to do variable-substitution
2010 Jun 17
5
Could not find class, code-blind
I''m troubled with a node-definition not able to resolve a class: Could not find class rhnsd::common at /etc/puppet/manifests/nodes.pp: 8 on node X Content of manifest/site.pp: import "nodes.pp" [...] The layout of modules/rhnsd/ is: |-- files | `-- up2date-rhn |-- manifests | |-- client.pp | |-- common.pp | |-- init.pp | `-- rhn.pp A `cat'' from each
2011 Aug 11
1
Memory leak
...FlacWriter::dataFinish() { if (!finish()) return false; return true; } int main(int argc, char *argv[]) { int numencodes = argc > 1 ? atoi(argv[1]) : 2; if (!numencodes) numencodes = 2; FlacWriter fw; for (int i = 0; i < numencodes; ++i) { if (!fw.dataStart("filname.flac")) { std::cout << "Failed init!" << std::endl; return 1; } while (true) // normally read audio data here in blocks, and update FlacWriter { if (!fw.dataUpdate("audio data read from file", 26)) { std::cout &lt...
2005 Sep 02
1
source package linking problem under linux
I'm having some problems in installing some source packages under linux. As an example, MCMCpack. An error is raised when linking: > install.packages("MCMCpack") [...] * Installing *source* package 'MCMCpack' ... checking for C++ compiler default output file name... a.out checking whether the C++ compiler works... yes checking whether we are cross compiling... no checking
2010 Jul 27
1
R CMD build wiped my computer
Hi, I ran R (version 2.9.0) CMD build under root in Fedora (9). When it tried to remove "junk files" it removed EVERYTHING in my local account! (See below). Can anyone tell me what happened, and even more importantly if I can I restore what was lost. Panickingly, Jarrod [jarrod at localhost AManal]$ R CMD build MCMCglmm_2.05 * checking for file
2010 Jul 27
1
R CMD build wiped my computer
Hi, I ran R (version 2.9.0) CMD build under root in Fedora (9). When it tried to remove "junk files" it removed EVERYTHING in my local account! (See below). Can anyone tell me what happened, and even more importantly if I can I restore what was lost. Panickingly, Jarrod [jarrod at localhost AManal]$ R CMD build MCMCglmm_2.05 * checking for file