All Projects → stevecondylios → rawr

stevecondylios / rawr

Licence: other
Extract raw R code directly from webpages, including Github, Kaggle, Stack Overflow, and sites made using Blogdown.

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to rawr

COVID-19-CaseStudy-and-Predictions
This repository is a case study, analysis and visualization of COVID-19 Pandemic spread along with prediction models.
Stars: ✭ 90 (+500%)
Mutual labels:  kaggle, kaggle-notebook
Articles-Bookmarked
No description or website provided.
Stars: ✭ 30 (+100%)
Mutual labels:  medium
Data-Science-Projects
Data Science projects on various problem statements and datasets using Data Analysis, Machine Learning Algorithms, Deep Learning Algorithms, Natural Language Processing, Business Intelligence concepts by Python
Stars: ✭ 28 (+86.67%)
Mutual labels:  kaggle
medium
Usando a api do medium pra ler artigos e exibir o html
Stars: ✭ 33 (+120%)
Mutual labels:  medium
gender-unbiased BERT-based pronoun resolution
Source code for the ACL workshop paper and Kaggle competition by Google AI team
Stars: ✭ 42 (+180%)
Mutual labels:  kaggle
graphoverflow
Run the entire StackOverflow on Dgraph. Work in progress.
Stars: ✭ 117 (+680%)
Mutual labels:  stackoverflow
codeblock-beautifier
💅 A chrome extension for highlighting codes of Medium Articles
Stars: ✭ 118 (+686.67%)
Mutual labels:  medium
static-medium-isr-in-nuxtjs-with-layer0
Demo showing off ISR in Nuxt.js with Layer0
Stars: ✭ 36 (+140%)
Mutual labels:  medium
PracticalMachineLearning
A collection of ML related stuff including notebooks, codes and a curated list of various useful resources such as books and softwares. Almost everything mentioned here is free (as speech not free food) or open-source.
Stars: ✭ 60 (+300%)
Mutual labels:  kaggle
kaggle-camera-model-identification
Code for reproducing 2nd place solution for Kaggle competition IEEE's Signal Processing Society - Camera Model Identification
Stars: ✭ 64 (+326.67%)
Mutual labels:  kaggle
laravel-medium-sdk
Laravel Service Provider for Medium's SDK for PHP.
Stars: ✭ 20 (+33.33%)
Mutual labels:  medium
PyData-Pseudolabelling-Keynote
Accompanying notebook and sources to "A Guide to Pseudolabelling: How to get a Kaggle medal with only one model" (Dec. 2020 PyData Boston-Cambridge Keynote)
Stars: ✭ 23 (+53.33%)
Mutual labels:  kaggle
data-science-learning
📊 All of courses, assignments, exercises, mini-projects and books that I've done so far in the process of learning by myself Machine Learning and Data Science.
Stars: ✭ 32 (+113.33%)
Mutual labels:  kaggle
eve
👻 everyday explore, Github / HackNews / V2EX / Medium / Product Hunt.
Stars: ✭ 13 (-13.33%)
Mutual labels:  medium
indices
Indices creates a Table of Contents sidebar for Medium articles, and enables you to skip around
Stars: ✭ 16 (+6.67%)
Mutual labels:  medium
open-solution-ship-detection
Open solution to the Airbus Ship Detection Challenge
Stars: ✭ 54 (+260%)
Mutual labels:  kaggle
medium-code
A place to store my jupyter notebooks for my medium articles
Stars: ✭ 27 (+80%)
Mutual labels:  medium
sotoki
StackExchange websites to ZIM scraper
Stars: ✭ 64 (+326.67%)
Mutual labels:  stackoverflow
medium-to-markdown
Converts Medium posts to markdown.
Stars: ✭ 68 (+353.33%)
Mutual labels:  medium
Quora-Paraphrase-Question-Identification
Paraphrase question identification using Feature Fusion Network (FFN).
Stars: ✭ 19 (+26.67%)
Mutual labels:  kaggle

rawr

CRAN status Travis build status

rawr helps you quickly grab R code from the web, either straight to an R file, or to your clipboard. This avoids tedious copy/pasting of code from browser to IDE.

R Code from Popular R websites

Retrieve R code from a website to your clipboard with rawr_to_clip(), here are some examples:

# install.packages("rawr")
library(rawr)

# CRAN vignettes
rawr_to_clip("https://cran.r-project.org/web/packages/tidytext/vignettes/tidytext.html")

# Stack Overflow
rawr_to_clip("https://stackoverflow.com/questions/58248102/date-input-dt-r-shiny")

# Kaggle
rawr_to_clip("https://www.kaggle.com/vrtjso/mercari-eda-more-info-than-you-can-imagine")

# GitHub 
rawr_to_clip("https://github.com/hadley/vis-eda/blob/master/travel.R")

# Jupyter Notebook on GitHub
rawr_to_clip("https://github.com/tulip-lab/sit742/blob/master/Jupyter/SIT742P10B-MLSystem.ipynb")

# Blogdown sites
rawr_to_clip("https://www.jtimm.net/2019/04/14/lexical-change-procrustes/")

Other functionality

Write output to a temp file

rawr("https://www.kaggle.com/vrtjso/mercari-eda-more-info-than-you-can-imagine", to_file=T)

Write output to a specific file

rawr("https://www.kaggle.com/vrtjso/mercari-eda-more-info-than-you-can-imagine", file_path="mynewfile.R")

Issues and Feature Requests

When reporting an issue, please include:

  • Example code that reproduces the observed behavior.
  • An explanation of what the expected behavior is.
  • A specific url you’re attempting to retrieve R code from (if that’s what your issue concerns)

For feature requests, raise an issue with the following:

  • The desired functionality
  • Example inputs and desired output

Pull Requests

Pull requests are welcomed. Before doing so, please create an issue or email me with your idea.

Any new functions should follow the conventions established by the the package’s existing functions. Please ensure

  • Functions are sensibly named
  • The intent of the contribution is clear
  • At least one example is provided in the documentation
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].