All Projects → tomaztk → Useless_R_functions

tomaztk / Useless_R_functions

Licence: MIT license
Useless R Functions. That's it

Programming Languages

r
7636 projects
TSQL
950 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Useless R functions

r-resources-for-data-science
A biggest collection of free books and other resources for R programming
Stars: ✭ 24 (-68.83%)
Mutual labels:  r-language, r-programming, r-stats
r-whatsapp-analysis-parte1
Análisis de texto y visualización de datos con R, de conversaciones de WhatsApp, primer parte. Uso de librería rwhatsapp.
Stars: ✭ 22 (-71.43%)
Mutual labels:  r-language, r-programming, r-stats
r4strings
Handling Strings in R
Stars: ✭ 39 (-49.35%)
Mutual labels:  r-language, r-programming
bayesopt-tutorial-r
Tutorial on Bayesian optimization in R
Stars: ✭ 15 (-80.52%)
Mutual labels:  r-language
dplyr.teradata
A Teradata Backend for dplyr
Stars: ✭ 16 (-79.22%)
Mutual labels:  r-language
ABCoptim
An implementation of the Artificial Bee Colony (ABC) Algorithm
Stars: ✭ 26 (-66.23%)
Mutual labels:  r-programming
cienciadedatos.net
Web de divulgación con material formativo sobre estadística, algoritmos de machine learning, ciencia de datos y programación en R y Python
Stars: ✭ 18 (-76.62%)
Mutual labels:  r-programming
microarray-analysis
Materials on the analysis of microarray expression data; focus on re-analysis of public data ( http://tinyurl.com/cruk-microarray)
Stars: ✭ 44 (-42.86%)
Mutual labels:  r-language
learning R
List of resources for learning R
Stars: ✭ 32 (-58.44%)
Mutual labels:  r-programming
papeR
A toolbox for writing Sweave or other LaTeX-based papers and reports and to prettify the output of various estimated models.
Stars: ✭ 26 (-66.23%)
Mutual labels:  r-language
Kaggle
Kaggle Kernels (Python, R, Jupyter Notebooks)
Stars: ✭ 26 (-66.23%)
Mutual labels:  r-language
R-Learning-Journey
Some of the projects i made when starting to learn R for Data Science at the university
Stars: ✭ 19 (-75.32%)
Mutual labels:  r-language
introducao-analise-de-dados
Minicurso de introdução à análise de dados
Stars: ✭ 20 (-74.03%)
Mutual labels:  r-language
Spark-for-data-engineers
Apache Spark for data engineers
Stars: ✭ 22 (-71.43%)
Mutual labels:  r-language
r-exasol
The EXASOL package for R provides an interface to the EXASOL database.
Stars: ✭ 22 (-71.43%)
Mutual labels:  r-language
Jupyter-Notebooks-Statistic-Walk-Throughs-Using-R
Jupyter notebooks with examples of statistical methods and analyses using R.
Stars: ✭ 21 (-72.73%)
Mutual labels:  r-programming
autumn
autumn: Fast, Modern, and Tidy-Friendly Iterative Raking in R.
Stars: ✭ 26 (-66.23%)
Mutual labels:  r-stats
graphsim
R package: Simulate Expression data from igraph network using mvtnorm (CRAN; JOSS)
Stars: ✭ 16 (-79.22%)
Mutual labels:  r-stats
GCModeller
GCModeller: genomics CAD(Computer Assistant Design) Modeller system in .NET language
Stars: ✭ 25 (-67.53%)
Mutual labels:  r-language
nicar tworkshop
Slides for #NICAR18 workshop on collecting and analyzing Twitter data
Stars: ✭ 23 (-70.13%)
Mutual labels:  r-language

Useful - Useless R functions - UUR

UUR is useful, yet useless set of custom R functions using {base} for your everyday R use. That's it :-) And nothing more.

Feature Summary

Cloning the repository

You can follow the steps below to clone the repository.

git clone https://github.com/tomaztk/Useless_R_functions.git

Quickstart

  1. Clone the repository
  2. Start using any of the functions e.g. IsItFriday13()
  3. Explore and enjoy!
# non-deterministic
IsItFriday13 <- function(){
  #da <- "2020-11-13"
  da <- Sys.Date()
  rn <- as.POSIXlt(da)$wday
  d <- as.POSIXlt(da)$mday 
  
  if (rn == 5 & d == 13){
      print("It is a Friday the 13th!")
  } else {
      print("Not a Friday 13th!")
    }
  }  

IsItFriday13()

Contributors and co-authors

Thanks to these wonderful community people making and helping this useless R functions better. Contributions of any kind is highly appreciated!

Riccardo Porreca
Riccardo Porreca

retooooo
retooooo

mrdwab
mrdwab

Contact

Feel free to get in touch for new useful-useless functions.

Gallery (from blog)

Vignettes

General examples

ToDo

  • Possibly change some functionalities to work properly on UNIX / WIN machines
    • x11() and CLI export
  • A vignette finished; write proper feature details!
  • Create useless R package.
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].