search for: utz

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

Did you mean: utc
2011 Jan 25
5
Counting number of rows with two criteria in dataframe
...in X) with unique combinations of the first two columns (x and y)? (for instance, in the above example, there are 2 instances per unique combination of the first two columns). I can do this in Matlab and it's easy, but since I'm new to R this is royally stumping me. Thanks, Ryan -- Ryan Utz Postdoctoral research scholar University of California, Santa Barbara (724) 272 7769 [[alternative HTML version deleted]]
2010 May 14
2
Deleting rows with NA from isolated column in matrix
...xample matrix: x<-matrix(nrow=5,ncol=3) x[,]<-1 x[5,1]<-NA x[3,3]<-NA how do I tell R to delete any rows with an NA value in column 3, but NA in column 1 is just fine? I've played with na.omit but that just takes out all of the NA values... Thanks ahead of time for any help, Ryan Utz [[alternative HTML version deleted]]
2011 Dec 12
4
Boxplot of multiple vectors with different lengths
...write this to handle any number of data vectors. I've tried every imaginable means of tweaking the name of "z", with zero success. And I've scoured the help pages for about 45 minutes (just to preempt any "read the help" responses). Please help! Thanks, Ryan -- Ryan Utz, Ph.D. Aquatic Ecologist/STREON Scientist National Ecological Observatory Network Home/Cell: (724) 272-7769 Work: (720) 836-2488 [[alternative HTML version deleted]]
2011 Jul 25
3
Finding/identifying a value within a factor
...n it imports the data-I don't mind converting if necessary). Eventually, I'd like to divide the number in half for these cases, but I think I have that coding lined up once I can just identify them from the stew. I've exhausted help and net resources so far... Thanks, Ryan -- Ryan Utz, Ph.D. Aquatic Ecologist/STREON Scientist National Ecological Observatory Network Home/Cell: (724) 272-7769 Work: (720) 746-4844 ext. 2488 [[alternative HTML version deleted]]
2011 Jun 22
2
Linking 2 columns in 2 databases and applying a function
...nd seeking for solutions on the net, with no luck (I'm relatively new to R and the help pages are still a bit opaque to me). It seems like the functions "apply" or "lapply" are key, but I can't make sense of their syntax. Any advice/help?!? Many thanks, Ryan -- Ryan Utz, Ph.D. Aquatic Ecologist/STREON Scientist National Ecological Observatory Network Home/Cell: (724) 272-7769 Work: (720) 746-4844 ext. 2488 [[alternative HTML version deleted]]
2011 May 03
2
Controlling the extent of ablines on plot
...1,2,3,4,5) y<-c(0,2,4,6,8,10) plot(x,y, axes=FALSE) axis(1,at=c(0,1,2,2.5,3,4,5),pos=0) axis(2,at=c(0,2,4,6,8,10),pos=0) abline(h=c(1,2,3,4,5)) ### Is there any way for me to specify that these ablines should not go beyond the y-axis extent? I just want a pretty graph! Thanks! Ryan -- Ryan Utz, Ph.D. Aquatic Ecologist/STREON Scientist National Ecological Observatory Network Home/Cell: (724) 272-7769 Work: (720) 746-4844 ext. 2488 [[alternative HTML version deleted]]
2011 Dec 12
1
Please delete my e-mail judit.barroso@montana.edu
...gt;> this reading in the individual vector files. Maybe this is an > >> inelegant, > brute > >> force approach, but it has worked for me with essentially the same > problem. > >> > >> Tom > >> > >> On Mon, Dec 12, 2011 at 4:24 PM, Ryan Utz <utz.ryan at gmail.com> wrote: > >> > >>> Hello, > >>> > >>> I'm attempting to write a code that automatically imports data > >>> from different files (with different lengths-just one variable) > >>> and makes > tid...
2006 Jan 18
1
phyper returns 1 if x==k (PR#8499)
Full_Name: Utz J. Pape Version: 2.2.0 OS: linux Submission from: (NULL) (141.14.23.12) If I use phyper and set parameter x equal to k (meaning that all balls I draw are white) phyper returns 1 which is not (always) correct: pape at xxx:~> R2.2.0 --vanilla R : Copyright 2005, The R Foundation for Statistica...
2010 Mar 10
1
Importing Access 2007 data with ROBC
...Access(testdb) Data <- sqlFetch(channel,"Table1") When I replace it with an Access 2007 file: testdb <- file.path("c:/Salmon_data.accdb") channel <- odbcConnectAccess(testdb) Data <- sqlFetch(channel,"Table1") it does not work. Thanks for any help! Ryan Utz
2014 Sep 19
0
[PATCH v5 2/3] virtio_pci: Use the DMA API for virtqueues when possible
...t time I looked :-) You should just unconditionally call the DMA API and we should fixup the special cases by overriding the hooks. I can help you do the override hack for PPC for now, until we can do something saner accross all architectures. The main problem is s390 but I had a quick chat with Utz Bacher earlier this week and he seemed to think having s390 use the DMA API shouldn't be a big deal, they can also hookup some transparent set of ops if necessary. Cheers, Ben.
2010 Mar 18
1
Imported tables from Access 2007
Hi all, I am very new to R and I'm trying to import data from Microsoft Access. So far, I've managed to do so successfully using the following code: testdb <- file.path("c:\Databse.accdb") channel2 <- odbcConnectAccess2007(testdb) data.table <- sqlFetch(channel2,"data") This successfully imports a table(?) called "data.table". But when I try to
2006 May 17
0
Last Chance: SYDNEY, AUSTRALIA JUNE 5-8, Data Mining Training/Workshop
...quot;Statistical Case Estimation Modelling - An Overview of the NSW WorkCover Model" Charles Pollack, Suncorp Metway Actuarial Services "Experiences Applying Insurance Tasks to the New CART 6 Software: Customer Retention and Data Analytics" LOGISTICS and OPERATIONS RESEARCH Bradley Utz, Schneider National, Inc. "Using Classification Trees to Explain Failure to Deliver On-Time" MARKET RESEARCH and CRM David McCloskey, Pathfinder Solutions "Achieving Better Insights Into Customer Behaviour Through Integrating Market Research with Decision Tree Behaviour Modelling&qu...
2014 Sep 17
4
[PATCH v5 2/3] virtio_pci: Use the DMA API for virtqueues when possible
On Sep 17, 2014 7:13 AM, "Michael S. Tsirkin" <mst at redhat.com> wrote: > > On Wed, Sep 17, 2014 at 08:02:31AM -0400, Benjamin Herrenschmidt wrote: > > On Tue, 2014-09-16 at 22:22 -0700, Andy Lutomirski wrote: > > > On non-PPC systems, virtio_pci should use the DMA API. This fixes > > > virtio_pci on Xen. On PPC, using the DMA API would break
2014 Sep 17
4
[PATCH v5 2/3] virtio_pci: Use the DMA API for virtqueues when possible
On Sep 17, 2014 7:13 AM, "Michael S. Tsirkin" <mst at redhat.com> wrote: > > On Wed, Sep 17, 2014 at 08:02:31AM -0400, Benjamin Herrenschmidt wrote: > > On Tue, 2014-09-16 at 22:22 -0700, Andy Lutomirski wrote: > > > On non-PPC systems, virtio_pci should use the DMA API. This fixes > > > virtio_pci on Xen. On PPC, using the DMA API would break
2014 Sep 20
2
[PATCH v5 2/3] virtio_pci: Use the DMA API for virtqueues when possible
...omething saner accross all architectures. Sure. The question is: should the patches go in to 3.18 as is our should they wait? It would be straightforward to remove the use_dma_api switch PPC, s390, and virtio_mmio are ready. --Andy > > The main problem is s390 but I had a quick chat with Utz Bacher earlier > this week and he seemed to think having s390 use the DMA API shouldn't > be a big deal, they can also hookup some transparent set of ops if > necessary. > > Cheers, > Ben. > >
2014 Sep 20
2
[PATCH v5 2/3] virtio_pci: Use the DMA API for virtqueues when possible
...omething saner accross all architectures. Sure. The question is: should the patches go in to 3.18 as is our should they wait? It would be straightforward to remove the use_dma_api switch PPC, s390, and virtio_mmio are ready. --Andy > > The main problem is s390 but I had a quick chat with Utz Bacher earlier > this week and he seemed to think having s390 use the DMA API shouldn't > be a big deal, they can also hookup some transparent set of ops if > necessary. > > Cheers, > Ben. > >
2001 Aug 31
0
Diablo II Patch
I',ve got Diablo II installed in Wine, and the LOD expansion. I'm trying get the new 1.09 patch installed. When it runs, it complains that it can't find Bnclient.dll. This file is in that directory. Does anyone know why it wouldn't be able to find the file? I've tried it as root, so it isn't a permissions issue, and I've tried it with various capitalizations. Has