search for: poi

Displaying 20 results from an estimated 119 matches for "poi".

Did you mean: pci
2009 Oct 31
3
Plots with k-means
Hi, I'm doing a k-means cluster with 6 clusters and 15 variables. Any suggestions on how to plot the results? I've tried the standard xy plot, but couldn't get much of it. Thansk in advance, Iuri.
2006 Jan 16
23
Read data from Excel
A client of mine has a ton of data stored in Excel spreadsheets. I''m building a web application for her (backed by a real db of course) and want to import all that data. Is there a library available to read data from Excel? Is there an easy way to upload the spreadsheets and then read the data? Thanks, Ken Kousen -- Kenneth A. Kousen, Ph.D. President Kousen IT, Inc.
2007 Sep 27
2
rJava and RJDBC
...gt; .jclassPath() [1] "C:\\PROGRA~1\\R\\library\\rJava\\java" [2] "." [3] "C:\\libraries\\mysql-connector-java-5.1.3-rc\\mysql-connector-java-5.1.3-rc-bin.jar" [4] "C:\\libraries\\xmlbeans-2.0.0-beta1\\lib\\xbean.jar" [5] "C:\\libraries\\POI\\poi-2.5.1-final-20040804.jar" [6] "C:\\libraries\\POI\\poi-contrib-2.5.1-final-20040804.jar" [7] "C:\\libraries\\POI\\poi-scratchpad-2.5.1-final-20040804.jar" [8] "C:\\Libraries\\PJM\\eDataFeed.jar" [9] "C:\\Libraries\\PJM\\webserviceclient.j...
2006 Apr 07
1
Satellite Navigation POI files
Is it possible to output via ROR from a db to a POI file ready for inclusion in a satellite navigation program like Tomtom?
2003 Jul 09
2
.Internal(optim)
> hi all, > I am using optim. I am getting the following error message: > > Error in optim(par = start.vals[, h], fn = post.func.pois, gr = post.grad. > pois, : > L-BFGS-B needs finite values of fn > > If I look at optim typing '> optim' it seems that the error comes from > inside .Internal(optim), so I wonder how can I see the code for .Internal( > optim)? > > thanks > Edo > &g...
2006 Mar 08
1
power and sample size for a GLM with Poisson response variable
Craig, Thanks for your follow-up note on using the asypow package. My problem was not only constructing the "constraints" vector but, for my particular situation (Poisson regression, two groups, sample sizes of (1081,3180), I get very different results using asypow package compared to my other (home grown) approaches. library(asypow) pois.mean<-c(0.0065,0.0003) info.pois <- info.poisson.kgroup(pois.mean, group.size=c(1081,3180)) constraints <- matrix...
2010 May 21
1
GPS finding and mark interesting POI within table with large GPS points collection
...sers, #---------------------------------------------------------------------------------------------------------------------------- #There is table containing 1000 (lat, lon, time) GPS positions, wchich should be recognized and labeled in every row of that #recognized position by label from defined POI vector GPS$Lat =c(9,2.2,2,3,4,5,6,7,2,9,2.1,10,3.3,0 , 6, 8, 9) GPS$Lon =c(0,1 ,1,4,4,5,6,7,2,9,1.1,10,4.2,0 , 6, 1, 9) GPS$time =c(0,1 ,2,3,4,5,6,7,8,9,10 ,11,12 ,13,14,15,16) # and definition of points of interest: POIdef$Lat =c( 2 ,3.2) POIdef$Lon =c( 1.1 ,4 ) POIdef$Lab =c(...
2004 Jan 23
1
NFS re-export 64bit / 32bit locking issue?
...-2.80) and my Samba 3.0.0 PDC server (RH linux 7.3 w/ 2.4.18 kernel, nfs-utils 0.3.3-6.73) mounts the NFS export with the following options: rw,vers=3,wsize=8192,rsize=8192,hard,intr This mounted partition is then re-exported to the windows users with the following smb.conf: [global] workgroup = POI netbios name = POI-US server string = "POI-USA file server" passdb backend = ldapsam:ldap://192.168.1.215 ldap://192.168.1.60 guest account = smbguest log level = 3 log file = /var/log/samba/%m.log time server = Yes socket options = TCP_NODELAY IPTOS_LOWDELAY SO_RCVBUF=16384 SO_SN...
2007 Jun 26
0
how to setup POI for ruby?
Hi, I need to read in some data from an excel file. After spending a while looking around, POI for ruby looks like the best solution. However, it misses support documents for newBs like me. I wonder if anyone here has done that before and wants to share a little bit of the information. Please help. Thanks, DC --~--~---------~--~----~------------~-------~--~----~ You received this message...
2006 Jul 04
1
problem getting R 2.3.1 svn r38481 to pass make check-all
...ot;,size = 1,prob = 0.8) binom(size = 1, prob = 0.8) PASSED [1] TRUE > dkwtest("binom",size = 100,prob = 0.8) binom(size = 100, prob = 0.8) PASSED [1] TRUE > dkwtest("binom",size = 100,prob = 0.999) binom(size = 100, prob = 0.999) PASSED [1] TRUE > > dkwtest("pois",lambda = 0.095) pois(lambda = 0.095) PASSED [1] TRUE > dkwtest("pois",lambda = 0.95) pois(lambda = 0.95) PASSED [1] TRUE > dkwtest("pois",lambda = 9.5) pois(lambda = 9.5) PASSED [1] TRUE > dkwtest("pois",lambda = 95) pois(lambda = 95) PASSED [1] TRUE...
2011 Apr 20
1
Error in dimnames(x) for Poisson EWMA model
I am attempting to run a Poisson EWMA model using Patrick Brandt's source code. I get the following error when I run the code: Error in dimnames(x) <- dn : length of 'dimnames' [1] not equal to array extent Dimnames(x) looks like this: [[1]] NULL [[2]] [1] "mip" "div" &quo...
2004 Jun 30
1
funny plotting
...a P.S. please excuse the clumsy code! #Section 2 Data Set particle dial<-rbind(-1, -1, 0, 0, 0, 0, 1, 1, 1) counts<-rbind(2, 3, 6, 7, 8, 9, 10, 12, 15) particle<-as.data.frame(cbind(dial,counts),row.names=NULL) names(particle)<-c("dial","counts") attach(particle) pois.particle<-glm(counts~dial,family=poisson) x<-seq(-2,2,length=20) y<-predict(pois.particle,data.frame(dial=x),type="response") #Overlaying plots x11() boxplot(counts~dial,main="Boxplot of counts for dial setting and poisson fit",ylim=c(0,25)) lines(x,y) #The seperate...
2011 Nov 12
1
Please Help
HiI want to construct a logliikelood function in RHere is the situationy=number of particles emitted in 1 hr period~pois(30)p=probability of detection of radiation particlesx=number of particles detected by a radiation detector~pois(30p)where p~beta(a,1)I have to calculate the loglikehood for a for the range a(2,50)I wish to simulate 100 random samples for each aHere is my code:-m=481n=100x = c(15, 36, 29, 28, 37, 3...
2015 Mar 20
2
[LLVMdev] LLVM Exception Handling
...ique_ptr<llvm::Module> Mod = llvm::parseIRFile("test.ll", Err, Context); std::string triple = llvm::sys::getProcessTriple(); Mod->setTargetTriple(triple); llvm::Function* f = Mod->getFunction("exec"); llvm::TargetOptions Opts; Opts.NoFramePointerElim = true; // Build engine with JIT std::unique_ptr<llvm::RTDyldMemoryManager> MemMgr(new llvm::SectionMemoryManager()); std::string err; llvm::EngineBuilder factory(std::move(Mod)); factory.setErrorStr(&err); factory.setEngineKind(llvm::EngineKind::...
2011 Sep 06
2
Generalizing call to function
...understand what is going on in "func2". My plan is to generalize "func1", so that are expected same results in "func2" as in "func1". Executing "func1" returns... 0.25 with absolute error < 8.4e-05 But for "func2" I get... Error in dpois(1, 0.1, 23.3065168689948, 0.000429064542600244, 3.82988398013855, : unused argument(s) (0.000429064542600244, 3.82988398013855, 0.00261104515224461, 1.37999516465199, 0.0072464022020844, 0.673787740945863, 0.0148414691931943, 0.383193602946711, 0.0260964690514175, 0.236612585866545, 0.0422631787...
2005 Sep 12
1
poisson mean hypothesis
Dear R-users, Is there a way to get p-values for a one-sided hypothesis test about a poisson mean? Thanks, Jan Wijffels University Center for Statistics W. de Croylaan 54 3001 Heverlee Belgium tel: +32 (0)16 322784 fax: +32 (0)16 322831 <http://www.kuleuven.be/ucs> http://www.kuleuven.be/ucs Disclaimer: http://www.kuleuven.be/cwis/email_disclaimer.htm [[alternative H...
2011 Aug 02
1
xlsx error
...heets into R, but my code is failing at the first step. I setwd into my the directory with the spreadsheets, and, as a test ask for the first one: read.xlsx(file = "Argentina Final.xls", sheetIndex = 1) I promptly get an error message: Error in .jcall(row[[ir]], "Lorg/apache/poi/xssf/usermodel/XSSFCell;", : method getCell with signature (I)Lorg/apache/poi/xssf/usermodel/XSSFCell; not found Anyone have any idea how to fix this issue? Thanks, Andrew Winterman [[alternative HTML version deleted]]
2007 Jan 17
12
Excel sheet generation
Hi, Does anyone know of a package that will help with generation of spreadsheets? (xls files, not csv) Thanks, Fredrik --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe
2012 Dec 17
2
looping through spatial points and getting counts of spatial points in spatial grid in R
Hi, I am stuck in a looping problem. It might be an easy problem for experienced R users but I have been unable to do it. Any kind of help or advice will be great appreciated. I am creating a spatial grid and have a list of spatial points in a folder. I can read the spatial points separately and get a count of the points in the spatial grid in R. The output should be a table showing the counts of points in the spatial grid. However, since there are many of these spatial points, I want this process to be automated. Can someone hel...
2012 Mar 22
3
Memory Utilization on R
Hello, I have a 32 GB RAM Mac Pro with a 2*2.4 GHz quad core processor and 2TB storage. Despite this having so much memory, I am not able to get R to utilize much more than 3 GBs. Some of my scripts take hours to run but I would think they would be much faster if more memory is utilized. How do I optimize the memory usage on R by my Mac Pro? Thank you! Kurinji [[alternative HTML version