Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mkearney/wibble
Web Data Frames
https://github.com/mkearney/wibble
data-frames html r r-package rstats tbl tibble unstructured-data web-data web-scraping wrangling xml
Last synced: 27 days ago
JSON representation
Web Data Frames
- Host: GitHub
- URL: https://github.com/mkearney/wibble
- Owner: mkearney
- License: other
- Created: 2018-08-10T18:56:06.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-28T21:50:20.000Z (almost 6 years ago)
- Last Synced: 2024-08-13T07:14:31.071Z (4 months ago)
- Topics: data-frames, html, r, r-package, rstats, tbl, tibble, unstructured-data, web-data, web-scraping, wrangling, xml
- Language: R
- Homepage: https://wibble.mikewk.com
- Size: 497 KB
- Stars: 12
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- jimsghstars - mkearney/wibble - Web Data Frames (R)
README
---
output: github_document
---```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# wibble[![lifecycle](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental)
> Web Data Frames
## Install
Install the dev version from Github:
```{r, eval = FALSE}
## from github
remotes::install_github("mkearney/wibble")
```## Example
Scrape/wrangle CNN US site
```{r}
## load pkg
library(wibble)## scrape CNN
cnn <- webble("https://cnn.com/us")## wibble and wobble
cnn %>%
wibble() %>%
wobble("body div") %>%
wobble("ul")
```