Skip to content

Commit 86b9fb4

Browse files
committed
Update CRAN remarks...
1 parent f172cfd commit 86b9fb4

File tree

1 file changed

+47
-1
lines changed

1 file changed

+47
-1
lines changed

cran-comments.md

Lines changed: 47 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,52 @@
33
0 errors | 0 warnings | 1 note
44

55
* This is a new release.
6+
* We've addressed the original CRAN feedback in this release:
7+
8+
> Please always explain all acronyms in the description text. -> UCI ML
9+
10+
In the DESCRIPTION, we fully spell out the acronym:
11+
12+
University of California Irvine Machine Learning (UCI ML) Repository
13+
14+
> Please provide a link to the used webservices to the description field
15+
of your DESCRIPTION file in the form
16+
http:... or https:...
17+
with angle brackets for auto-linking and no space after 'http:' and
18+
'https:'.
19+
20+
In the DESCRIPTINO, we provide the link to the UCI ML Repository in both the
21+
URL field and at the end of the DESCRIPTION paragraph:
22+
23+
https://archive.ics.uci.edu/
24+
25+
> The Description field is intended to be a (one paragraph) description of
26+
what the package does and why it may be useful. Please add more details
27+
about the package functionality and implemented methods in your
28+
Description text.
29+
30+
In the DESCRIPTION, we provide a more detailed description of the package:
31+
32+
Find and import datasets from the
33+
University of California Irvine Machine Learning (UCI ML) Repository into R.
34+
Supports working with data from UCI ML repository inside of R scripts, notebooks,
35+
and 'Quarto'/'RMarkdown' documents. Access the UCI ML repository directly at
36+
<https://archive.ics.uci.edu/>.
37+
38+
> You write information messages to the console that cannot be easily
39+
suppressed.
40+
It is more R like to generate objects that can be used to extract the
41+
information a user is interested in, and then print() that object.
42+
Instead of cat() rather use message()/warning() or if(verbose)cat(..)
43+
(or maybe stop()) if you really have to write text to the console.
44+
(except for print, summary, interactive functions) ->
45+
R/list-available-datasets.R
46+
47+
We've changed how `list_available_datasets()` works so that it now has its
48+
own `print()` method to display the datasets in a more R-like manner while
49+
retaining the original print formatting of the Python package.
50+
651
* Spell check detects the UCI acronym as a misspelled word. However,
752
that is not misspelled.
8-
Possibly misspelled words in DESCRIPTION: UCI (2:15, 12:39)
53+
Possibly misspelled words in DESCRIPTION:
54+
UCI (2:16, 13:55, 14:37, 15:52)

0 commit comments

Comments
 (0)