Displaying 7 results from an estimated 7 matches for "totitlecase".
2016 Jul 18
1
failed to assign RegisteredNativeSymbol for splitString
...(C) 2016 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu/x86_64 (64-bit)
$ /usr/local/pkg/R-3.2-branch-20160718/bin/R --vanilla --no-restore --no-save --silent
> splitString <- function(...) { print("Test, do nothing") }
> invisible(tools::toTitleCase)
Warning message:
failed to assign RegisteredNativeSymbol for splitString to splitString since splitString is already defined in the 'tools' namespace
Another way to trigger that warning is by loading the knitr package, e.g.:
> require("knitr")
Loading required p...
2015 Apr 25
2
Title case in DESCRIPTION for package where a word is a function namei
> On 25 Apr 2015, at 13:11 , Prof J C Nash (U30A) <nashjc at uottawa.ca> wrote:
>
> Hendrik pointed out it was the parentheses that gave the complaint.
> Single quotes and no parentheses seem to satisfy R CMD check. Perhaps
> that needs to be in the WRE.
Well, it is in ?toTitleCase:
...However, unknown
technical terms will be capitalized unless they are single words
enclosed in single quotes: names of packages and libraries should
be quoted in titles.
..and it is the "single word" bit that gets you. AFAICT, the issue is that it splits the text...
2015 Apr 25
0
Title case in DESCRIPTION for package where a word is a function namei
..., at 13:11 , Prof J C Nash (U30A) <nashjc at uottawa.ca> wrote:
>>
>> Hendrik pointed out it was the parentheses that gave the complaint.
>> Single quotes and no parentheses seem to satisfy R CMD check. Perhaps
>> that needs to be in the WRE.
>
> Well, it is in ?toTitleCase:
>
> ...However, unknown
> technical terms will be capitalized unless they are single words
> enclosed in single quotes: names of packages and libraries should
> be quoted in titles.
>
> ..and it is the "single word" bit that gets you. AFAICT, th...
2024 Jun 14
0
R 4.4.1 is released
...18711.
* The internal help server on Windows can again serve requests sent
in quick succession, fixing a regression in R 4.4.0.
* debugcall(<S3Generic>()) now also works when a corresponding
S4-generic version is in the methods cache (PR#18143).
* Package tools' toTitleCase(ch0) now returns character(0) when ch0
is of zero length; fixing PR#18724, reported by David Hugh Jones.
* R CMD check is no longer broken (without a check result and no
explanation in 00check.log) for a package which declares an
invalid VignetteBuilder in DESCRIPTION but has...
2024 Jun 14
0
R 4.4.1 is released
...18711.
* The internal help server on Windows can again serve requests sent
in quick succession, fixing a regression in R 4.4.0.
* debugcall(<S3Generic>()) now also works when a corresponding
S4-generic version is in the methods cache (PR#18143).
* Package tools' toTitleCase(ch0) now returns character(0) when ch0
is of zero length; fixing PR#18724, reported by David Hugh Jones.
* R CMD check is no longer broken (without a check result and no
explanation in 00check.log) for a package which declares an
invalid VignetteBuilder in DESCRIPTION but has...
2024 Jun 14
0
R 4.4.1 is released
...18711.
* The internal help server on Windows can again serve requests sent
in quick succession, fixing a regression in R 4.4.0.
* debugcall(<S3Generic>()) now also works when a corresponding
S4-generic version is in the methods cache (PR#18143).
* Package tools' toTitleCase(ch0) now returns character(0) when ch0
is of zero length; fixing PR#18724, reported by David Hugh Jones.
* R CMD check is no longer broken (without a check result and no
explanation in 00check.log) for a package which declares an
invalid VignetteBuilder in DESCRIPTION but has...
2015 Apr 24
3
Title case in DESCRIPTION for package where a word is a function name
On 24.04.2015 22:44, Ben Bolker wrote:
> Prof J C Nash (U30A <nashjc <at> uottawa.ca> writes:
>
>>
>> I was preparing a fix for a minor glitch in my optimx package and R CMD
>> check gave an error that the title was not in title case.
>
> [snip] to make Gmane happy ...
>
>> I have found
>>
>> A Replacement and Extension of the