Skip to content

Commit 9816eae

Browse files
committed
lecture dataset
0 parents  commit 9816eae

File tree

7 files changed

+83
-0
lines changed

7 files changed

+83
-0
lines changed

DESCRIPTION

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
Package: biobabble
2+
Title: Datasets for Biobabble
3+
Version: 0.0.1
4+
Authors@R: person("Guangchuang", "Yu", email = "guangchuangyu@gmail.com", role = c("aut", "cre"))
5+
Description: Datasets for weekly plot of WeChat subscription account 'biobabble'.
6+
Depends: R (>= 3.4.0)
7+
License: Artistic-2.0
8+
Encoding: UTF-8
9+
LazyData: true
10+
RoxygenNote: 6.1.0

Makefile

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
PKGNAME := $(shell sed -n "s/Package: *\([^ ]*\)/\1/p" DESCRIPTION)
2+
PKGVERS := $(shell sed -n "s/Version: *\([^ ]*\)/\1/p" DESCRIPTION)
3+
PKGSRC := $(shell basename `pwd`)
4+
5+
all: rd check clean
6+
7+
rd:
8+
Rscript -e 'roxygen2::roxygenise(".")'
9+
10+
build:
11+
cd ..;\
12+
R CMD build $(PKGSRC)
13+
14+
build2:
15+
cd ..;\
16+
R CMD build --no-build-vignettes $(PKGSRC)
17+
18+
install:
19+
cd ..;\
20+
R CMD INSTALL $(PKGNAME)_$(PKGVERS).tar.gz
21+
22+
check: build
23+
cd ..;\
24+
Rscript -e 'rcmdcheck::rcmdcheck("$(PKGNAME)_$(PKGVERS).tar.gz", args="--as-cran")'
25+
26+
check2: build
27+
cd ..;\
28+
R CMD check $(PKGNAME)_$(PKGVERS).tar.gz
29+
30+
clean:
31+
cd ..;\
32+
$(RM) -r $(PKGNAME).Rcheck/
33+
34+

NAMESPACE

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Generated by roxygen2: do not edit by hand
2+

R/data.R

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#' Datasets
2+
#'
3+
#' datasets for plotting
4+
#'
5+
#'
6+
#' @name DataSet
7+
#' @aliases lecture
8+
#' @docType data
9+
#' @keywords datasets
10+
NULL

biobabble.Rproj

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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+
13+
BuildType: Package
14+
PackageUseDevtools: Yes
15+
PackageInstallArgs: --no-multiarch --with-keep.source
16+
PackageRoxygenize: rd,collate,namespace

data/lecture.rda

7.84 KB
Binary file not shown.

man/DataSet.Rd

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)