search for: finaloutput

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

2003 Jan 30
1
not enough charcters available in %J or confusing blanks?
...quot;Rank Owner/ID Class Job Files Size Time" exit 0 fi OUTPUT="$2/$BASEFILE-$4-$$" > $OUTPUT if [ $? -ne 0 ] then echo "Can't create temp file $OUTPUT, exiting..." >$info0 else if [ "$NAME" != "" ] then FINALOUTPUT="$PREFIX/$NAME" else FINALOUTPUT="$OUTPUT" fi WIN_OUTPUT="$WINBASE\\"`basename "$FINALOUTPUT"` $PS2PDF $OPTIONS $INPUT $OUTPUT.pdf >/dev/null 2>&1 mv -f "$OUTPUT".pdf "$FINALOUTPUT".pdf (echo &qu...
2004 May 05
1
Printproblems in 3.0.3 - Postscript files contain log messages
...SEFILE=${BASEFILE=pdf-service} TEMP="${TEMP=$2}" UMASK=${UMASK=006} mkdir -p "$PREFIX" INFILE=$(basename $INPUT) umask $UMASK [ -n "$NAME" ] && TEMP="$PREFIX" OUTPUT=`mktemp -d $TEMP -p $BASEFILE-XXXXXX` if [ -n "$NAME" ]; then FINALOUTPUT="$PREFIX/$NAME" else FINALOUTPUT="$OUTPUT" fi if [ -n "$8" ]; then OPTIONS="$OPTIONS -dPDFSETTINGS=/${8#pdf-}" else OPTIONS="$OPTIONS -dPDFSETTINGS=/default" fi $PS2PDF $OPTIONS "$INPUT" "$OUTPUT.pdf" mv...
2011 Jun 15
3
Column of numbers added to dataframe when saving with read.csv
I have a dataframe object having the following structure FinalOutput[1:3,] GasDays 2011-03-31 2010-09-30 2010-10-31 2010-11-30 2010-12-31 2011-01-31 2011-02-28 1 2006-10-01 217303553 221205033 222824639 217016511 216093460 216477468 216834021 2 2006-10-02 231158527 234565250 236004109 231467851 230100639 230079907 230734064 3 2006-10-03 282062314...
2005 Nov 03
1
Error message: " The following object(s) are masked"
Hello! First time posting here: Here is my code: x <- c(1:22) finaloutput=cidrm=NULL finaldiversityoutput=diversitym=NULL diversityinfo=read.table("Diversity_info.txt", header=T, sep="\t", row.names=NULL) attach(diversityinfo) diversitynr=nrow(diversityinfo) diversitytemp <- matrix(0,nrow=diversitynr,ncol=1) for(j in 1:length(x)) { diversitym=rea...
2008 May 06
2
list manipulation
Hello, I have a set of one-liners (many thanks to previous responses from this list) that I use to look at newly imported data sets with functions like dim(), names(), str(), etc. within lapply(). Generally, these commands work for me but, I am apparently still missing some aspect of list manipulation. I don't understand why I get a set of NULL list elements at the end of each output as