search for: b5

Displaying 20 results from an estimated 740 matches for "b5".

Did you mean: 5b
2012 Nov 22
1
prediction problem
...e A9 B7 0,631288766 0 0 0,029634735 0,188146106 0 0 0 0 0,187408732 0 0 0,033825063 0,637267173 0 0 0 0 0 145,1 11 PRT00000042540527 verde A9 B7 0,775214835 0 0 0,014925373 0,03256445 0,054726368 0 0 0 0,610476668 0 0 0,031623122 0,225502758 0,110096002 0 0 0 0 221,1 12 PRT00000112140260 amarelo A7 B5 0 0 0,009701493 0,664925373 0 0,017164179 0,042537313 0,023880597 0 0 0 0,011007463 0,617276119 0 0,004626866 0 0,120279851 0,012649254 0 134 13 PRT00000112140305 azul A7 B5 0 0 0 0 0 0 0,095049505 0 0 0 0 0 0 0 0 0,080972426 0,567469139 0 0 101 14 PRT00000112140366 azul A7 B5 0 0 0,014857143 0,102...
2003 Sep 07
0
µÚËĽ챱¾©³¯Ñô¹ú¼ÊÉÌÎñ½Ú
=BE=B4=C6=F4=D5=DF=A3=BA =A1=B0=B5=DA=CB=C4=BD=EC=B1=B1=BE=A9=B3=AF=D1=F4=B9=FA=BC=CA=C9=CC=CE=F1= =BD=DA=A1=B1=BD=AB=D3=DA2003=C4=EA10=D4=C2=D4=DA=B1=B1=BE=A9=BE=D9=B0=EC=A1= =A3=BD=EC=CA=B1=A3=AC=B9=FA=BC=D2=C1=EC=B5=BC=C8=CB=A1=A2=CD=E2=B9=FA=D5=FE= =D2=AA=BA=CD=C0=B4=D7=D4=C3=C0=A1=A2=B5=C2=A1=A2=B7=A8=A1=A2=B0=C4=B4=F3=C0= =FB=...
2008 Apr 16
1
CentOS 4.6 - dhcp issue
...'wrong'. In the 2 examples below nothing is changed the differing result is just achieved by trying another install, as i said its rather random. Any thoughts? thanks ** section of log i see when i have install issue ** Apr 16 14:25:53 cobbler dhcpd: DHCPDISCOVER from 00:0c:29:16:f8:b5 via eth0 Apr 16 14:25:53 cobbler dhcpd: DHCPOFFER on 192.168.12.190 to 00:0c:29:16:f8:b5 via eth0 Apr 16 14:25:53 cobbler dhcpd: DHCPDISCOVER from 00:0c:29:16:f8:b5 via eth0 Apr 16 14:25:53 cobbler dhcpd: DHCPOFFER on 192.168.12.190 to 00:0c:29:16:f8:b5 via eth0 Apr 16 14:25:53 cobbler dhcpd: DHC...
2005 Oct 07
3
Converting PROC NLMIXED code to NLME
...lowing NLMIXED code to NLME, but am running into problems concerning 'Singularity in backsolve'. As I am new to R/S-Plus, I thought I may be missing something in the NLME code. NLMIXED *********** proc nlmixed data=kidney.kidney; parms delta=0.03 gamma=1.1 b1=-0.003 b2=-1.2 b3=0.09 b4=0.35 b5=-1.43 varu=0.5; eta=b1*age+b2*sex+b3*gn+b4*an+b5*pkn+u; hazard=eta+log(delta)+log(gamma)+(gamma-1)*log(rtime); survivor=(-exp(eta))*delta*(rtime**gamma); ll=(event*hazard)+survivor; model rtime ~ general(ll); random u~normal(0,varu) subject=patient out=frailty; run; NLME ******** kidney.nlme<-n...
2008 Jan 08
1
Problems with modifying data in a MySQL database
Using the package /RMySQL/ I have established a connection ('con1') to a MySQL-Database called 'mc'. This database contains a table called 'mc_2000' which has 200000 observations on several variables. One of these variables is called 'B5' (type 'double'). When I generate a numeric vector in R called 'B6' that has the same length as 'B5': How can I replace the values of 'B5' with the values of 'B6'? I tried dbGetQuery(con1, "UPDATE mc_2000 SET B5 = B6", B6) but this doesn'...
2009 Oct 29
3
Removing & generating data by category
...cally, from the following arbitrary data set: a <- data.frame(id=c(c("A1","A2","A3","A4","A5"),c("A3","A2","A3","A4","A5")),loc=c("B1","B2","B3","B4","B5"),clm=c(rep(("General"),6),rep("Life",4))) > a id loc clm 1 A1 B1 General 2 A2 B2 General 3 A3 B3 General 4 A4 B4 General 5 A5 B5 General 6 A3 B1 General 7 A2 B2 Life 8 A3 B3 Life 9 A4 B4 Life 10 A5 B5 Life I desire removing record...
2005 Mar 19
2
simple problem, but not for me
...ant to do one thing that is very easy in excel, however, I cant do it in R. Suppose we have the data frame: data<- data.frame(A=c("a1","a2","a3","a4","a5")) I need to obtain another column in the same data frame (lets say B=c(b1,b2,b3,b4,b5) in the following way: b1=a1/(a1+a2+a3+a4+a5) b2=a2/(a2+a3+a4+a5) b3=a3/(a3+a4+a5) b4=a4/(a4+a5) b5=a5/a5 a1..a5 and b1...b5 are always numeric values (this is just an example, what I really want is apply this kind of formula to a much larger data frame) I think this is easy for...
2010 Aug 03
2
How to name matrices from a list with lapply ?
Dear list, I have a list of matrices : i1 <- matrix(1:10, nrow = 2, ncol = 5) i2 <- matrix(11:20, nrow = 2, ncol = 5) j <- list(i1 = i1, i2 = i2) I would like to attribute names to each dimension, for each matrix, as follows : $i1 B1 B2 B3 B4 B5 A1 1 3 5 7 9 A2 2 4 6 8 10 $i2 B1 B2 B3 B4 B5 A1 11 13 15 17 19 A2 12 14 16 18 20 However, I have to use lapply function and attribute names after declaration of j, like this : names <- list(c("A1", "A2"), c("B1", "B2", "B3", "B4", &...
2002 Mar 27
2
Error with nls
...well. Data describes increasing of Apo B after dialysis. Aim of the analysis is to test the hypothesis whether the data could described by two simple disconnected one compartment modes ore the "saturated model" holds? The first order differential equation for the saturated model: db5 = - (k50+k56)*b5 + k56*b6 + c*g(t) + h db6 = + k65*b5 - (k60+k65)*b6 + d db5, db6 are the first derivatives, b5, b6 are the functions to be fitted. The remaining parameters are unknown and should follow from the fit. assuming that g(t) has the functional form: b4i + (b40-b4i)*exp(-k4*t)...
2005 Oct 19
1
nlme Singularity in backsolve at level 0, block 1
...can help with this. I am using nlme to fit a random coefficients model. It ran for hours before returning Error: Singularity in backsolve at level 0, block 1 The model is > plavix.nlme<-nlme(PLX_NRX~loglike(PLX_NRX,PD4_42D,GAT_34D,VIS_42D,MSL_42D,SPE_ROL,XM2_DUM,THX_DUM,b0,b1,b2,b3,b4,b5,b6,b7,alpha), + data=data, + fixed=list(b0 + b1+b2+b3+b4+b5+b6+b7+alpha~1), + random=b0+b1+b2+b3+b4+b5+b6+b7~1|menum, + + start=c(b0=0,b1=0,b2=0,b3=0,b4=0,b5=0,b6=0,b7=0,alpha=5) + ) Can anyone tell me what this error means and how I can run the model? Thanks, Elizabeth Lawson -----------...
2013 Feb 21
1
total indirect effects in structural equation modeling using lavaan
Hi all, I am using package lavaan and have created a structural equation model with two exogenous and seven endogenous variables with the following relationships #specify the model m1 = ' # regressions D ~ ma + hs + b4 + b5 + b15 + b16 ma ~ hs + b4 + b5 + b15 + b16 hs ~ b4 + b5 + b15 + b16 b4 ~ el + la b5 ~ el + la b15 ~ el + la b16 ~ el + la #(residual) variances and covariances b4 ~~ b5 b4 ~~ b15 b...
2007 Oct 26
1
finding birth position
Hi All, I have data on the sequence of births for families with completed fertility cycle (in a data frame); the relevant variables are called b1, b2, b3, b4, b5, b6 and record the birth of the first, second, ..., sixth child. So, b1=1 if the first birth is male, b1=2 if the first birth is female, and b1=NA if the family did not record any first birth. Similarly for b2, b3, b4, b5 and b6. I want to record the positions of the male children within thei...
2012 Feb 08
4
"unsparse" a vector
Suppose I have a vector of strings: c("A1B2","A3C4","B5","C6A7B8") [1] "A1B2" "A3C4" "B5" "C6A7B8" where each string is a sequence of <column><value> pairs (fixed width, in this example both value and name are 1 character, in reality the column name is 6 chars and value is 2 digi...
2017 Aug 25
2
retrieve machine password in current Samba?
...E6\83\AB\EE\82\AA\E3\A9\BB\E3\8A\8D\E2\86\9B\E2\8C\92\E6\8C\A6\EA\85\A5\E6\8F\82\EF\96\94\EF\9C\82\E7\8D\B3\E7\8F\93\E7\B8\AA\E7\A7\B7\EE\88\96\E2\A3\9B\EB\AA\B0\E6\B6\A7\EF\B6\B7\EA\A2\AD\EF\A8\88\EA\BB\B6\EE\A4\9A\E3\99\A6\EE\93\96\E2\BD\84\EB\95\93\E3\87\A2\E2\9D\98\EE\BE\8A\E6\8F\A2\EF\AE\91\EB\B5\AA\E7\A5\AF\E7\A4\A6\CD\A5\EF\80\9A\E3\AC\A9\E6\95\9E\E3\A9\BE\EE\94\82\EA\BF\94\E2\B7\8E\E2\94\96\EF\9B\BB\EA\A4\BB\E2\8B\9A\E6\B7\9C\E6\97\B7\E3\8C\BF\E3\98\9A\EA\88\89\E3\94\91\E7\88\83\E7\95\A3\EE\B6\93\EB\A2\9F\E3\94\85\EF\97\8E\E3\BE\8B\EB\BF\8A\E7\BB\8D\E7\A5\95\EB\89\83\E3\8F\A7\EA\8B\9C\EA...
2015 Sep 02
3
sieve filtering utf 8 strings
...work. Normally user receives messages from robot with subject encoded as quoted-printable Subject: =?UTF-8?Q?LDS_(robot):_=D0=9B=D0=B8=D1=81=D1=82?= =?UTF-8?Q?_=D0=B1=D1=80=D0=BE=D0=BD=D0=B8=D1=80=D0=BE=D0=B2=D0=B0=D0=BD?= =?UTF-8?Q?=D0=B8=D1=8F__=D0=BE=D1=82=D0=BF=D1=80=D0=B0=D0=B2=D0=BB=D0=B5?= When I send a test message via Thunderbird with required words - sieve works fine and subject is encoded in base64 Subject: =?UTF-8?B?0JvQuNGB0YIg0LHRgNC+0L3QuNGA0L7QstCw0L3QuNGPINC+0YLQv9GA?= =?UTF-8?B?0LDQstC70LXQvQ==?= It is the same text, but encodind is different - base 64 works fine...
2013 May 29
3
bootstrap
...(size, mean=0, sd=1)? x6 <- rnorm(size, mean=0, sd=1)? x7 <- rnorm(size, mean=0, sd=1)? x8 <- rnorm(size, mean=0, sd=1)? x9 <- rnorm(size, mean=0, sd=1)? x10 <- rnorm(size, mean=0, sd=1)? e<-rnorm(size, mean=0, sd=1)? t_trueps <- (1 + exp( -(b0 + b1*x1 + b2*x2 + b3*x3 + b4*x4 + b5*x5 + b6*x6 + b7*x7? + b2*x2*x2 + b4*x4*x4 + b7*x7*x7 + b1*0.5*x1*x3 + b2*0.7*x2*x4 +b3*0.5*x3*x5? + b4*0.7*x4*x6 + b5*0.5*x5*x7 + b1*0.5*x1*x6 + b2*0.7*x2*x3 + b3*0.5*x3*x4? + b4*0.5*x4*x5 + b5*0.5*x5*x6) ) )^-1? prob.exposure <- runif(size)? t <- ifelse(t_trueps > prob.exposure, 1, 0)? y...
2005 Nov 28
1
Is samba or a kernel bug causing my FC4 server to crash?
...wsize=4096, write_ret=-5 Nov 8 17:15:37 poseidon kernel: smb_add_request: request [eb962080, mid=14] timed out! Nov 8 17:21:53 poseidon kernel: Unable to handle kernel paging request at virtual address 0600000 0 Nov 8 17:21:53 poseidon kernel: printing eip: Nov 8 17:21:53 poseidon kernel: f8b4b5a4 Nov 8 17:21:53 poseidon kernel: *pde = 37e1b001 Nov 8 17:21:53 poseidon kernel: Oops: 0000 [#2] Nov 8 17:21:53 poseidon kernel: SMP Nov 8 17:21:53 poseidon kernel: Modules linked in: nfs lockd nfs_acl smbfs radeon drm parport_pc lp parport autofs4 i2c_dev i2c_core rfcomm l2cap bluetooth sunrp...
2011 Jun 01
0
Simulating SVAR Data
...ge with fewer observations. Further, the MSE tends to be at least as high with the SVAR compared to arima, so it's not any more accurate. Program: ##### Model ##### # Y(t) = a0 + a1*Y(t-1) + a2*Y(t-2) + a3*X(t-1) + a4*X(t-2) + e(t) # X(t) = b0 + b1*X(t-1) + b2*X(t-2) + b3*Y(t-1) + b4*Y(t-2) + b5*Y(t) + d(t) # e(t) & d(t) ~ N(0,s) # So Y has a contemporaneous impact on X # X only has an impact on future Ys # So this is the setup of a SVAR ##### Choosing parameters ##### # Currently, all parameters are just random numbers less than 1 so that # it's a stationary series # The standa...
2008 Mar 23
0
MultiMarkdown 2.0.b5 Released
I have released version 2.0.b5 of MultiMarkdown today. As always, it can be downloaded from: <http://files.fletcherpenney.net/MultiMarkdown.zip> Some of the changes include: * spaces at end of xslt filenames won't cause failure * use `\url{}` for "non-referenced" url's in LaTeX to allow linebreaks...
2007 Jul 09
2
parsing strings
...ore spaces between the sets of letters and digits. A set of letters always belongs to the following set of digits and I want to parse the strings into these groups. As an example, the strings and the desired parsing results could look like this: A10B10, desired parsing result: A10 and B10 A10 B5, desired parsing result: A10 and B5 AB 10 CD 12, desired parsing result: AB10 and CD12 A10CD2EF3, desired parsing result: A10, CD2, and EF3 I assume that it is possible to search a string for letters and digits and then break the string where letters are followed by digits, however I am a bit...