similar to: Best way to handle profiles from deleted accounts?

Displaying 20 results from an estimated 30000 matches similar to: "Best way to handle profiles from deleted accounts?"

2015 Mar 12
1
Best way to handle dependency on non-CRAN package / large data package?
Hi Dirk, I'm interested in pursing this but I haven't been able to figure how to to make it work. Here's what I have so far: install.packages("drat") library(drat) addRepo("arilamstein") I (obviously) have a copy of the choroplethrZip github repo locally. I typed: git checkout gh-pages git push I gather that this is what I needed to to do make the repo
2002 Jan 08
6
Subsets without NA
Is there a way of removing all rows with missing values from a data frame? I usually use subset(x, var1!="NA") and repeat for each variable. It would be nice to be able to do it in one fell swoop. Also, surprisingly, it doesn't always work. Sometimes I'm left with an empty set even though not all rows have missing values for the variable. Cheers, mikkel Mikkel Grum,
2009 Sep 27
2
dimension-preserving matrix coersion
i've written a function to coerce a matrix (e.g. from numeric to logical), but i'd like to know if someone has a more elegant method for this: > m <- matrix(c(0, 1, 1, 0), ncol = 2) > m <- as.logical(m) > m [1] FALSE TRUE TRUE FALSE i'd like 'm' to still be a matrix with the original dimensions. in my function to do this, i coerce 'm' to a logical,
2017 Jun 06
2
Subject: glm and stepAIC selects too many effects
If AIC is giving you a model that is too large, then use BIC (log(n) as the penalty for adding a term in the model). This will yield a more parsimonious model. Now, if you ask me which is the better option, I have to refer you to the huge literature on model selection. Best, Ravi [[alternative HTML version deleted]]
2010 Mar 10
2
function to create multiple matrices
Hi All, If given a dataframe (long form) with Year, Species, and Location, How would I write a function that would create a unique matrix of Species & Location for each Year? What I've tried doing is the following: data #dataframe dataT<-table(data$Species,data$Location,data$Year) #creates tables of Species vs Location for each Year But I'm encountering issues individually
2021 Sep 21
2
Repo for RHEL docs in CentOS Stream
On Fri, 2021-09-17 at 14:19 +0200, Tomas Capek wrote: > Hey folks, > > ??? I'm following up after a meeting with Rich, Karsten, and others, > where we discussed next steps towards setting up a mirror of > > https://gitlab.cee.redhat.com/red-hat-enterprise-linux-documentation/rhel-8-docs > > at > > https://gitlab.com/redhat/centos-stream/docs > >
2007 Nov 07
3
R as a programming language
Greetings -- coming from Python/Ruby perspective, I'm wondering about certain features of R as a programming language. Say I have a huge table t of the form run ord unit words new 1 1 6939 1013 641 1 2 275 1001 518 1 3 3314 1008 488 1 4 14154 1018 463 1 5 2982 1006 421 Alternatively, it
2011 Dec 19
2
[LLVMdev] Disassembly arbitrary machine-code byte arrays
Hi, My apologies if this appears to be a very trivial question -- I have tried to solve this on my own and I am stuck. Any assistance that could be provided would be immensely appreciated. What is the absolute bare minimum that I need to do to disassemble an array of, say, ARM machine code bytes? Or an array of Thumb machine code bytes? For example, I might have an array of unsigned chars -- how
2019 Mar 14
7
prompt to update a host key
As far as I can tell, there currently isn't a straightforward way to use password authentication for connecting to hosts where the host key changes frequently. I realize this is a fairly niche use case, but when developing software for devices that often get reimaged (resulting in a host key change), it can get pretty tedious to attempt to connect, get a warning, remove the old host key via
1999 Apr 06
1
One more for the wish list
Having just upgraded to 063.3 reminds me of a wish I have had for a long time. Could we not have libraries (sorry, packages) other than for the base distribution in a subdirectory [Rpath]/library/local/ or perhaps /library/packages. This tiny change would make administration so much simpler; I could move all the old packages into the new library in one fell swoop. Granted it's not hopelessly
2017 Jun 06
0
Subject: glm and stepAIC selects too many effects
More principled would be to use a lasso-type approach, which combines selection and estimation in one fell swoop! Ravi ________________________________ From: Ravi Varadhan Sent: Tuesday, June 6, 2017 10:16 AM To: r-help at r-project.org Subject: Subject: [R] glm and stepAIC selects too many effects If AIC is giving you a model that is too large, then use BIC (log(n) as the penalty for adding
2004 Oct 11
1
[LLVMdev] Re: [llvm-commits] CVS: */Makefile.am
On Mon, 11 Oct 2004, John Criswell wrote: > I believe the two best things that we can do to shorten releases is the > following: > > 1. Re-arrange the LLVM and LLVM-GCC builds to build in one fell swoop. > I checkout out, I type make, and it all builds. This requires moving > parts of llvm/runtime into llvm-gcc, or making llvm-gcc an LLVM project, > or some other approach.
2006 Jun 03
3
Asterisk + PRI Card -> Nortel BCM
Has anyone fed a Nortel BCM from Asterisk? I'm interested in switching our company over, but don't want to replace all the handsets in one fell swoop. I imagine some of the PRI cards can "emulate" a switch? I'd still like to pass CallerID into the Nortel, etc but all the external traffic would be VOIP, not TDM.
2003 Nov 11
1
+= assignment operator
The thread "Finding the name ob an object" gave me an idea about how to write an assignment operator like C's "+=": "%+=%" <- function(a, b) { as <- deparse(substitute(a)) bs <- deparse(substitute(b)) st <- paste(as, "<-", as, "+", bs) eval.parent(parse(text=st), 2) } R> xx <- matrix(1:9, 3,3) R> xx[2,
2006 Jan 27
5
Volume of patches for CentOS vs Fedora
I'm trying to come to a decision between CentOS 4.2 and Fedora Core 4 for use on a server. One of the things the server will be serving is X desktops so there are some advantages to Fedora. However, one thing I can't help but notice is that the patch volume for FC4 from Oct 11 2005 thru the present compared to CentOS 4.2 for the same period is about 5 times greater. In fact, since
2004 Oct 11
3
[LLVMdev] Re: [llvm-commits] CVS: */Makefile.am
On Sun, 2004-10-10, Misha Brukman asked "Why can't we use wildcards instead of listing all the sources" and then wrote in response to my reply: > On Sun, Oct 10, 2004 at 04:40:48PM -0700, Reid Spencer wrote: > > http://www.gnu.org/software/automake/manual/html_mono/automake.html#wildcards > > > > is your answer. > > I think their "answer" is
2004 Oct 11
0
[LLVMdev] Re: [llvm-commits] CVS: */Makefile.am
Reid Spencer wrote: > On Sun, 2004-10-10, Misha Brukman asked "Why can't we use wildcards > instead of listing all the sources" and then wrote in response to my > reply: > >>On Sun, Oct 10, 2004 at 04:40:48PM -0700, Reid Spencer wrote: >> >>>http://www.gnu.org/software/automake/manual/html_mono/automake.html#wildcards >>> >>>is your
2005 Jan 06
1
Calculating a table of symbol frequencies
Hello all: I have a protein sequence alignment in a data frame (align1, 72 x 236), where each row is a protein and each column a site in the alignment. AA is vector of amino acid symbols plus "-" (gap). I can calculate amino acid frequencies at each site by: >align1.F <- matrix(0,nrow=22,ncol=236,dimnames=list(AA,seq(1:236))) >for(i in 1:236) >
2008 Oct 07
6
Hpricot loop question to read table row values
Hi. I''ve got a file that contains a table that looks like this: <table> <tr><td>column title a</td><td>column title b</td></tr> <tr><td>row 1 a</td><td>row 1 b</td></tr> <tr><td>row 2 a</td><td>row 2 b</td></tr> <tr><td>row 3 a</td><td>row 3
2012 Mar 15
1
[LLVMdev] Dragonegg stack variables reorderings
I have noticed that dragonegg sometimes allocates stack objects in a different order than they were declared in the source file. I experienced this behavior when compiling RIPE (https://github.com/johnwilander/RIPE) in the function perform_attack. Unfortunately, I haven't been able to reproduce this in a minimal example. (Note that when compiling RIPE with GCC, the order of stack