Skip to content

Commit 163a517

Browse files
committed
add package files
1 parent bdbf1ed commit 163a517

File tree

8 files changed

+255
-2
lines changed

8 files changed

+255
-2
lines changed

.Rbuildignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
^.*\.Rproj$
2+
^\.Rproj\.user$

.Rhistory

Whitespace-only changes.

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -350,3 +350,4 @@ MigrationBackup/
350350

351351
# Ionide (cross platform F# VS Code tools) working folder
352352
.ionide/
353+
.Rproj.user

DESCRIPTION

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
Package: ggplot
2+
Type: Package
3+
Title: R Environment Programming Utils
4+
Version: 1.0.0.1254
5+
Date: 2021-01-25
6+
Author: xieguigang
7+
Maintainer: xieguigang <[email protected]>
8+
Description: An internal package for R environment programming on unix platform.
9+
License: MIT
10+
RoxygenNote: 7.1.1

NAMESPACE

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
exportPattern("^[[:alpha:]]+")

ggplot.Rproj

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Version: 1.0
2+
3+
RestoreWorkspace: Yes
4+
SaveWorkspace: Ask
5+
AlwaysSaveHistory: Yes
6+
7+
EnableCodeIndexing: Yes
8+
UseSpacesForTab: Yes
9+
NumSpacesForTab: 2
10+
Encoding: UTF-8
11+
12+
RnwWeave: Sweave
13+
LaTeX: pdfLaTeX
14+
15+
AutoAppendNewline: Yes
16+
StripTrailingWhitespace: Yes
17+
LineEndingConversion: Posix
18+
19+
BuildType: Package
20+
PackageUseDevtools: Yes
21+
PackageInstallArgs: --no-multiarch --with-keep.source
22+
PackageRoxygenize: rd,collate,vignette

ggplot.sln

+211-2
Large diffs are not rendered by default.

test/test.R

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# require(ggplot2);
2+
3+
const chic <- read.csv(`${@dir}/chicago-nmmaps.csv`);
4+
5+
print(head(chic, 10));
6+
7+
8+
pause();

0 commit comments

Comments
 (0)