Displaying 4 results from an estimated 4 matches for "gabrielbecker".
2019 Jun 13
2
[R] Open a file which name contains a tilde
...e suffix does not trigger the bug being discussed. It's
*only* files paths where the tilde is surrounded on both by spaces (or on
the right by the end fo the string) that trigger it.
> path.expand("a~b")
[1] "a~b"
> path.expand("a ~ b")
[1] "a /Users/gabrielbecker b"
> path.expand("myfile.txt~")
[1] "myfile.txt~"
> path.expand("myfile.txt ~")
[1] "myfile.txt /Users/gabrielbecker"
All that said I'm really not interested in participating in a flame war
over this. I gave my 2 cents as respectfully as...
2019 Jun 13
0
[R] Open a file which name contains a tilde
...sed. It's
> *only* files paths where the tilde is surrounded on both by spaces (or on
> the right by the end fo the string) that trigger it.
>
> > path.expand("a~b")
>
> [1] "a~b"
>
> > path.expand("a ~ b")
>
> [1] "a /Users/gabrielbecker b"
>
> > path.expand("myfile.txt~")
>
> [1] "myfile.txt~"
>
> > path.expand("myfile.txt ~")
>
> [1] "myfile.txt /Users/gabrielbecker"
>
>
> All that said I'm really not interested in participating in a flame war...
2020 Oct 16
2
tools::package_dependencies problems
Hello, All:
tools::package_dependencies('Ecfun') failed to find how my
development version of Ecfun was using rJava, which generated errors in
"R CMD build Ecfun". This is because package_dependencies by default
uses CRAN and ignores locally installed packages.
What do you think about having this function check both locally
installed and CRAN versions?
It can
2019 Jun 12
2
[R] Open a file which name contains a tilde
>>>>> Duncan Murdoch writes:
With c76695 in the trunk, we now only tilde expand file names starting
with a tilde also when using readline.
Best
-k
> On 11/06/2019 4:34 p.m., William Dunlap via R-devel wrote:
>> Note that R treats tildes in file names differently on Windows and Linux.
>> On Windows, it is only replaced if it it at the beginning of the line and