Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
^\.github$
^\.git$
^app\.R$
^README\.md$
^\.Rproj\.user$
^extdata$
^www$
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
.Rhistory
.RData
.Ruserdata
/test data
/test data
17 changes: 17 additions & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
Package: datamap
Title: Interactive Visualization of Data Matrices
Version: 0.1.0
Authors@R: person("Steven", "Ge", email = "Xijin.Ge@sdstate.edu", role = c("aut", "cre"))
Description: A Shiny application for visualizing data matrices with heatmaps, PCA, and t-SNE.
Allows users to upload, transform, and visualize their data interactively.
License: MIT + file LICENSE
Encoding: UTF-8
LazyData: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.2
Imports:
shiny,
pheatmap,
readxl,
Rtsne,
stats
2 changes: 2 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
YEAR: 2025
COPYRIGHT HOLDER: Steven Ge
3 changes: 3 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Generated by roxygen2: do not edit by hand

export(run_app)
6 changes: 6 additions & 0 deletions R/datamap-package.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#' @keywords internal
"_PACKAGE"

## usethis namespace: start
## usethis namespace: end
NULL
Loading