R package for mining text functions
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Initial R package scaffold with DESCRIPTION, NAMESPACE, and project config files

+33
+2
.Rbuildignore
··· 1 + ^mintR\.Rproj$ 2 + ^\.Rproj\.user$
+1
.gitignore
··· 1 + .Rproj.user
+11
DESCRIPTION
··· 1 + Package: mintR 2 + Title: What the Package Does (One Line, Title Case) 3 + Version: 0.0.0.9000 4 + Authors@R: 5 + person("First", "Last", , "first.last@example.com", role = c("aut", "cre")) 6 + Description: What the package does (one paragraph). 7 + License: `use_mit_license()`, `use_gpl3_license()` or friends to pick a 8 + license 9 + Encoding: UTF-8 10 + Roxygen: list(markdown = TRUE) 11 + RoxygenNote: 7.3.3
+2
NAMESPACE
··· 1 + # Generated by roxygen2: do not edit by hand 2 +
+17
mintR.Rproj
··· 1 + Version: 1.0 2 + 3 + RestoreWorkspace: No 4 + SaveWorkspace: No 5 + AlwaysSaveHistory: Default 6 + 7 + EnableCodeIndexing: Yes 8 + Encoding: UTF-8 9 + 10 + AutoAppendNewline: Yes 11 + StripTrailingWhitespace: Yes 12 + LineEndingConversion: Posix 13 + 14 + BuildType: Package 15 + PackageUseDevtools: Yes 16 + PackageInstallArgs: --no-multiarch --with-keep.source 17 + PackageRoxygenize: rd,collate,namespace