Displaying 2 results from an estimated 2 matches for "scantext".
Did you mean:
context
2007 Jan 26
1
CGIwithR and visible output of 'invisible(capture.output(library(...)))'
Dear alltogether,
I want to use CGIwithR in conjunction with R2HTML.
A small example called 'test.R':
#####
#! /usr/bin/R
invisible(capture.output(library(R2HTML)))
HTML(summary(as.numeric(scanText(formData$numbers))), file=stdout())
#####
The script gets its input via 'CGIwithR.cgi' and contains the variable
"numbers."
The 'HTML' output (-> summary() in this example) goes well, but the
loading of the R2HTML library is also printed (!) in the resulting html
pag...
2010 Jul 16
0
Effects library LSM decimal place errors
...em gives the following values in SAS:
var1 ln_y Error
-4.10699540 0.06879095
-4.21943501 0.10096482
The following is my SAS code:
PROC IMPORT OUT= WORK.dat
DATAFILE= "C:\Documents and Settings\nxf\Desktop\mydat.xls"
DBMS=EXCEL REPLACE; GETNAMES=YES;
MIXED=NO; SCANTEXT=YES; USEDATE=YES; SCANTIME=YES;
RUN;
proc contents data=dat;
run;
data dum;
set dat;
ln_y = log(y+0.01);
run;
proc glm data=dum;
title2 'test';
weight w;
class var1 var2 var3;
model ln_y = covar var1 var2 var3 var1*var3 var2*var3;
lsmeans var1 var2 var3 var1*var3 var2*var3 /out...