View on GitHub

Data-Science-Resources

https://daya6489.github.io/Data-Science-Resources

Awesome Data Science Resources

Statistics

Data Science Interivew Tips

Feature Engineering

Statistical Test Interpretations

Deep Learning

R, Python and AutomML packages

Data Science Plots

R Shiny

ML Classifiers

Decision Tree

Random Forest

GBM

XGBoost

LightGBM

GAM model

Text Mining

Cohort Analysis

Time Series

Model Interpreations

Clustering

Customer Churn Predictions

Deep Learning Method

Web Scraping

Data Science Cheat Sheets

ML and heuristic data labeling

Further Reading

R package Development

  1. [quantide - Chapter 6 Creating R packages](http://www.quantide.com/ramarro-chapter-06/)
  2. analyticsvidhya - How I created a package in R & published it on CRAN / GitHub
  3. hvitfeldt - usethis-workflow-for-package-development
  4. kbroman - Writing vignettes
  5. r-pkgs - Releasing a package
  6. r-bio - An introduction to Git and how to use it with RStudio
  7. stackoverflow - R CMD check –as-cran warning
  8. mjdenny - R Package Development Pictorial

Code snippet to submit library to CRAN

Build package

devtools::document(roclets=c('rd', 'collate', 'namespace', 'vignette'))
devtools::build()
devtools::use_news_md()
devtools::use_code_of_conduct()
devtools::use_cran_badge()
devtools::use_cran_comments()

Upload it to CRAN

devtools::submit_cran()

Create websites for you and your projects using gitpage

Developing github web page using below package

pkgdown::build_site().

Write R markdown

  1. basic writing and formatting syntax
  2. pdf document format
  3. authoring basics
  4. kableExtra
  5. knitr-markdown
  6. rmarkdown.rstudio.com
library(hexSticker)
library(UCSCXenaTools)
library(extrafont)
font_import()
loadfonts(device = "win")

library(showtext)
## Loading Google fonts (http://www.google.com/fonts)
font_add_google("Archivo Black", "arb")

imgurl <- image_read("man/figures/dml_icon3.png")

## Design Stickers
sticker(imgurl,
        s_width = 1,
        s_height = 1.2,
        package="MyRpackage", p_size=20, s_x=1, s_y=.75,
        url = "https://CRAN.R-project.org/package=MyRpackage",
        u_color = "white", u_size = 3,
        h_fill="dodgerblue4", h_color='blue',
        p_family ="arb",
        filename="man/figures/dml_logo.png")

Get the Number of Downloads of your R package from CRAN

For examples to check the number of downloads of ‘data.table’ R package

  1. Month - https://cranlogs.r-pkg.org/badges/data.table
  2. Day - https://cranlogs.r-pkg.org/badges/last-day/data.table
  3. Total - https://cranlogs.r-pkg.org/badges/grand-total/data.table