Skip to content

Commit caa3c68

Browse files
move R to /pkg directory
1 parent e9b5c13 commit caa3c68

21 files changed

+82
-6
lines changed

.Rbuildignore

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

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@ build/
1616
# VIM is awesome
1717
*.swo
1818
*.swp
19+
.Rproj.user

NAMESPACE

-1
This file was deleted.

datacomb.Rproj

+6
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,18 @@ SaveWorkspace: No
55
AlwaysSaveHistory: Default
66

77
EnableCodeIndexing: Yes
8+
UseSpacesForTab: Yes
9+
NumSpacesForTab: 2
810
Encoding: UTF-8
911

12+
RnwWeave: Sweave
13+
LaTeX: XeLaTeX
14+
1015
AutoAppendNewline: Yes
1116
StripTrailingWhitespace: Yes
1217

1318
BuildType: Package
1419
PackageUseDevtools: Yes
20+
PackagePath: pkg
1521
PackageInstallArgs: --no-multiarch --with-keep.source
1622
PackageRoxygenize: rd,collate,namespace

DESCRIPTION pkg/DESCRIPTION

File renamed without changes.

pkg/NAMESPACE

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Generated by roxygen2 (4.1.0): do not edit by hand
2+
3+
export(Datacomb)
4+
export(DatacombOutput)
5+
export(renderDatacomb)
6+
import(htmlwidgets)

R/datacomb.R pkg/R/datacomb.R

+9-5
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,28 @@
22
#'
33
#' An interface for viewing and combing through data frames.
44
#'
5+
#' @example ./inst/examples/examples.R
56
#' @import htmlwidgets
67
#'
78
#' @export
8-
Datacomb <- function(dataFrame, columns = c(), rowLabel = NULL, width = NULL, height = NULL) {
9-
9+
Datacomb <- function(
10+
dataFrame, columns = colnames(dataFrame), rowLabel = NULL,
11+
width = '100%', height = '100%'
12+
) {
13+
1014
# build object of config options
1115
opts = list(
1216
dataFrame = dataFrame,
1317
columns = columns,
1418
rowLabel = rowLabel
1519
)
16-
20+
1721
# create widget
1822
htmlwidgets::createWidget(
1923
name = 'datacomb',
2024
opts,
21-
width = '100%',
22-
height = '100%',
25+
width = width,
26+
height = height,
2327
package = 'datacomb'
2428
)
2529
}

pkg/inst/examples/examples.R

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
library(datacomb)
2+
3+
df <- data.frame(model=rownames(mtcars),mtcars)
4+
Datacomb(
5+
df,
6+
columns = colnames(df)[-1],
7+
rowLabel = "model"
8+
)
9+
10+
data(diamonds, package = "ggplot2")
11+
Datacomb(diamonds)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

pkg/man/Datacomb.Rd

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
% Generated by roxygen2 (4.1.0): do not edit by hand
2+
% Please edit documentation in R/datacomb.R
3+
\name{Datacomb}
4+
\alias{Datacomb}
5+
\title{Datacomb}
6+
\usage{
7+
Datacomb(dataFrame, columns = c(), rowLabel = NULL, width = "100\%",
8+
height = "100\%")
9+
}
10+
\description{
11+
An interface for viewing and combing through data frames.
12+
}
13+
\examples{
14+
library(datacomb)
15+
16+
df <- data.frame(model=rownames(mtcars),mtcars)
17+
Datacomb(
18+
df,
19+
columns = colnames(df)[-1],
20+
rowLabel = "model"
21+
)
22+
}
23+

pkg/man/DatacombOutput.Rd

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
% Generated by roxygen2 (4.1.0): do not edit by hand
2+
% Please edit documentation in R/datacomb.R
3+
\name{DatacombOutput}
4+
\alias{DatacombOutput}
5+
\title{Widget output function for use in Shiny}
6+
\usage{
7+
DatacombOutput(outputId, width = "100\%", height = "400px")
8+
}
9+
\description{
10+
Widget output function for use in Shiny
11+
}
12+

pkg/man/renderDatacomb.Rd

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
% Generated by roxygen2 (4.1.0): do not edit by hand
2+
% Please edit documentation in R/datacomb.R
3+
\name{renderDatacomb}
4+
\alias{renderDatacomb}
5+
\title{Widget render function for use in Shiny}
6+
\usage{
7+
renderDatacomb(expr, env = parent.frame(), quoted = FALSE)
8+
}
9+
\description{
10+
Widget render function for use in Shiny
11+
}
12+

0 commit comments

Comments
 (0)