Displaying 10 results from an estimated 10 matches for "3acran".
2025 Jan 22
1
Depends: R (>= 4.1) for packages that use |> and \(...)
...(pkgname, "NAMESPACE")) ) {
>>>>
>>>>
>>>> --
>>>> Best regards,
>>>> Ivan
>>>>
>>>> [*] Based on the following GitHub search, which requires logging in:
>>>> https://github.com/search?q=org%3Acran%20path%3A%2F%5B.%5D%5BRr%5Dd%3F%24%2F%20%2F%5Cs%5C%7C%3E%2F&type=code
>>>> There's currently no REST API support for regexp search, so the list
>>>> was obtained manually.
>>>>
>>>> ______________________________________________
>>>&...
2025 Jan 16
1
Depends: R (>= 4.1) for packages that use |> and \(...)
...\n")
+ }
+ }
## add NAMESPACE if the author didn't write one
if(!file.exists(namespace <- file.path(pkgname, "NAMESPACE")) ) {
--
Best regards,
Ivan
[*] Based on the following GitHub search, which requires logging in:
https://github.com/search?q=org%3Acran%20path%3A%2F%5B.%5D%5BRr%5Dd%3F%24%2F%20%2F%5Cs%5C%7C%3E%2F&type=code
There's currently no REST API support for regexp search, so the list
was obtained manually.
2025 Jan 22
1
Depends: R (>= 4.1) for packages that use |> and \(...)
Hello all,
Would packages using the underscore placeholder with the native pipe need
to also depend on R >= 4.2.0?
There appear to be a number, modifying Ivan's GitHub search:
https://github.com/search?q=org%3Acran+path%3A%2F%5B.%5D%5BRr%5Dd%3F%24%2F+%2F%5Cs%5C%7C%3E%5Cs.*%3D%5Cs%3F_%2F&type=code
Regards,
Ian
____
Ian Farm
Laboratory Manager, The Agroecology Lab
University of Maine School of Food and Agriculture
5762 Roger Clapp Greenhouses, Orono, Maine 04469
On Wed, Jan 22, 2025 at 1:47?AM Kurt Horni...
2025 Jan 16
1
Depends: R (>= 4.1) for packages that use |> and \(...)
...NAMESPACE if the author didn't write one
> if(!file.exists(namespace <- file.path(pkgname, "NAMESPACE")) ) {
>
>
> --
> Best regards,
> Ivan
>
> [*] Based on the following GitHub search, which requires logging in:
> https://github.com/search?q=org%3Acran%20path%3A%2F%5B.%5D%5BRr%5Dd%3F%24%2F%20%2F%5Cs%5C%7C%3E%2F&type=code
> There's currently no REST API support for regexp search, so the list
> was obtained manually.
>
> ______________________________________________
> R-devel at r-project.org mailing list
> https://stat.e...
2025 Jan 17
1
Depends: R (>= 4.1) for packages that use |> and \(...)
...9;t write one
>> if(!file.exists(namespace <- file.path(pkgname, "NAMESPACE")) ) {
>>
>>
>> --
>> Best regards,
>> Ivan
>>
>> [*] Based on the following GitHub search, which requires logging in:
>> https://github.com/search?q=org%3Acran%20path%3A%2F%5B.%5D%5BRr%5Dd%3F%24%2F%20%2F%5Cs%5C%7C%3E%2F&type=code
>> There's currently no REST API support for regexp search, so the list
>> was obtained manually.
>>
>> ______________________________________________
>> R-devel at r-project.org mailing lis...
2025 Jan 19
1
Depends: R (>= 4.1) for packages that use |> and \(...)
...exists(namespace <- file.path(pkgname, "NAMESPACE")) ) {
>>>
>>>
>>> --
>>> Best regards,
>>> Ivan
>>>
>>> [*] Based on the following GitHub search, which requires logging in:
>>> https://github.com/search?q=org%3Acran%20path%3A%2F%5B.%5D%5BRr%5Dd%3F%24%2F%20%2F%5Cs%5C%7C%3E%2F&type=code
>>> There's currently no REST API support for regexp search, so the list
>>> was obtained manually.
>>>
>>> ______________________________________________
>>> R-devel at r-pro...
2015 May 04
1
Define replacement functions
No. I fixed that, the NAMESPACE file now contains:
S3method("[[<-", mylist)
S3method("$<-", mylist)
It still does not work. I also created a print method (print.mylist) which did work out of the box, regardless of being in the NAMESPACE file or not. Could it be somehow in here (also in my NAMESPACE file):
exportPattern("^[[:alpha:]]+")
Or could it be that
2024 Dec 13
1
Is it advisable/possible to default on Linux to an EDITOR that actually exists?
On 11 December 2024 at 15:00, Michael Chirico wrote:
| Thanks Simon, I didn't know that! That's definitely a compelling
| reason to leave the current default untouched and to eschew any
| finicky attempts to find back-up editors.
I am not sure I agree with the fairly bold statement by Simon. I do not
install or use that many different Unix flavours but I do come across some
that do not,
2019 Dec 15
1
system2 doesn't quote stdin on unix, unlike stdout, stderr & input and on Windows
...mmand, "<", shQuote(stdin))
if(!wait && !intern) command <- paste(command, "&")
.Internal(system(command, intern, timeout))
}
--
Best regards,
Ivan
[*] https://bugs.r-project.org/bugzilla/show_bug.cgi?id=17673
[**] https://github.com/search?q=org%3Acran+system2%28+stdin&type=Code
The search is probably computationally expensive and thus might only be available to GitHub account holders. The results are:
- BatchJobs: R/WorkerLinux.R; stdin is "" by default, filenames generated by
cfBrewTemplate aren't quoted
- batchtools: ca...
2019 Mar 23
4
topenv of emptyenv
I was surprised just now to find out that `topenv(emptyenv())` equals
? `.GlobalEnv`, not `emptyenv()`. From my understanding of the
description of `topenv`, it should walk up the chain of enclosing
environments (as if by calling `e = parent.env(e)` repeatedly; in
fact, that is almost exactly its implementation in envir.c) until it
hits a top level. However, `emptyenv()` has no enclosing