dwinsemius

Results 9 comments of dwinsemius

I suppose you could suggest reading the extensive `?'['` page once or twice. I probably read it 10 or 20 times over the course of 10 years of R programming....

``` > is.function(`+`) [1] TRUE > is.function(`for`) [1] TRUE ``` And let's not forget the all important: ``` > is.function(`[`) [1] TRUE > is.function(`[ `[ a [1] 1 2 3...

He later wrote the "R Book". I found several errors in the sections describing the language and it was for a time a persistent source of questions on the rhelp...

Also a leading dot in a name will make it "special" in some sense, e.g., `ls` will not return its name unless 'all.names' is set to TRUE. Also isolated dots...

The authors of S were already Unix tool proficient. They probably would have written a very terse awk program to do any string manipulation of data. Yes, the argument order...

There is already an `append` function in base R. Look it up. It can do what you desire as well as insert values into the middle of lists. (Note that...

I got the same result as ifly6 did in R as was offered as the "more correct" result in Python. (and then also offered via plyr construction by Eluvias. This...

> On Feb 7, 2022, at 10:21 PM, Anthony Damico ***@***.***> wrote: > > > hi! are you able to isolate the reason behind that timeout? i get > >...

It's not an error message. Its geting installed into the current library location. You can change teh location with the `.libPaths` function.