search for: myfilenam

Displaying 20 results from an estimated 27 matches for "myfilenam".

Did you mean: myfilename
2003 Feb 21
0
problems with rsync on Solaris 9
I am having problem with rsync 2.5.6 on Solaris 9. It starts to transfer my file, and then it just dumps core. Here's the transaction. path=/usr/local/bin/rsync cdndbsj:/var/opt/myFilename/ /var/opt/myFilename cmd=/usr/local/bin/ssh machine=cdndbsj user= path=/var/opt/myFilename/ cmd=/usr/local/bin/ssh cdndbsj /usr/local/bin/rsync --server --sender -vvvvlogDtprx . /var/opt/myFilename/ opening connection using /usr/local/bin/ssh cdndbsj /usr/local/bin/rsync --server --sender -vvvvl...
2007 Mar 31
1
Problem with S4 inheritance: unexpected re-initialization?
...R I am calling the following functions: > library(myclasspkg) > subA <- new("SubClassA",filename="OutSubA",filedir="/Volumes/CoreData/CRAN/Workspaces/rclasspkg",mytitle="TitleSubA") > subsubA <- new("SubSubClassA",filename="MyFileName",filedir="/Volumes/CoreData/CRAN/Workspaces/rclasspkg",subA=subA) > subsubB <- new("SubSubClassB",filename="MyFileNameB",filedir="/Volumes/CoreData/CRAN/Workspaces/rclasspkg",subA=subA) Creating subsubA works fine and gives the correct result:...
2009 Mar 12
1
Plots not loading
Hello, When I run my .r script using source (myfilename) from console the plots appear. However, when I execute the same file via terminal command line using R CMD BATCH myfilename, the plots do not appear. I am working with Mac. Am I doing something wrong? Thanks, Atul
2010 Nov 09
2
How to program an error into an if-then statement
..., for some of the dates, I have no file (no way to know which dates). So, when I try to read it in I get an error: Error in file(file, "rt") : cannot open the connection Question: I'd like to program an if-then statement in my code that says something like this: myfile<-read.csv(myfilename) if "cannot open the connection" - then do X What statement should I use under "if"? Thanks a lot! -- Dimitri Liakhovitski Ninah Consulting www.ninah.com
2006 Jan 18
1
Rails and PostgreSQL bytea
...is this: ActiveRecord::StatementInvalid in Init_test#save_file ArgumentError: Invalid Ruby/cstring: INSERT INTO globalfiles(chksum,block,directory,filename,blocksize,time,data) VALUES(''10fcfa244eb972c6de695be235d11f98'', ''0'', ''test'', ''myfilename'', ''500000'', ''NOW()'', ''?B??H?3?!g1hV??9 blaaaahh more binary data...'' I have got a indication that this should be done automatically, but does this hold for the postgres-pr module? Best Regards Rickard Btw, I''m using Ruby...
2010 Dec 01
0
MixMonitor not recording in version 1.8
...ance Playback(beep); // *************************************************** // THIS IS WHERE the problem lies. // This call does NOT start recording at this time! // It used to work, in 1.4.22. But in 1.8 it does not. // *************************************************** MixMonitor(myfilename.alaw,,mv myfilename.alaw myfinishedfilename.alaw); jump 0001 at dicta-while-recording; } } dicta-while-recording { 0001 => { WaitExten(400); // This is effectively the maximum length of a recording! } } // END OF SAMPLE ************************ Any help is greatly appreciated. Best...
2009 Mar 16
2
t38 iax trunk
Hi all, I have a question regarding using T38 for fax sending and here is my scenario: fax -> SIP ATA (T38 enabled) -> Asterisk #1 -> IAX TRUNK -> Asterisk #2 -> SIP ATA (T38 enabled) -> fax My question is, how can I know if I'm really using T38? is T38 information coming to the other side (because of SIP to IAX conversion) or just plain g711a data? I'm using Linksys
2011 Mar 02
3
gestión de la memoria en R? (o Eclipse)
...b de RAM. Pues la cuestión es que des de hace unas semanas se me cuelga la sesión de R antes de llegar al final del procesado de archivos (hoy en el archivo número 180) El mensaje de la consola es algo así como: ------------------------------------------- Error in system(paste("rm ", myfilename, sep = ""), TRUE) : cannot popen 'rm files_out/2010/report_on_file_list.txt', probable reason 'No s?ha pogut reservar memòria' ------------------------------------------- 'No s?ha pogut reservar memòria' = No se ha podido reservar memoria Y lo más curioso, es q...
2010 Dec 07
1
latex() hangs R console
[Env: R 2.11.1, Win Xp, Miktex 2.7] I've just started using Hmisc::latex and friends, and find that running latex() produces the .tex and .dvi files, but hangs, presumably trying to run yap. An example is below. What could be wrong? My PATH seems OK: > strsplit(Sys.getenv("path"),';') $path [1] "c:\\program files\\imagemagick-6.4.4-q16"
2011 Jun 10
1
Incoming Call Recording
..., but no recordings are showing up in the /var/spool/asterisk/monitor/ folder. record_out=always record_in=always Another page I came across on Google ( http://www.voip-info.org/wiki/view/Asterisk+cmd+Monitor) suggested I add the following line to my sip.conf file: exten => 2060,3,Monitor(wav,myfilename) I can see how this could work, but I'm not sure what to replace "2060" with, as what I need setup is the record of all incoming calls across the board, not just calls associated with a particular extension number (ie: 2060). Your sure is appreciated! -- Rick Hall Senior Vice P...
2011 Nov 29
2
Extracting from zip, removing certain file extensions
Hi there, I'm running R on windows 7 with Rstudio. Everyday I receive a zip file where a bunch of half-hourly files are zipped together. I then use xx=unzip(ind) to get xx, which consists of : [1] "./2011/A20112961503.flx" "./2011/A20112961503.log" "./2011/A20113211730.slt" "./2011/A20113211800.slt" "./2011/A20113211830.slt"
2006 Nov 13
1
handling time units--hours, minutes, days--from file times
...been able to handle irregular intervals. I tried using the zoo package, and had similar problems with the conversion of time units. Code and sample data is below-- for your info--after this, I am feeding the times and measurements to nls. Thanks in advance, -- Warren #Here is the failed code: myfilenames<-row.names(myfileinfo) fileno<-length(myfilenames) filetimes<-numeric() for (i in 2:fileno){rel.read.time<-myfileinfo$mtime[i]-myfileinfo$mtime[1] rel.read.time<-(as.numeric(rel.read.time)) ##this next part is problematic ##i would love to say > time.in.hours<-as.ho...
2006 Nov 17
0
difftime for handling time units--hours, minutes, days--from file times
...on of time units. > > > > Code and sample data is below-- > > for your info--after this, I am feeding the times and measurements to > > nls. > > > > Thanks in advance, > > -- Warren > > > > > > #Here is the failed code: > > > > myfilenames<-row.names(myfileinfo) > > > > fileno<-length(myfilenames) > > > > filetimes<-numeric() > > > > for (i in 2:fileno){rel.read.time > > <-myfileinfo$mtime[i]-myfileinfo$mtime[1] > > > > rel.read.time<-( as.numeric(rel.read.time))...
2007 May 30
3
sizing and saving graphics in R
Dear R wizards, I am seeking advice on graphics in R. Specifically, how to manipulate the size and save a plot I have produced using the LDheatmap library. I confess I am relatively new to graphics in R, but I would greatly appreciate any suggestions you may have. LDheatmap produces a coloured triangular matrix of pairwise associations between 600 genetic markers in my dataset.
2004 Nov 18
0
FW: Dumping streams to a file?
...ling list, but it would need some time > to create the patch for the current 2.1 release. > > It goes something like this: > > http://localhost:8000/admin/dumpfile?mount=/mymount&file=/web/recordings/myf > ilename.mp3 > > This would dump stream '/mymount' as 'myfilename.mp3' in the > '/web/recordings' directory. > Stopping the dump is done by > http://localhost:8000/admin/dumpfile?mount=/mymount&file= > > Cheers, > KJ > > -----Oorspronkelijk bericht----- > Van: icecast-bounces@xiph.org [mailto:icecast-bounces@xiph.org]Na...
2006 Nov 18
0
creating and calling objects based on elements of another object...
...ngth(platelist) for (i in 1:platenumber){ as.name(platelist[i])<-matrix() } #eventually I would like to use these matrices to read in the contents of multiple files, but using as.name hasn't worked her either. for (i in 1:fileno){ as.name(plateID[i])<-cbind(as.name(plateID[i]),read.delim(myfilenames[i], header=FALSE)) } I have been trying multiple functions to force evaluation and treat these elements as objects, and I get errors like: could not find function "as.name<-" Directly trying to create matrices doesn't work like this: > for (i in 1:platenumber){ + platelist[i]...
2005 Mar 11
0
One single record file for a meetme monitor?
I'm trying to figure out the best way to record a conference. Many people suggest something like this: exten => 2060,1,Answer exten => 2060,2,Wait(1) exten => 2060,3,Monitor(wav,myfilename) exten => 2060,4,Meetme(1,ps) However, this creates two files for each user that connects to the meetme. (I know they can be mux'd together to make one with sox..I've done that too) However, you still get 10 files if 10 users enter the meetme. I'd really like to be able to simp...
2006 Jun 08
1
transfer logging -- absolute file path?
...omising. I have been experimenting with the transfer log facility, and while that can provide the module path, and the base filename, it appears to exclude any sub-path information for the file. for instance if I archive files into module logs_foobar/server1, these will go to /module/path/server1/myfilename. But I cannot get the actual path of the file written in the transfer log line, only the parts to the left or right of "server1" in my example. Is there a way to get the real path of the file written? Thanks in advance. -Alan =========== Alan Sparks, UNIX/Linux Systems Administrator...
2010 Feb 12
2
How to source files from a search path?
Suppose some environment variable (say MY_R_INC) has a number of paths. I want to source some file relative to some path in $MY_R_INC (just as #include in C++ does, which looks for header file in a number of directories). I RSiteSearch'ed, but I don't find any function that satisfies my need. Could somebody let me know if I overlooked something?
2005 Sep 14
4
*** saving files ***
Hi, I need help :o( I want that my function saves result files in a for()-loop while it runs automatically. the filenames must be saved like: file_1 -> for 1. result file_2 -> for 2. result file_3 -> for 3. result and . . . file_n -> for n. result the file names are the same identified by _1, _2