search for: fmp

Displaying 20 results from an estimated 28 matches for "fmp".

Did you mean: cmp
2003 Aug 25
1
Samba 3 problems with file read/writes
...loaded. I've tried mucking with various lock and caching parameters in smb.conf with no luck. This all worked fine with Samba 2. Can anyone give me any help? I'll be glad to try anything and report the results. -- Lindsay Haisley | "Everything works | PGP public key FMP Computer Services | if you let it" | available at 512-259-1190 | (The Roadie) | <http://www.fmp.com/pubkeys> http://www.fmp.com | |
2003 Jul 27
1
multiple imputation with fit.mult.impute in Hmisc
...39;re trying to test regression models using multiple imputation. We did the following (roughly): f <- aregImpute(~ [list of 32 variables, separated by + signs], n.impute=20, defaultLinear=T, data=t1) # I read that 20 is better than the default of 5. # defaultLinear makes sense for our data. fmp <- fit.mult.impute(Y ~ X1 + X2 ... [for the model of interest], xtrans=f, fitter=lm, data=t1) and all goes well (usually) except that we get the following message at the end of the last step: Warning message: Not using a Design fitting function; summary(fit) will use standard errors, t, P f...
2002 Mar 21
2
Small typo in An Introduction to R (PR#1402)
At a snail's pace I keep on translating an introduction to R into italian; I have reached the section describing the glm() function, in which some example code is presented. The very last line of code, before the beginning of the section on Poisson models is: ldp <- ld50(coef(fmp)); ldl <- ld50(coef(fmp)); c(ldp, ldl) which of course gives results 43.663 and 43.663; the correct code should be: ldp <- ld50(coef(fmp)); ldl <- ld50(coef(fml)); c(ldp, ldl) which gives the expected results 43.663 and 43.601 -- Michele Alzetta -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-...
2002 Mar 21
2
Small typo in An Introduction to R (PR#1402)
At a snail's pace I keep on translating an introduction to R into italian; I have reached the section describing the glm() function, in which some example code is presented. The very last line of code, before the beginning of the section on Poisson models is: ldp <- ld50(coef(fmp)); ldl <- ld50(coef(fmp)); c(ldp, ldl) which of course gives results 43.663 and 43.663; the correct code should be: ldp <- ld50(coef(fmp)); ldl <- ld50(coef(fml)); c(ldp, ldl) which gives the expected results 43.663 and 43.601 -- Michele Alzetta -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-...
2003 Aug 27
1
Can someone PLEASE explain this!!
...save process which used to work properly is now hanging and returning an error box with "Stream I/O error" and a later notation that "some other process" had modified the file. The Linux kernel is at 2.4.20 (hasn't changed in several months). Please reply to fmouse-x98nof@fmp.com if you have any insight into this. I don't have time to research the tech detials of file locking and such, but any pointers, suggestions or references anyone might be able to send will be deeply appreciated. -- Lindsay Haisley | "Everything works | PGP public key FMP C...
2005 May 31
1
GLM question
...,0) > y6<-c(1,0,1,0,0) > C<-matrix(nrow = 6, ncol = 5, byrow= TRUE) > C[1,]<-y1 > C[2,]<-y2 > C[3,]<-y3 > C[4,]<-y4 > C[5,]<-y5 > C[6,]<-x6 > m<-c(1,2,3,4,5,6) > Cdata<-data.frame(C[,1],C[,2],C[,3],C[,4],C[,5]) >fmp<-glm(m~C,family = quasipoisson(link = log),data=Cdata) > fitted.values(fmp) 1 2 3 4 5 6 1.25 1.75 3.00 3.75 5.25 6.00 So my question are : - Why are the fitted wrong (except for 3 and 6)? - Is the quasipoisson the right family for my model? I am...
2003 Nov 21
0
Problems installing Quickbooks Pro 99 under Wine
...ux level and I can see that there's a process identified as "Warning", possibly a dialog, but I can't get to it or switch to any other programs on the display. What do I need to do to get past this point? -- Lindsay Haisley | "Everything works | PGP public key FMP Computer Services | if you let it" | available at 512-259-1190 | (The Roadie) | <http://www.fmp.com/pubkeys> http://www.fmp.com | |
2002 Mar 07
1
R 1.5.0 scheduled for April 29th, feature freeze April 8
The core team has decided to release R 1.5.0 on April 29th. Somewhat earlier than maybe expected, but we realized that we needed a phase-shift away from our usual cycle with main releases in June and December since it was placing feature freezes just when several members were in a creative phase due to end of teaching. The roadmap is as follows April 8 feature freeze on r-base April 15 code
2006 Nov 22
1
Probit analysis
Respected Sir/Madam, I have a question regarding calculation of LD50 (Lethal Dose) and IC50 (50% inhibitory concentration) of an antimicrobial experiment. I have used a compound isolated from a plant and observed its effect on the fungus *Fusarium oxysporum* by the food poisoning method. Solutions of the compound at concentrations of 0, 50, 100, 150, 200 and 250µg/ ml were added to
2006 Mar 24
4
Parsing Filemaker 6 XML into something I can use
...h needs to be accessed for some data. Using the Web Companion, I can query the database for an XML version of the data. I need to be able to push this data into an array of hashes, so I can access it in a more convenient way. Filemaker is able to provide me with 2 XML formats (DSO-XML and FMP-XML): *********** DSO-XML *********** <?xml version="1.0" encoding="UTF-8"?><FMPDSORESULT xmlns="http:// www.filemaker.com/fmpdsoresu lt"><ERRORCODE>0</ERRORCODE><DATABASE>Customers.fp5</ DATABASE><LAYOUT>XMLDump</LAYOUT&...
2008 Jun 23
2
[LLVMdev] Problems expanding fcmp to a libcall
...is right. For example define double @div(double %a, double %b) { %result = fdiv double %a, %b ret double %result } is expanded to a ISD::CALL of __divdf3 which is then lowered via the LowerOperation hook of my backend. However I run into problems with fcmp. With the following code: define i1 @fmp(double %a) { %result = fcmp uno double %a, 0.000000e+00 ret i1 %result } the fcmp is expanded to the a call to __unorddf2 which is then lowered via the LowerOperation hook of my backend. However for some reason there remains a ISD::CALL node with __unorddf2 in the DAG after legalization. This th...
2011 Jun 09
0
Samba on RHEL 6: Permission denied when mounting FUSE partition
...DEBUG FuseMethodsInvoker:370 - Entering getattr_pre with path '/*' 2011-06-02 16:38:12,013 DEBUG FuseMethodsInvoker:354 - User is '*' 2011-06-02 16:38:12,013 DEBUG FuseMethodsInvoker:393 - GetPath User is '*' 2011-06-02 16:38:12,013 DEBUG FuseMethodsInvoker:424 - Getting fmp for user '*' 2011-06-02 16:38:12,013 DEBUG FuseMethodsInvoker:425 - size of user map:'3' 2011-06-02 16:38:12,014 ERROR FuseMethodsInvoker:430 - FuseMountpoint is null, we really should be in failsafe mode at this point 2011-06-02 16:38:12,014 DEBUG FuseMethodsInvoker:370 - Enteri...
2008 Jun 24
0
[LLVMdev] Problems expanding fcmp to a libcall
...ble %a, double %b) { > %result = fdiv double %a, %b > ret double %result > } > > is expanded to a ISD::CALL of __divdf3 which is then lowered via the > LowerOperation hook of my backend. > > However I run into problems with fcmp. With the following code: > > define i1 @fmp(double %a) { > %result = fcmp uno double %a, 0.000000e+00 > ret i1 %result > } > > the fcmp is expanded to the a call to __unorddf2 which is then > lowered via the LowerOperation hook of my backend. However for some > reason > there remains a ISD::CALL node with __unorddf2...
2012 Dec 12
2
[PATCH v7 1/2] xen: unify domain locking in domctl code
These two patches were originally part of the XSM series that I have posted, and remain prerequisites for that series. However, they are independent of the XSM changes and are a useful simplification regardless of the use of XSM. The Acked-bys on these patches were provided before rebasing them over the copyback changes in 26268:1b72138bddda, which had minor conflicts that I resolved. [PATCH
2009 Dec 17
2
'Setup cannot find necessary files' message
Running Wine 1.0.1 in Ubuntu 9.10, trying to install FileMaker Pro 9 from CD. (Install from this CD works fine on Windows machine.) 'Setup cannot find necessary files' message appears when launching setup.exe with Wine. WINEDEBUG=+loaddll on setup.exe gives the output below; looks like all needed .dlls are there. Same problem reported on Ubuntu forums earlier in 2009 by another user:
2008 Jun 25
3
[LLVMdev] Problems expanding fcmp to a libcall
...fdiv double %a, %b >> ret double %result >> } >> >> is expanded to a ISD::CALL of __divdf3 which is then lowered via the >> LowerOperation hook of my backend. >> >> However I run into problems with fcmp. With the following code: >> >> define i1 @fmp(double %a) { >> %result = fcmp uno double %a, 0.000000e+00 >> ret i1 %result >> } >> >> the fcmp is expanded to the a call to __unorddf2 which is then >> lowered via the LowerOperation hook of my backend. However for some >> reason >> there remains...
2008 Jun 26
0
[LLVMdev] Problems expanding fcmp to a libcall
...double %result >>> } >>> >>> is expanded to a ISD::CALL of __divdf3 which is then lowered via the >>> LowerOperation hook of my backend. >>> >>> However I run into problems with fcmp. With the following code: >>> >>> define i1 @fmp(double %a) { >>> %result = fcmp uno double %a, 0.000000e+00 >>> ret i1 %result >>> } >>> >>> the fcmp is expanded to the a call to __unorddf2 which is then >>> lowered via the LowerOperation hook of my backend. However for some >>> reas...
2008 Jul 01
2
[LLVMdev] Problems expanding fcmp to a libcall
...} >>>> >>>> is expanded to a ISD::CALL of __divdf3 which is then lowered via the >>>> LowerOperation hook of my backend. >>>> >>>> However I run into problems with fcmp. With the following code: >>>> >>>> define i1 @fmp(double %a) { >>>> %result = fcmp uno double %a, 0.000000e+00 >>>> ret i1 %result >>>> } >>>> >>>> the fcmp is expanded to the a call to __unorddf2 which is then >>>> lowered via the LowerOperation hook of my backend. However fo...
2009 Apr 01
1
[LLVMdev] Visual Studio 2005/2008 ClangDiagnosticsEmitter Patch
I'm in the process of trying to build LLVM and clang in Visual Studio 2008. Building trunk of LLVM and clang fails because of an VC STL issue: http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?Fee dbackID=328343 Here's a patch that allows tablegen to compile: Index: TableGen/ClangDiagnosticsEmitter.cpp
2013 Apr 23
0
adding the second regressor
...your precious help. Best Regards, Tarkan source ("c:/fm.R") hansen_tdum <- as.matrix(read.table("c:/hansen_tdum.dat")) DB1 <- as.matrix(hansen_tdum[,1]) RV1 <- as.matrix(hansen_tdum[,10]) EX1 <- as.matrix(hansen_tdum[,19]) y <- EX1 x <- ??????????????? for (fmp in 1:1){ cat ("Tax and Spend, Linear ","\n") cat ("\n") whiten <- 1 kernel <- 3 band <- 4 out <- fm(y,x,1,1) cat ("\n") cat ("\n") if (fplot == 1){ mtit <- "Ependiture, 1986:2011" xtit <- "Figure 1" ytit <- &...