Skip to content

Commit

Permalink
pkg structure
Browse files Browse the repository at this point in the history
  • Loading branch information
coatless committed Jan 10, 2024
1 parent ff264e3 commit 08c5f81
Show file tree
Hide file tree
Showing 6 changed files with 59 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
^.*\.Rproj$
^\.Rproj\.user$
^\.github$
^_pkgdown\.yml$
^docs$
^pkgdown$
^README\.Rmd$
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.Rproj.user
.Rhistory
.RData
.Ruserdata
docs
20 changes: 20 additions & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Package: drawr
Title: Create Graphics of 'R' Data Structures
Version: 0.0.1
Authors@R: c(
person("James Joseph", "Balamuta",
email = "[email protected]",
role = c("aut", "cre"),
comment = c(ORCID = "0000-0003-2826-8458")
)
)
Description: Visualize the contents of different 'R' data structures.
URL: https://github.com/coatless-rpkg/drawr, http://r-pkg.thecoatlessprofessor.com/drawr/
BugReports: https://github.com/coatless-rpkg/drawr/issues
Depends: R (>= 4.3.0)
License: GPL (>= 2)
Encoding: UTF-8
RoxygenNote: 7.2.3
Roxygen: list(markdown = TRUE)
Imports:
graphics
5 changes: 5 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Generated by roxygen2: do not edit by hand

export(visualize_matrix_data)
importFrom(graphics,rect)
importFrom(graphics,text)
4 changes: 4 additions & 0 deletions _pkgdown.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
url: http://r-pkg.thecoatlessprofessor.com/drawr/
template:
bootstrap: 5

18 changes: 18 additions & 0 deletions drawr.Rproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Version: 1.0

RestoreWorkspace: Default
SaveWorkspace: Default
AlwaysSaveHistory: Default

EnableCodeIndexing: Yes
UseSpacesForTab: Yes
NumSpacesForTab: 2
Encoding: UTF-8

RnwWeave: Sweave
LaTeX: pdfLaTeX

BuildType: Package
PackageUseDevtools: Yes
PackageInstallArgs: --no-multiarch --with-keep.source
PackageRoxygenize: rd,collate,namespace

0 comments on commit 08c5f81

Please sign in to comment.