Skip to content

jsta/schemeR

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

schemeR

Project Status: WIP - Initial development is in progress, but there has not yet been a stable, usable release suitable for the public.

The goal of schemeR is to visualize SQLite databases.

Installation

You can install schemeR from github with:

# install.packages("devtools")
devtools::install_github("jsta/schemeR")

Usage

This is a basic example:

SQLite

library(schemeR)

db <- dplyr::lahman_sqlite()
res <- schemeR::render_sqlite(db)
schemeR::export_svg(res, "images/sqlite_example.png")

data.frame

df <- data.frame(
          "name" = 1:4,
          "people" = c("bob", "jim", "beatrice", "ann"))

res <- schemeR::render_df(df)
schemeR::export_svg(res, "images/df_example.png")

References

http://graphviz.org/content/datastruct

https://rich-iannone.github.io/DiagrammeR/graphviz_and_mermaid.html

rich-iannone/DiagrammeR#133

About

Visualize SQLite structure with R :neckbeard:

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages