https://github.com/s-fleck/tabde
Work with table designs (col_names, col_types) in csv format
https://github.com/s-fleck/tabde
Last synced: 22 days ago
JSON representation
Work with table designs (col_names, col_types) in csv format
- Host: GitHub
- URL: https://github.com/s-fleck/tabde
- Owner: s-fleck
- License: other
- Created: 2018-06-04T13:19:59.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2021-03-31T15:06:20.000Z (about 4 years ago)
- Last Synced: 2025-03-24T12:09:57.575Z (22 days ago)
- Language: R
- Homepage:
- Size: 176 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: NEWS.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - s-fleck/tabde - Work with table designs (col_names, col_types) in csv format (R)
README
# tabde
[](https://www.tidyverse.org/lifecycle/#experimental)
[](https://travis-ci.com/s-fleck/tabde)**tabde** enables you to ensure and verify the correct column names and data
types for `data.frames` that are imported/exported from/to databases, .csv
files, fixed with text files, etc. The core piece of tabde are
*table_designs*: `data.frames` that contain column names, data types,
and optionally the corresponding SQL data types, fixed-with column positions,
and a description of the column. Consequently these *table_designs* also
double as documentation of the dataset.## Development status
**tabde** is under constant but slow development, as it is tied into some
production workflows that I maintain. As of yet there is no roadmap for when
it will be considered stable.## Installation
You can install tabde from GitHub with:
``` r
# install.packages("devtools")
devtools::install_github("s-fleck/tabde")
```