Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jonthegeek/tableguess
Find Tables in Plain Text
https://github.com/jonthegeek/tableguess
Last synced: 10 days ago
JSON representation
Find Tables in Plain Text
- Host: GitHub
- URL: https://github.com/jonthegeek/tableguess
- Owner: jonthegeek
- License: other
- Created: 2023-08-17T22:28:14.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-23T14:59:15.000Z (about 1 year ago)
- Last Synced: 2024-05-01T18:01:02.541Z (6 months ago)
- Language: R
- Homepage: https://jonthegeek.github.io/tableguess/
- Size: 350 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```# tableguess
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)
[![CRAN status](https://www.r-pkg.org/badges/version/tableguess)](https://CRAN.R-project.org/package=tableguess)
[![Codecov test coverage](https://codecov.io/gh/jonthegeek/tableguess/branch/main/graph/badge.svg)](https://app.codecov.io/gh/jonthegeek/tableguess?branch=main)
[![R-CMD-check](https://github.com/jonthegeek/tableguess/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/jonthegeek/tableguess/actions/workflows/R-CMD-check.yaml)The goal of tableguess is to automatically extract table-like objects out of plain text files.
This package is currently far from complete, but the first function vaguely works, so I'm going to use it and see what breaks.## Installation
You can install the development version of tableguess from [GitHub](https://github.com/) with:
``` r
# install.packages("remotes")
remotes::install_github("jonthegeek/tableguess")
```## Usage
*(Add usage information and examples here.)*
## Code of Conduct
Please note that the tableguess project is released with a [Contributor Code of Conduct](https://jonthegeek.github.io/tableguess/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms.