search for: outputfile_nam

Displaying 5 results from an estimated 5 matches for "outputfile_nam".

Did you mean: outputfile_name
2012 Oct 15
1
performance analytics
hi Michael, am sorry for the incomplete reply . csv file data havinmg like this , >getSymbols("IBM") >weekly_data = to.weekly(week_name) >dataframe=data.frame(weekly_data) >outputfile_name="F:\\R-programs\\Outputfile.csv" >write.table(dataframe, file =outputfile_name,sep = ",",col.names =TRUE,row.names = T) > datafrom_table <- read.csv(file=outputfile_name,head=TRUE,sep=",") > d12=dput(datafrom_table) structure(list(week_name.Open = c(97.1...
1999 Sep 01
1
BATCH processing in R
Dear List, My question is whether it is possible (and if so, how) to enter values into R vectors (R_OUTFILE, and R_INFILE in my example below) from the command line. In particular, I would like to run R, as a BATCH job, from a shell script, such as the following: while read inputfile_name outputfile_name; do R_OUTFILE=$outputfile_name R_INFILE=$inputfile_name R BATCH infile.R done with, for example, the following infile.R able to use the variables, R_OUTFILE, and R_INFILE. sink(R_OUTFILE) x<-read.table(R_INFILE) mode(x)="numeric" library(cluster) a<-agnes(x,T)...
2004 Nov 20
0
ffmpeg2theora start and end time support
...uot; "\t dvgrab --format raw - | \\\n" "\t ffmpeg2theora -f dv -x 160 -y 128 -o /dev/stdout - | \\\n" "\t oggfwd iccast2server 8000 password /theora.ogg\n" "\n"); exit (0); } int main (int argc, char **argv){ int n; int outputfile_set=0; char outputfile_name[255]; char inputfile_name[255]; static int croptop_flag=0; static int cropbottom_flag=0; static int cropright_flag=0; static int cropleft_flag=0; static int nosound_flag=0; static int aspect_flag=0; AVInputFormat *input_fmt=NULL; ff2theora convert = ff2theora_init (); av_register_a...
2004 Nov 20
0
ffmpeg2theora start and end time support - patch
...case 'e': + convert->end_time = atoi(optarg); + break; + case 's': + convert->start_time = atoi(optarg); + break; case 'o': sprintf(outputfile_name,optarg); outputfile_set=1;
2004 Nov 16
0
metadata switches for ffmpeg2theora
...add_tag(&info.tc, "ORGANIZATION", optarg); + break; + case 15: + theora_comment_add_tag(&info.tc, "COPYRIGHT", optarg); + break; + case 16: + theora_comment_add_tag(&info.tc, "LICENSE", optarg); + break; case 'o': sprintf(outputfile_name,optarg); outputfile_set=1;