search for: noprint

Displaying 17 results from an estimated 17 matches for "noprint".

2008 Nov 26
1
Request for Assistance in R with NonMem
...(0, 38) ;V (0.0, .5) ; EMAX (0.0, 100) ; EC50 (0.0, 1, 10) ; N $OMEGA 0.04 0.04 0.04 0.04 0.04 0.04 $SIGMA 0.04 5 $ESTIMATION MAXEVAL=9999 NOABORT METHOD=0 POSTHOC PRINT=5 $COVARIANCE $TABLE ID TIME AGE BW GNDR TVKA TVV TVCL ETA1 ETA2 ETA3 EVID NOPRINT ONEHEADER FILE=TABLE.PAR $TABLE NOPRINT FILE=../3033.TAB ONEHEADER ID TIME AGE BW GNDR KA V CL TVKA TVCL TVV FLAG FLA2 EVID EFF CONC IPRED FLAG $TABLE NOPRINT ONEHEADER FILE=../3033par.TAB ID TIME AGE BW GNDR KA V CL TVKA TVCL TVV EMAX EC50 ETA1 ETA2 ETA3 EVID $TABLE ID TIME COM(1)=G11 COM(2)=G21...
2011 Dec 06
2
configuring a package for own personal needs
...e it seems to have some private functions which I do not have access to. So what is the best way of rewriting the package and compiling it (some of the code is written in C). Note that I want to do some other configurations besides the above mentioned (incase you were going to mention some sort of noprint option). Thanks, Sachin [[alternative HTML version deleted]]
2004 Jul 16
3
sas to r
...and p). Moreover, I can output these calculations and grouping variables to a dataset named "dat2" that will reside in RAM and include the variables wshed, site, species, mBdA, msla, cBda, sBdA, ssla, nBda, and nsla. proc sort data=dat1; by wshed site species; proc means data=dat1 noprint mean cv stderr n; by wshed site species; where species in ('b', 'c', 'p'); var BdA sla; output out=dat2 mean=mBdA msla cv=cBdA csla stderr=sBdA ssla n=nBdA nsla; Thanks, Greg
2009 Nov 08
2
Counting non-empty levels of a factor
...tore before dropping empty factor I can't either counting the line for each store (N), because the same brand can appear several times in each store (several products for the same brand, and/or several weeks of observation) I used to do this calculation using SAS with: proc freq data = MyData noprint ; by store ; tables brand / out = result ; run ; (the cool thing was I got a database I can merge with MyData) any idea for doing that in R ? Thanks in advance, King Regards, Sylvain Willart, PhD Marketing, IAE Lille, France
2007 Mar 04
0
Trouble figuring messages from rcspline.plot
...lot a restricted cubic spline using: require (Hmisc) require (Design) rcspline.plot(x=egfr,y=comp,model="logistic",nk=5,knots=NULL, xlab="label1", ylab="Label2", plim=c(0,1), plotcl=TRUE, showknots=TRUE, add=FALSE, lty=1, noprint=FALSE, smooth=FALSE, main="Title goes here "); I get the following error message (exactly as cut/pated): Loading required package: package Error in requirePackage("Design") : This function requires theDesignpackage In addition: Warning message: there is no packa...
2000 Dec 14
1
OpenSSH, Kth kerberos, and Digital Unix
I've compiled OpenSSH 2.3.0p1 with Kerberos 4 from Kth (1.0.4). We use AFS heavily and need the AFS token passing features. This combo is working great on Irix and NetBSD/{alpha,i386}, but it's dying on Digital Unix (4.0f and 5.0). "ssh -v hostname" dumps core in des_pcbc_encrypt() after "Trying Kerberos authentication". My suspicion is that the des routines from
2007 Dec 27
0
SAS to R - if you have SAS 8.2+
...inPath,"/t__sc__t.csv", sep="") libRef <- obSAS.DataService$AssignLibref("sasds","",inPath,"") # create the content csv file cont1 <- paste("proc contents data=sasds.",inSAS," out=_tmp1(KEEP=NAME TYPE LENGTH VARNUM FORMAT) noprint; run;",sep="") cont2 <- "proc sort data=_tmp1; by varnum; run;" cont3 <- "data _tmp2; set _tmp1; if type=2 then dummy='character'; " cont3 <- paste(cont3,"if type=1 then do; if format in ('DATE','DATETIME') then dummy='...
2010 Feb 19
2
segfault - (imap|pop3)-login during nessus scan
We've been struggling with a problem for the past couple of days which to this point I've only gotten to be able to boil down to this: 1. Install nessus home edition (less pluggins I assume) 2. run all scans (sequentially or in parallel, doesn't seem to matter) 3. about 3 minutes in /var/log/messages will show segfaults on imap and/or pop3 imap-login[22185]: segfault at
2004 Jan 29
3
W9x doesn't download printer drivers
My W9x clients cannot download printer driver from samba 3.0.2rc1 with cups 1.1.17, while w2k clients do. The W9x clients open the Add Printer Wizard, connect to print$ share, request the ADOBEPS4.DRV file, but they stop at the beginning of the download. Permissions on print$\WINNT\0 directory are the same as print$\W32X86\2. cupsaddsmb was successful. I sniffed the packets while client was
2000 Jun 21
3
SAS dataset
Hello, Is there any way we convert SAS dataset into R dataset? Kindest Regards, Peppy Adi-Purnomo ------ Peppy Adi-Purnomo Energy Market Analyst Energy Link Ltd Dunedin - New Zealand Ph.: +64 3 479 2475 Fax: +64 3 477 8424 Email: s.adi.purnomo at energylink.co.nz www.EnergyLink.co.nz -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read
2006 Jul 27
6
Any interest in "merge" and "by" implementations specifically for sorted data?
...C is an integer sort key made from two integer columns */ MDPC = (MD * 100000) + PCO; /* sort the dataset by the key */ PROC SORT; BY MDPC; /* print out count and sum for each unique sort key (subgroup) */ /* use of BY MDPC requires sorting that data set by MDPC first in SAS */ PROC UNIVARIATE NOPRINT; VAR MVE; BY MDPC; OUTPUT OUT=TMP0 N=XN SUM=XSUM; Easy to do in R but the problem is the data set this is being run on has 1,742,201 lines in it and takes up 196,868,713 bytes to store as character data. The sort key has easily has over 200,000 unique keys (if not twice that)....
2009 Feb 04
12
Serial console hangs with Linux 2.6.20 HVM guest
I am seeing a problem with the Xen emulated serial console. When running a Linux 2.6.20 HVM guest that has CONFIG_HOTPLUG_CPU=n, the guest blocks on output to the console until it receives input keypresses from `xm console`. This prevents the guest from booting up without banging on some keys, and makes interactive use of the console difficult. By bisecting Linux kernel commits, I found that
2008 Jan 14
1
Problems with forms
...https://images.qxlricardo.com/ImgWeb/2/V3/design/logo.png'' alt=''ricardo.ch'' width=''205'' height=''40'' border=''0'' class=''logo''> </a> <div id=''chglang'' class=''noprint''>DE | <a href=''https://www.fr.ricardo.ch/form/AddObj.asp?action=mod&amp;AuctionNr=527355264&amp;SSL=ON''>FR</a></div> <ul class=''noprint''> <li><a href=''http://www.ricardo.ch/Kategorien/Buy1/...
2002 Oct 09
3
proc mixed vs. lme
...; strength=s3; output; time=4; strength=s4; output; time=5; strength=s5; output; time=6; strength=s6; output; time=7; strength=s7; output; keep subj program time strength; run; proc sort data=weight2; by program time; run; /*---Data Set 3.2(c)---*/ proc means data=weight2 noprint; by program time; var strength; output out=avg mean=strength; run; /*---produces Output 3.1 on pages 91-92---*/ proc mixed data=weight2; class program subj time; model strength = program time program*time /s; random subj(program); run; #The SA...
2008 Nov 21
3
HELP
[This email is either empty or too large to be displayed at this time]
2017 Apr 07
34
[RFC 0/3] virtio-iommu: a paravirtualized IOMMU
This is the initial proposal for a paravirtualized IOMMU device using virtio transport. It contains a description of the device, a Linux driver, and a toy implementation in kvmtool. With this prototype, you can translate DMA to guest memory from emulated (virtio), or passed-through (VFIO) devices. In its simplest form, implemented here, the device handles map/unmap requests from the guest. Future
2017 Apr 07
34
[RFC 0/3] virtio-iommu: a paravirtualized IOMMU
This is the initial proposal for a paravirtualized IOMMU device using virtio transport. It contains a description of the device, a Linux driver, and a toy implementation in kvmtool. With this prototype, you can translate DMA to guest memory from emulated (virtio), or passed-through (VFIO) devices. In its simplest form, implemented here, the device handles map/unmap requests from the guest. Future