https://github.com/aravind-j/gglyph
Multivariate Data Visualization using Glyphs
https://github.com/aravind-j/gglyph
ggplot-extension ggplot2 multivariate-data rstats visualization
Last synced: about 1 month ago
JSON representation
Multivariate Data Visualization using Glyphs
- Host: GitHub
- URL: https://github.com/aravind-j/gglyph
- Owner: aravind-j
- Created: 2021-06-09T09:53:48.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-07-31T11:06:04.000Z (almost 3 years ago)
- Last Synced: 2025-02-14T13:15:19.644Z (3 months ago)
- Topics: ggplot-extension, ggplot2, multivariate-data, rstats, visualization
- Language: R
- Homepage: https://aravind-j.github.io/gglyph/
- Size: 56 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
Awesome Lists containing this project
README
---
output: rmarkdown::github_document
always_allow_html: true
---```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "",
fig.path = "inst/extdata/"
)
```## `gglyph`: Multivariate Data Visualization using Glyphs
```{r,echo = FALSE, message = FALSE}
devtools::load_all(".", quiet = TRUE) # quiet = T for hiding macOS compiler warnings```
###### Version : [`r getNamespaceVersion("gglyph")`](https://aravind-j.github.io/gglyph/); License: [GPL-2|GPL-3](https://www.r-project.org/Licenses/)
##### Aravind, J.
Division of Germplasm Conservation, ICAR-National Bureau of Plant Genetic Resources, New Delhi.
***
[](https://cran.r-project.org/)
[](https://www.gnu.org/licenses/gpl-3.0)
[](https://cran.r-project.org/package=gglyph)
[](https://cran.r-project.org/package=gglyph)
[](https://CRAN.R-project.org/package=gglyph)
```{r, results='asis', echo=FALSE}
dver <- ifelse(test = gsub("(.\\.)(\\d+)(\\..)", "", getNamespaceVersion("gglyph")) != "",
yes = getNamespaceVersion("gglyph"),
no = gsub("Version:\\s*", "", readLines(paste0("https://raw.githubusercontent.com/", "aravind-j/gglyph", "/master/DESCRIPTION"))[grep("Version:", readLines(paste0("https://raw.githubusercontent.com/", "aravind-j/gglyph", "/master/DESCRIPTION")))]))cat(paste("[](https://github.com/aravind-j/gglyph)", sep = ""))
```
[](https://github.com/aravind-j/gglyph)
[](https://github.com/aravind-j/gglyph/actions)
[](https://www.repostatus.org/#wip)
[](https://lifecycle.r-lib.org/articles/stages.html#maturing)
[)`-yellowgreen.svg)](https://github.com/aravind-j/gglyph/)[](https://aravind-j.github.io/gglyph/)
[](https://github.com/aravind-j/google-analytics-beacon)***
## Description
`r gsub("()", "[doi:\\2](https://doi.org/\\2)", gsub("\\n", " ", packageDescription("gglyph", fields = "Description")))`## Installation
```{r, eval=FALSE, echo=FALSE}
# Install from CRAN
install.packages('gglyph', dependencies=TRUE)
```The development version can be installed from github as follows:
```{r, eval=FALSE}
# Install development version from Github
devtools::install_github("aravind-j/gglyph")
```## What's new
To know whats new in this version type:```{r, eval=FALSE}
news(package='gglyph')
```## Links
[Github page](https://github.com/aravind-j/gglyph)
[Documentation website](https://aravind-j.github.io/gglyph/)
```{r, echo = FALSE, eval=FALSE}
pkgname <- "gglyph"osdf <-
rbind(data.frame(OS = "Linux",
Flavour = c("r-devel-linux-x86_64-debian-clang",
"r-devel-linux-x86_64-debian-gcc",
"r-devel-linux-x86_64-fedora-clang",
"r-devel-linux-x86_64-fedora-gcc",
"r-patched-linux-x86_64",
"r-release-linux-x86_64")),
data.frame(OS = "Solaris",
Flavour = c("r-patched-solaris-x86")),
data.frame(OS = "Windows",
Flavour = c("r-devel-windows-ix86+x86_64",
"r-release-windows-ix86+x86_64",
"r-oldrel-windows-ix86+x86_64")),
data.frame(OS = "macOS",
Flavour = c("r-release-macos-x86_64",
"r-oldrel-macos-x86_64")))osdf$`CRAN check` <- paste("[![CRAN check - ", osdf$Flavour, "]",
"(https://cranchecks.info/badges/flavor/",
osdf$Flavour, "/", pkgname, ")]",
"(https://cran.r-project.org/web/checks/check_results_",
pkgname, ".html)",
sep = "")
``````{r, echo = FALSE, results='asis', eval=FALSE}
library(kableExtra, warn.conflicts = FALSE)kosdf <- kbl(osdf[, c("Flavour", "CRAN check")], row.names = FALSE)
kosdf2 <- kable_styling(kosdf, bootstrap_options = c("striped", "hover"),
full_width = F, position = "left")pack_rows(kosdf2, index = c("[](https://cran.r-project.org/web/checks/check_results_ammistability.html)" = 6,
"[](https://cran.r-project.org/web/checks/check_results_ammistability.html)" = 1,
"[](https://cran.r-project.org/web/checks/check_results_ammistability.html)" = 3,
"[](https://cran.r-project.org/web/checks/check_results_ammistability.html)" = 2))```
## Citing `gglyph`
To cite the methods in the package use:```{r, eval = FALSE}
citation("gglyph")
``````{r, echo = FALSE}
detach("package:gglyph", unload = TRUE)
suppressPackageStartupMessages(library(gglyph))
cit <- citation("gglyph")
# yr <- format(Sys.Date(), "%Y")
# cit[1]$year <- yr
# oc <- class(cit)
#
# cit <- unclass(cit)
# attr(cit[[1]],"textVersion") <- gsub("\\(\\)",
# paste("\\(", yr, "\\)", sep = ""),
# attr(cit[[1]],"textVersion"))
# class(cit) <- oc
cit
```