search for: sm1

Displaying 20 results from an estimated 30 matches for "sm1".

Did you mean: m1
2010 Jun 07
2
mgcv
Hello Sir, I am using mgcv package for my data. My model is y~x1+f(x2),I want to find out the function f(x2) . Following is the code.   sm1=gam(y~x1+s(x2),family=binomial, f) summary(sm1) plot(sm1,residuals=TRUE, xlab="AGE",pch=20)   In this plot I am getting S(x2,1.93) on y axixs  How should I get the function for x2 from this plot.or Is there anyother procedure in R  to get this function or value for that particular fun...
2004 Sep 10
2
[Flac-users] Re: CD archival best practices?
On Wed, 28 May 2003, Josh Coalson wrote: > interesting idea, CD-TEXT is in the subcode and if cdrdao can > split it out that's better I think than hacking the CUESHEET > block to store CD-TEXT. I suppose the ideal would be to have a metadata block to store the subcode from a CD, and something that could interpret it as CD-TEXT, if that's what it is. Then it would be possible to
2010 Jul 12
1
ed50
I am using semiparametric Model  library(mgcv) sm1=gam(y~x1+s(x2),family=binomial, f) How should I  find out standard error for ed50 for the above model ED50 =( -sm1$coef[1]-f(x2)) / sm1$coef [2]   f(x2) is estimated value for non parametric term.   Thanks [[alternative HTML version deleted]]
2009 Jun 03
2
code for double sum
Hi R-users,   I wrote a code to evaluate double sum as follows:   ff2 <- function(bb,eta,z,k) { r <- length(z) for (i in 1:r) { sm1 <- sum((z[i]*bb/2)*(psigamma((0:k)+eta+1,deriv=0)/(factorial(0:k)*gamma((0:k)+eta+1))))  sm2 <- sum((besselI(z[i]*bb,eta)*log(z[i]*bb/2) - sm1)/besselI(z[i]*bb,eta))  sm2 } ff2(bb,eta,z,10)     but it gave me the following message:   > source(.trPaths[5], echo=TRUE, max.deparse.length=1000...
2011 Oct 06
0
linear classifiers with sparse matrices
...g that scales relatively well without taking up too large a memory footprint to run. Thanks! Jeff See below for an example that recreates what my basic attempts at using sparse matrices > L1=rep(0:1,5) > M1=sparseMatrix(i=c(1:5*2,1:5*2),j=c(rep(1,5),rep(10,5)),x=1) > L1=rep(0:1,5) > SM1=sparseMatrix(i=c(1:5*2,1:5*2),j=c(rep(1,5),rep(10,5)),x=1) > DM=as.matrix(SM1) > SM2=as.matrix.csr(DM) > as.matrix(SM2) ? ? ?[,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [,9] [,10] [1,] ? ?0 ? ?0 ? ?0 ? ?0 ? ?0 ? ?0 ? ?0 ? ?0 ? ?0 ? ? 0 [2,] ? ?1 ? ?0 ? ?0 ? ?0 ? ?0 ? ?0 ? ?0 ? ?0 ? ?0 ? ? 1 [3...
2010 Sep 15
1
Difficulty creating Julian day in data frame
...the resulting data frame: vic.data <- read.table("C:/VIC/data/vic.data.csv", header=F) names(vic.data) <- c("year", "month", "day", "precip", "evap", "runoff", "baseflow", "Tsup", "SM1", "SM2", "SM3", "SWE") vic.data$temp.date <- as.Date(paste(vic.data$year, "/", vic.data$month, "/", vic.data$day, sep="")) vic.data$julian.day <- julian(vic.data$temp.date, origin = as.Date("1900-01-01&q...
2005 Jul 27
3
[LLVMdev] How to define complicated instruction in TableGen (Direct3D shader instruction)
...def SW: Swizzle; class InstructionModifier : Operand<i8> {} def IM: InstructionModifier ; class SourceModifier : Operand<i8> {} def SM: SourceModifier ; def ADD<0x01, (ops GPR:$dest, ops WM:$wm, IM:$im, GPR:$src0, SW:$sw0, SM:$sm0, GPR:$src1, SW:$sw1 SM:$sm1 ), ... > 2. add llvm intrinsics: ; add_sat r0.a, r1_bias.xxyy, r3_x2.zzzz r1_1 = llvm.bias( r1_0 ) r1_2 = llvm.shuffle( xxyy ) r3_1 = llvm.x2( r3_0 ) r3_2 = llvm.shuffle( zzzz ) r0_0 = add r1_2, r3_2 r0_1 = llvm.sature( r0_0 ) r0_2 = llvm.select( a ) but it makes the implement...
2010 Nov 16
2
how to remotely join workstations from commandline no ADS
...] libsmb/credentials.c:netlogon_creds_server_check(223) netlogon_creds_server_check: credentials check failed. [2010/10/11 09:51:52, 0] rpc_server/srv_netlog_nt.c:_netr_ServerAuthenticate2(555) _netr_ServerAuthenticate2: netlogon_creds_server_check failed. Rejecting auth request from client SM1 machine account SM1$ [2010/10/11 09:51:52, 3] passdb/secrets.c:secrets_store_schannel_session_info(1217) My smb ver. 3.3.8-0.52.el5_5.2 Pleas help
2008 Oct 08
1
Suspicious output from lme4-mcmcsamp
...base packages: [1] stats graphics grDevices utils datasets methods base other attached packages: [1] lme4_0.999375-26 Matrix_0.999375-11 lattice_0.17-13 loaded via a namespace (and not attached): [1] grid_2.7.2 > fm1 <- lmer(Reaction ~ Days + (Days|Subject), sleepstudy) > sm1 <- mcmcsamp(fm1, 5000) Error in .local(object, n, verbose, ...) : Code for non-trivial theta_T not yet written ## I cannot find exactly what this theta_T error means, although I do find it mentioned in what I believe to be source code. Regardless, I cannot understand why the mcmcsamp returns...
2005 Jul 29
0
[LLVMdev] How to define complicated instruction in TableGen (Direct3D shader instruction)
...r : Operand<i8> {} > def IM: InstructionModifier ; > > class SourceModifier : Operand<i8> {} > def SM: SourceModifier ; > > def ADD<0x01, (ops > GPR:$dest, ops WM:$wm, IM:$im, > GPR:$src0, SW:$sw0, SM:$sm0, > GPR:$src1, SW:$sw1 SM:$sm1 ), ... > > > 2. add llvm intrinsics: > > ; add_sat r0.a, r1_bias.xxyy, r3_x2.zzzz > r1_1 = llvm.bias( r1_0 ) > r1_2 = llvm.shuffle( xxyy ) > r3_1 = llvm.x2( r3_0 ) > r3_2 = llvm.shuffle( zzzz ) > r0_0 = add r1_2, r3_2 > r0_1 = llvm.sature( r0_0 ) &gt...
2012 Oct 02
5
smoothScatter plot
Hi, I want to make a plot similar to sm1 (attached). The code I tried is: dcols <- densCols(x,y) smoothScatter(x,y, col = dcols, pch=20,xlab="A",ylab="B") abline(h=0, col="red") But it turned out to be s1 (attached) with big dots. I was wondering if anything wrong with my code. Thanks,Zhengyu...
2009 Mar 23
4
newton method
Hi R-users, Does R has a topic on newton's method? Thank you for the info.
2010 Nov 16
1
Force evaluation of variable when calling partialPlot
...ariable "v". I'm having a very similar problem using the partialPlot function. A simplified version of my code looks like this: data.in <- paste(basedir,"/sw_climate_dataframe_",root.name,".csv",sep="") data <- read.csv(data.in) vars <- c("sm1","precip.spring","tmax.fall","precip.fall") #selected variables in data frame xdata <- as.data.frame(data[,vars]) ydata <- data[,5] ntree <- 2000 rf.pdplots <- function() { sel.rf <- randomForest(xdata,ydata,ntree=ntree,keep.forest=TRUE) par(f...
2006 Apr 10
0
Missing X-IMAPbase header causing mbox corruption
If the first message in an mbox is deleted by an external program, therefore removing the X-IMAPbase header, an error such as the following occurs. Apr 9 20:10:51 sm1 dovecot: imap(306812): file mbox-sync-update.c: line 460 (mbox_sync_update_header_from): assertion failed: (ctx->mail.uid == 0 || ctx->mail.uid_broken || ctx->mail.uid == mail->uid) This prevents the user from logging in, but also appears to cause mbox corruption. If the X-IMAPbase an...
1999 Nov 17
1
samba-2.0.6 configure on solaris 2.6
...stance would be greatly appreciated. Cheers, Gary Ross Disclaimer: This message is not intended to be legally binding and no liability is accepted for any action in reliance on its contents. Securicor Omega Express Limited Registered Office: Sutton Park House, 15 Carshalton Road, Sutton, Surrey SM1 4LD. Registered in England No: 2275780 Tel: +44 (0)181 770 7000 Fax: +44 (0)181 643 1059
2011 Mar 29
2
[LLVMdev] [GSoC] "Microsoft Direct3D shader bytecode backend" proposal
..., I > intend to implement just enough to get simple examples working with > Wine's Direct3D implementation. > > > Could you be a bit more specific on your goals? A few quick questions > that come to mind are: > > 1. What shader models will you aim to support? SM1-3. SM4 was a huge break from SM3 (so I've gathered from reading Wine source; all the opcodes seem to be different), so I'll do that later. > 2. What types of shared will you aim to support? e.g. vertex, pixel, > geometry, hull Since I'm only doing up to SM3, vertex and pixel shad...
2019 May 16
3
ALTREP: Bug reports
...7fbb0 14 REALSXP g0c0 [MARK,NAM(7)] Share object of type > double > > .Internal(inspect(so2)) > @0x0000000005fc5ac0 14 REALSXP g0c0 [MARK,NAM(7)] wrapper > [srt=-2147483648,no_na=0] > @0x0000000005e7fbb0 14 REALSXP g0c0 [MARK,NAM(7)] Share object of type > double > > sm1=peekSharedMemory(so1) > getting data 1 > > sm2=peekSharedMemory(so2) > getting data 1 > getting data 1 We see that so2 call R_altrep_data1 twice to get the internal data. This is very unexpected. Thank you very much for your help again! Best, Jiefei On Thu, May 16, 2019 at 3:4...
2005 Aug 17
4
How to assess significance of random effect in lme4
Dear All, With kind help from several friends on the list, I am getting close. Now here are something interesting I just realized: for random effects, lmer reports standard deviation instead of standard error! Is there a hidden option that tells lmer to report standard error of random effects, like most other multilevel or mixed modeling software, so that we can say something like "randome
2011 Mar 29
0
[LLVMdev] [GSoC] "Microsoft Direct3D shader bytecode backend" proposal
...just enough to get simple examples working with >> Wine's Direct3D implementation. >> >> >> Could you be a bit more specific on your goals? A few quick questions >> that come to mind are: >> >> 1. What shader models will you aim to support? > SM1-3. SM4 was a huge break from SM3 (so I've gathered from reading Wine > source; all the opcodes seem to be different), so I'll do that later. >> 2. What types of shared will you aim to support? e.g. vertex, pixel, >> geometry, hull > Since I'm only doing up to SM3, ver...
2009 May 08
0
Wine release 1.1.21
...ance. msi: Reject NULL or empty patch package parameter in MsiApplyPatch. wininet: Don't send any data after being redirected. pdh: Implement PdhMakeCounterPathA/W. Henri Verbeet (51): wined3d: Store D3D shader opcode names in a separate table. wined3d: Use shader_sm1_read_opcode() in shader_trace_init(). wined3d: Add a function to read a source parameter from SM1-3 bytecode. wined3d: Add a function to read a destination parameter from SM1-3 bytecode. wined3d: Add a wined3d pixel shader to struct d3d10_pixel_shader. wined3d: Create a sepa...