Displaying 20 results from an estimated 11000 matches similar to: "anti-R vitriol"
2011 Dec 18
1
Saving nothing with save()
Scenario: Here I am working away in R. I've got results that prove
global warming is anthropogenic and also the solution for producing
limitless carbon-neutral energy from nuclear fusion. Its been a good
day.
So, I want to save my work. I don't want to overwrite my current
.RData, so I save it to another file:
save(file="prize.RData") # just need to email this to the Nobel
2015 Oct 01
3
Verifying backups
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Yes, when it comes to local copies cp is significantly faster than
rsync. Without --link-dest there isn't much advantage to using rsync
for backups. The only thing you get beyond cp -au is --delete.
Also, when it comes to static data like media files I like to keep an
md5 file around with checksums for all the files. That way I can
easily
2015 Oct 14
3
RFC: Introducing an LLVM Community Code of Conduct
----- Original Message -----
> From: "James Y Knight via llvm-dev" <llvm-dev at lists.llvm.org>
> To: "Chandler Carruth" <chandlerc at llvm.org>
> Cc: "llvm-dev" <llvm-dev at lists.llvm.org>
> Sent: Tuesday, October 13, 2015 6:08:08 PM
> Subject: Re: [llvm-dev] RFC: Introducing an LLVM Community Code of Conduct
>
...
>
>
2016 Mar 07
1
Verifying backups
Just chiming in slightly off topic.
As a first step if you are going to be backing up files to some media with a computer it would be a really good idea to ensure, that the hardware being used is not faulty. I am not saying that your hardware is faulty. However, it would be worth checking this somehow. Check the drive media for bad blocks, check that all the cables are working well. Ensure the
2016 Feb 29
3
Source code of early S versions
On Mon, Feb 29, 2016 at 6:17 PM, John Chambers <jmc at r-project.org> wrote:
> The Wikipedia statement may be a bit misleading.
>
> S was never open source. Source versions would only have been available with a nondisclosure agreement, and relatively few copies would have been distributed in source. There was a small but valuable "beta test" network, mainly university
1998 Feb 27
1
R-beta: is there a way to get rid of loop?
Here is a programming question. The code I am using is quite slow and I
was wondering if there is a way to get rid of the for loop.
I am dealing with "interaction" in 2x2 table, and am using Edwards's G_I
(Likelihood, p. 194).
I label the cells in the table as follows
stim response
"y" "n" total
--------------------------------
y hit miss nsignal
2006 Aug 19
3
memcache-client working for anyone?
I''m at the bloody forehead stage, so I figure it''s time to ask. After
installing the robot coop''s memcache-client which everyone apparently
recommends, it refuses to work because the rails cache.rb is invoking
the read() method on the cache, which it _does not have_. Their library
has get() and put() but no read() and write() as rails expects. What
gives? Is
2019 Feb 02
5
Runnable R packages
I don't think anyone denies that you *could* make an EXE to do all
that. The discussion is on *how easy* it should be to create a single
file that contains an initial "main" function plus a set of bundled
code (potentially as a package) and which when run will install its
package code (which is contained in itself, its not in a repo),
install dependencies, and run the main()
2018 Jul 26
2
Possible bug: R --slave --interactive stdin echo on Linux when stdin is a fifo
On Thu, Jul 26, 2018 at 12:22 AM, G?bor Cs?rdi <csardi.gabor at gmail.com> wrote:
> I am trying to control a background R session, connected via a fifo /
> named pipe.
Is the fifo significant here? If I read the same R code from a file
via `<` I get the input echoed (R 3.4.4, Ubuntu).
Barry
2002 Dec 04
2
difftime arithmetic (PR#2345)
Full_Name: Barry Rowlingson
Version: 1.6.0
OS: RH8 i386
Submission from: (NULL) (148.88.136.205)
Strange things happen if I premultiply a difftime() object with a number.
Example:
> d1 <- difftime(Sys.time(),Sys.time())
> d2 <- 1 * difftime(Sys.time(),Sys.time())
> d3 <- difftime(Sys.time(),Sys.time()) * 1
> d1
Time difference of 0 secs
- thats fine
> d2
[1] 0
2009 Jul 02
1
Dead Keyboard in all Apps
I'm running WINE ver. 1.1.24 on Ubuntu 8.04. Wine had been running fine when Oblivion crashed and locked my mouse and keyboard up (I wish I had the debug for that but I haven't been able to recreate the crash). I rebooted my machine, reloaded Oblivion and the keyboard was non responsive, the mouse was working but not the keyboard. I checked Opera (I had some prior errors with the keyboard
2005 Jan 21
2
[LLVMdev] making cygwin nightly builds available?
Hi,
I'm looking into LLVM, and I must say it looks supremely cool. However,
I'm having a hard time getting anywhere with it, since I don't have a linux
machine here, and cygwin seems like a bit of a second-class citizen.
The instructions to build the cygwin binaries are outdated, so I have
to just make some guesses as to what the right thing to do is, and
I'm apparently not
2015 Aug 20
1
Multi-line comments in R
On Wed, Aug 19, 2015 at 5:16 AM, Nathan Esau <nesau at sfu.ca> wrote:
> I was wondering why the decision was made long ago to never implement
> multi-line comments in R. I feel there are several argument to be made for
> why the R language should have multi-line comments.
>
> 1. Many programming languages (including some which are commonly used for
> statistics, such as
2019 Feb 02
1
Runnable R packages
I see some value in Duncan?s proposal to implement this as an extra package
instead of a change to base R, if only to see if the idea has legs. I?m
minded to do so myself using your suggestion, but is there a particular
reason why you recommend using the remotes package instead of devtools? The
latter seems to have the same functions I would need, and I believe it is
more widely installed that
2010 Mar 26
3
NA values in indexing
If you index a vector with a vector that has NA in it, you get NA back:
> x=101:107
> x[c(NA,4,NA)]
[1] NA 104 NA
> x[c(4,NA)]
[1] 104 NA
All well and good. ?"[" says, under NAs in indexing:
When extracting, a numerical, logical or character ?NA? index
picks an unknown element and so returns ?NA? in the corresponding
element of a logical, integer,
2016 Feb 29
1
Source code of early S versions
According to Wikipedia:
"In 1980 the first version of S was distributed outside Bell
Laboratories and in 1981 source versions were made available."
but I've been unable to locate any version of S online. Does anyone
have a copy, somewhere, rusting away on an old hard disk or slowly
flaking off a tape? I've had a rummage round the CMU Statlib on
archive.org but no sign of it,
2018 Jul 26
2
Possible bug: R --slave --interactive stdin echo on Linux when stdin is a fifo
On Thu, 26 Jul 2018, G?bor Cs?rdi wrote:
> On Thu, Jul 26, 2018 at 12:25 PM Barry Rowlingson
> <b.rowlingson at lancaster.ac.uk> wrote:
>>
>> On Thu, Jul 26, 2018 at 12:22 AM, G?bor Cs?rdi <csardi.gabor at gmail.com> wrote:
>>> I am trying to control a background R session, connected via a fifo /
>>> named pipe.
>>
>> Is the fifo
2013 May 16
5
[LLVMdev] _Znwm is not a builtin
On May 15, 2013, at 8:44 PM, Richard Smith <richard at metafoo.co.uk> wrote:
> On Wed, May 15, 2013 at 8:28 PM, Richard Smith <richard at metafoo.co.uk> wrote:
> On Wed, May 15, 2013 at 7:49 PM, Chandler Carruth <chandlerc at google.com> wrote:
> On Wed, May 15, 2013 at 8:31 PM, Richard Smith <richard at metafoo.co.uk> wrote:
> Hi,
>
> LLVM classifies
2012 Feb 21
6
Jazzing up the Task Views index page
A little while ago here we had a short discussion about Task Views - I
think ignited by someone saying 'how many times do I have to say "have
you read the Optimisation Task View?"?' and I poured some fuel on that
fire by saying "Task Views" was a stupid name.
Anyway, I did say that Task Views were rather brilliant, but were let
down by their hidden position on the R
2004 Aug 12
9
Giving a first good impression of R to Social Scientists
Dear all,
in the coming Winter Semester, I will be a teaching assistant for a course
in Survival Analysis. My job will be to do the lab sessions. The software
used for these lab sessions will be R. Most of the students have a
background in social sciences and the only stats package they used so far is
most likely SPSS.
So I assume they might be quite surprised the first time they see R