https://github.com/aravind-j/gglyph

Multivariate Data Visualization using Glyphs

https://github.com/aravind-j/gglyph

Science Score: 23.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
  • .zenodo.json file
  • DOI references
    Found 5 DOI reference(s) in README
  • Academic publication links
    Links to: zenodo.org
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (12.7%) to scientific vocabulary

Keywords

ggplot-extension ggplot2 multivariate-data rstats visualization
Last synced: 5 months ago · JSON representation

Repository

Multivariate Data Visualization using Glyphs

Basic Info
Statistics
  • Stars: 5
  • Watchers: 1
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Topics
ggplot-extension ggplot2 multivariate-data rstats visualization
Created over 4 years ago · Last pushed over 3 years ago
Metadata Files
Readme

README.Rmd

---
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 logo

```{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.

***
[![minimal R version](https://img.shields.io/badge/R>%3D-3.5.0-6666ff.svg?logo=R)](https://cran.r-project.org/)
[![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version-last-release/gglyph)](https://cran.r-project.org/package=gglyph)
[![Dependencies](https://tinyverse.netlify.com/badge/gglyph)](https://cran.r-project.org/package=gglyph)
[![rstudio mirror downloads](https://cranlogs.r-pkg.org/badges/grand-total/gglyph?color=green)](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("[![develVersion](https://img.shields.io/badge/devel%20version-", dver, "-orange.svg)](https://github.com/aravind-j/gglyph)", sep = ""))
```
[![Github Code Size](https://img.shields.io/github/languages/code-size/aravind-j/gglyph.svg)](https://github.com/aravind-j/gglyph)
[![R-CMD-check](https://github.com/aravind-j/gglyph/workflows/R-CMD-check/badge.svg)](https://github.com/aravind-j/gglyph/actions)
[![Project Status: WIP](https://www.repostatus.org/badges/latest/wip.svg)](https://www.repostatus.org/#wip)
[![lifecycle](https://lifecycle.r-lib.org/articles/figures/lifecycle-maturing.svg)](https://lifecycle.r-lib.org/articles/stages.html#maturing)
[![Last-changedate](https://img.shields.io/badge/last%20change-`r gsub('-', '--', Sys.Date())`-yellowgreen.svg)](https://github.com/aravind-j/gglyph/)

[![Website - pkgdown](https://img.shields.io/website-up-down-green-red/https/aravind-j.github.io/gglyph.svg)](https://aravind-j.github.io/gglyph/)
[![.](https://pro-pulsar-193905.appspot.com/UA-199996472-2/welcome-page)](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("[![Linux](https://shields.io/badge/Linux--9cf?logo=Linux&style=social)](https://cran.r-project.org/web/checks/check_results_ammistability.html)" = 6,
                            "[![Solaris](https://shields.io/badge/Solaris--9cf?logo=Oracle&style=social)](https://cran.r-project.org/web/checks/check_results_ammistability.html)" = 1,
                            "[![Windows](https://shields.io/badge/Windows--9cf?logo=Windows&style=social)](https://cran.r-project.org/web/checks/check_results_ammistability.html)" = 3,
                            "[![MacOS](https://shields.io/badge/MacOS--9cf?logo=Apple&style=social)](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
```

Owner

  • Name: J. Aravind
  • Login: aravind-j
  • Kind: user
  • Location: New Delhi, India

Scientist, Division of Germplasm Conservation, ICAR-National Bureau of Plant Genetic Resources

GitHub Events

Total
  • Watch event: 2
Last Year
  • Watch event: 2

Issues and Pull Requests

Last synced: 11 months ago

All Time
  • Total issues: 0
  • Total pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Total issue authors: 0
  • Total pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels

Dependencies

DESCRIPTION cran
  • R >= 3.5.0 depends
  • Rcpp * imports
  • Rdpack * imports
  • ggplot2 * imports
  • grid * imports
  • rlang * imports
  • scales * imports
  • RColorBrewer * suggests
  • ggrepel * suggests
  • testthat >= 3.0.0 suggests
  • vdiffr * suggests