search for: emori

Displaying 20 results from an estimated 54 matches for "emori".

Did you mean: emory
2011 Jul 22
0
failed creating protocol instance to play queued url
I run thunderbird (both 3.x and 5.x) against dovecot 2.x and frequently see delays "loading message". I admit to having a very large mailbox and running multiple imap clients. I've turned on thunderbird debugging, and at least one pattern I see in the log during the delays (maybe a minute long) is the failed protocol message above. These are no the only delays, but are the ones
2018 Apr 07
1
Print emory for constant address
Hi all, Consider a simple ll code: %2 = load i32* %y, align 4 I intend to get the memory address of %2. if(isa<loadInst>(I)){ // variable name:y value v = I.getOperand(0); // ? I shows the entire instruction, not %2, then I.getName() would print an empty space which is %2, but I can’t get the memory when dereferencing it errs()<< *&(I.getName())<<"\n”; } error:
2009 Feb 25
2
run latent class analysis with R
What's the best approach to running latent class analysis with R? I've downloaded both randomLCA and poLCA packages, but I am interesting in running a standard LCA with individual records (not frequency table) as input data. Wen Gu John Jay College of Criminal Justice445 West 59 StreetNew York, NY 10029 wgu@gc.cuny.edu _________________________________________________________________
2010 Aug 31
2
R and Epi Info
Hello, I was wondering who to contact to see about somehow interconnecting or integrating the programs R and Epi Info. I have been involved in the development of Epi Info which is a software program developed by the Centers for Disease Control and Prevention (CDC) in Atlanta (www.cdc.gov/epiinfo<http://www.cdc.gov/epiinfo>). Epi Info allows for creating data entry systems and performs
2006 Feb 15
2
arrays of lists in R ("cell arrays" in Matlab)
Dear all I would like to have some data in the form of a 2-dimensional array (matrix) of lists, so that I can easily find the desired list object by indexing the structure by rows and columns. In matlab there exists a data type called "cell array": a matrix of "cells", which are composite objects very similar to R lists. I know that in R you can create 1-dimensional
2004 Oct 15
1
power in a specific frequency band
Dear R users I have a really simple question (hoping for a really simple answer :-): Having estimated the spectral density of a time series "x" (heart rate data) with: x.pgram <- spectrum(x,method="pgram") I would like to compute the power in a specific energy band. Assuming that frequency(x)=4 (Hz), and that I am interested in the band between f1 and f2, is the
2004 Aug 05
1
Post-hoc t-tests in 2-way repeated measure ANOVA
Hi all I am running a 2-way repeated measure anova with 1 between-subjects factor (Group=treatment, control), and 1 within-subject factor (Time of measurement: time1, time2). I extract the results of the anova with: summary(aov(effect ~ Group*Time + Error=Subj/Time, data=mydata)) Now, this must be clearly a dumb question, but how can I quickly extract in R all the post-hoc t-tests for the
2013 Nov 16
2
Issue with Mavericks Mail Client
We run a dovecot mailserver. One of the clients I use is a Mac Laptop. Recently I upgraded from Mountain Lion (10.8) to Mavericks (10.9). Under 10.8 it worked fine. On 10.9 it syncs up when I invoke the client, but after a while stops getting updates. Most of my mail clients are on Linux (thunderbird) or Android (K9) and I admit that several run against my very large INBOX simultaneously. The
2003 Dec 04
2
R performance--referred from Bioconductor listserv
Hi, all-- I wanted to start a (new) thread on R speed/benchmarking. There is a nice R benchmarking overview at http://www.sciviews.org/other/benchmark.htm, along with a free script so you can see how your machine stacks up. Looks like R is substantially faster than S-plus. My problem is this: with 512Mb and an overclocked AMD Athlon XP 1800+, running at 588 SPEC-FP 2000, it still takes me
2002 Mar 26
1
anova() for nlm or nls
Dear R community, I am currently fitting non-linear models using nlm and nls. 1) I would like to compare the different models analogous to the comparison of linear models with anova(). Is there a function in R which allows to do that? 2) I would like to constrain the parameter ranges to positive values only. Is there an option in nlm or nls which allows to constrain parameter ranges? (So far I
2007 Apr 20
2
Fastest way to repeatedly subset a data frame?
Hi - I have a data frame with a large number of observations (62,000 rows, but only 2 columns - a character ID and a result list). Sample: > my.df <- data.frame(id=c("ID1", "ID2", "ID3"), result=1:3) > my.df id result 1 ID1 1 2 ID2 2 3 ID3 3 I have a list of ID vectors. This list will have anywhere from 100 to 1000 members, and
2004 Apr 28
3
Possible bug in foreign library import of Stata datasets
Concerning this article, Christopher Zorn, "Generalized Estimating Equation Models for Correlated Data: A Review with Applications." 2001. American Journal of Political Science 45(April):470-90. The author very kindly provides data for replication on his web page: http://www.emory.edu/POLS/zorn/Data/GEE.zip. I've been comparing the Professor Zorn's results obtained with
2002 Apr 20
2
integration of a discrete function
Dear R list I am looking for a function in R that computes the integration of a discrete curve, such as a power spectrum, in a specified interval (in my case, that would be 'power in a certain frequency band'). I found only functions, such as 'integrate', that perform adaptive quadrature on analytic functions, and not on a curve specified as a set of (x,y) pairs. I have the
2015 Jul 10
1
GUI on Ubuntu
Pardon the naive question, but I'm obviously missing something. I'm running the tools in standalone mode on Ubuntu 14.04. All is working well. upsc nicely shows me all the status info from command line. What I'm missing is how to get the GUI display.
2009 Jul 11
1
Conditional expand.grid()
Hello my R buddies, I'm trying to generate a bivariate data.frame with the elements of first row greater than the second row. The more complicated method that I can think of is: n <- 10 temp <- expand.grid(1:n,1:n) temp<-temp[temp[,1]>temp[,2],] However, I guess there must be some easier way of doing this. Besides, if inequality condition is applied at the very
2008 Jul 25
1
Create an R package
Hello all! I'm new to the forum, and relatively new to R. I've tried searching a couple of times for my question and came up empty handed. This may be due to my lack of knowledge of keywords. I'm planning on putting a package together, and I'm only about half way through. I'm running Windows Vista. I've given a cursory look over the process of creating an R package,
2003 Oct 31
1
rsync and smbfs
I'm trying to configure rsync snapshots as described at http://www.mikerubel.org/computers/rsync_snapshots/. I'm essentially using the following commands: mv backup.3 backup.tmp mv backup.2 backup.3 mv backup.1 backup.2 mv backup.0 backup.1 mv backup.tmp backup.0 cp -al backup.1 backup.0 rsync -a --delete source_directory/ backup.0/ I'm trying to backup two directories in a
2002 Jun 11
1
wbinfo / NT4 PDC
I'm having a really strange problem with winbind and my NT4 PDC. The PDC was here before I started working here, so I'm not sure what all has been done to it. Here's the layout: * NT4 PDC (no BDC)- Up to date with all service packs and hotfixes. Running Cyberwall-Plus firewall. * RHL 7.2 (2.4.9-31custom) with Samba 2.2.4 (compiled from src). I was able to join the domain. The
2012 Jul 04
1
How do you impute missing data using Latent Class Model (poLCA package)
My problem is I have data with both categorial and numerical data, currently only the categorical number contains missing data, was wondering do I make a new dataframe containing only the categorical columns? How would you use Latent Class Model specifically poLCA to impute the missing data? http://www.sscnet.ucla.edu/polisci/faculty/lewis/pdf/poLCA-JSS-final.pdf The reason why I chose not to
2012 Sep 15
0
[Repost 1/3] The X11 device patch
[ Email resend 1 of 3 ] From: Dirk Eddelbuettel <edd at debian.org> To: R-core <R-core at r-project.org> CC: Philip Johnson <plfjohnson at emory.edu>, edd at debian.org Subject: The X11 device patch Date: Wed, 27 Jun 2012 11:53:13 -0500 R Core, *Great* to see this bubble up in the NEWS aggregation: 2.15.1 patched NEW FEATURES The X11() window