Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/news-r/newsr
📰 All of news-r tools in one place
https://github.com/news-r/newsr
api media r rstats
Last synced: about 2 months ago
JSON representation
📰 All of news-r tools in one place
- Host: GitHub
- URL: https://github.com/news-r/newsr
- Owner: news-r
- License: other
- Created: 2019-06-07T15:57:19.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-23T20:58:40.000Z (almost 5 years ago)
- Last Synced: 2024-08-13T07:15:27.690Z (5 months ago)
- Topics: api, media, r, rstats
- Language: R
- Homepage:
- Size: 34.2 KB
- Stars: 35
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- jimsghstars - news-r/newsr - 📰 All of news-r tools in one place (R)
README
---
output:
github_document:
html_preview: false
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```[![Travis build status](https://travis-ci.org/news-r/newsr.svg?branch=master)](https://travis-ci.org/news-r/newsr)
# newsr
All of news-r _R_ tools in one place.
## Packages
Lists of packages included.
### Data
Data-related packages, packages to collect data, generally from APIs. THe `letterbox` packages attempts at providing a unified API for all of the latter.
- [newsapi](https://github.com/news-r/newsapi) - newsapi.org (news aggregator)
- [guardian](https://github.com/news-r/guardian) - The Guardian API
- [papers](https://github.com/news-r/papers) - Information on newspapers
- [loc](https://github.com/news-r/loc) - Library of Congress API
- [webhoser](https://github.com/news-r/webhoser) - webhose.io API (news aggregator)
- [currents](https://github.com/news-r/currents) - Currents API (news aggregator)
- [nytimes](https://github.com/news-r/nytimes) - New York Times API
- [spotlight](https://github.com/news-r/spotlight) - Entity extraction with DBPedia Spotlight
- [stocknews](https://github.com/news-r/stocknews) - Stocknews API (financial news)
- [ft](https://github.com/news-r/ft) - Financial Times API
- [accunews](https://github.com/news-r/accunews) - AccuNews API (local news)
- [newsriver](https://github.com/news-r/newsriver) - newsriver.io API (news aggregator)
- [hoaxy](https://github.com/news-r/hoaxy) - Fake news monitoring
- [factcheck](https://github.com/news-r/factcheck) - Fact check queries or publishers
- [letterbox](https://github.com/news-r/letterbox) - News article crawler### Analysis
Packages for analysis, generally text mining.
- [textanalysis](https://github.com/news-r/textanalysis) - Broad text analysis in R
- [gensimr](https://gensimr.news-r.org) - Topic Modeling
- [word2vec.r](https://word2vec.news-r.org) - Word2Vec embeddings in R
- [phrasenets](https://phrasenets.news-r.org) - Create phrase networks## Installation
You can install newsr from Github with remotes:
```r
# install.packages("remotes")
remotes::install_github("news-r/newsr")
```Loading newsr essentially loads all packages in the environment.
```{r}
library(newsr)
```The only function currently available is to check which API keys as set, or in other words, which APIs (packages) the user may call.
```{r}
check_keys()
```Please note that the 'newsr' project is released with a
[Contributor Code of Conduct](CODE_OF_CONDUCT.md).
By contributing to this project, you agree to abide by its terms.