All Projects → mine-cetinkaya-rundel → Errormoji

mine-cetinkaya-rundel / Errormoji

®️ errors, in emoji

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to Errormoji

Datascience Box
Data Science Course in a Box
Stars: ✭ 629 (+3831.25%)
Mutual labels:  data-science, education, rstats
Elastic
R client for the Elasticsearch HTTP API
Stars: ✭ 227 (+1318.75%)
Mutual labels:  data-science, rstats
Climate Change Data
🌍 A curated list of APIs, open data and ML/AI projects on climate change
Stars: ✭ 195 (+1118.75%)
Mutual labels:  data-science, rstats
Targets
Function-oriented Make-like declarative workflows for R
Stars: ✭ 293 (+1731.25%)
Mutual labels:  data-science, rstats
Awesome Computer Science Opportunities
An awesome list of events and fellowship opportunities for Computer Science students
Stars: ✭ 2,445 (+15181.25%)
Mutual labels:  data-science, education
Collapse
Advanced and Fast Data Transformation in R
Stars: ✭ 184 (+1050%)
Mutual labels:  data-science, rstats
teach-r-online
Materials for the Teaching statistics and data science online workshops in July 2020
Stars: ✭ 52 (+225%)
Mutual labels:  education, rstats
Drake
An R-focused pipeline toolkit for reproducibility and high-performance computing
Stars: ✭ 1,301 (+8031.25%)
Mutual labels:  data-science, rstats
Dataexplorer
Automate Data Exploration and Treatment
Stars: ✭ 362 (+2162.5%)
Mutual labels:  data-science, rstats
Metaflow
🚀 Build and manage real-life data science projects with ease!
Stars: ✭ 5,108 (+31825%)
Mutual labels:  data-science, rstats
Awesome R
A curated list of awesome R packages, frameworks and software.
Stars: ✭ 4,858 (+30262.5%)
Mutual labels:  data-science, rstats
Datasets For Good
List of datasets to apply stats/machine learning/technology to the world of social good.
Stars: ✭ 174 (+987.5%)
Mutual labels:  data-science, education
Pzad
Курс "Прикладные задачи анализа данных" (ВМК, МГУ имени М.В. Ломоносова)
Stars: ✭ 160 (+900%)
Mutual labels:  data-science, education
Observations
Tools for loading standard data sets in machine learning
Stars: ✭ 190 (+1087.5%)
Mutual labels:  data-science, education
Ghactions
GitHub actions for R and accompanying R package
Stars: ✭ 159 (+893.75%)
Mutual labels:  data-science, rstats
Dash
Analytical Web Apps for Python, R, Julia, and Jupyter. No JavaScript Required.
Stars: ✭ 15,592 (+97350%)
Mutual labels:  data-science, rstats
Ntds 2017
Material for the EPFL master course "A Network Tour of Data Science", edition 2017.
Stars: ✭ 61 (+281.25%)
Mutual labels:  data-science, education
R Text Data
List of textual data sources to be used for text mining in R
Stars: ✭ 85 (+431.25%)
Mutual labels:  data-science, rstats
Learn Something Every Day
📝 A compilation of everything that I learn; Computer Science, Software Development, Engineering, Math, and Coding in General. Read the rendered results here ->
Stars: ✭ 362 (+2162.5%)
Mutual labels:  data-science, education
Moderndive book
Statistical Inference via Data Science: A ModernDive into R and the Tidyverse
Stars: ✭ 527 (+3193.75%)
Mutual labels:  data-science, rstats

😤 ➡️ 🤣

Errors can be frustrating, but could they also be fun?

This repo is inspired by a random tweet of mine which made me realize that there are others out there who enjoy emoji puzzles.

Deciphering errors can be difficult and frustrating, but maybe seeing them in emoji form would help lighten things a bit?

Note that I'm not suggesting we replace R errors with emojis (that might make them even more frustrating!), but I can see a venue for these in blog posts, class notes, talks, etc.

The translations are organized in two groups:

  • verbose = FALSE: without any explanation
  • verbose = TRUE: some explanation on where the error comes from, why it might be happening, and how it can be resolved

If you have suggestions for R error/emoji translations to add or want to request a translation, please see the contributing guidelines.

Hello.

Translations

verbose = FALSE

  • 📦/📛🌌 🚚 ☹️
    Package or namespace load failed

  • 🚶‍♂️⬅️🚪 🔱 👑 1️⃣
    Exited with status 1

  • 💡 ⌨️ 𝍏 ❌🔪
    Object of type closure is not subsettable

  • 🗂(🗂, ®️✝️) ❌📭🖇
    Error in file(file, “rt”): cannot open the connection

  • 🌫️🏛️🔘
    Undefined columns selected

  • ❌🔢 🗣 ➡️ 0️⃣1️⃣ 👩‍⚕️
    Non-numeric argument to binary operator

  • 🤷‍♀️💰 👍/👎 🍞
    Missing value where TRUE/FALSE needed

  • 💲👩‍⚕️🤕⚛️↗️
    $ operator is invalid for atomic vectors

verbose = TRUE

  • 💡❌🕵️‍♀️
    Object not found

    • ❓: Object not defined in the active workspace.
    • ✅: If working in the console, check your environment tab, and if the object is not listed there, define it. If working in an R Markdown file, define the object prior to the code chunk resulting in this error.
  • 👩‍⚕️🔪 🚫 ❌ 🏃‍↔️ 📖
    Operation not allowed without an active reactive context

    • 📦: shiny
    • ❓: You are trying to access a "reactive" element inside the Shiny server function, but outside any of the reactive functions such as renderTable() or renderPlot() etc.
    • ✅: Wrap it inside a reactive() or place inside a render*() function.
  • 🗺 ❗️ 🐣 🎨
    ⏩ 😦 ➕ 😄 ❓
    Error: mapping must be created by aes()
    Did you use %>% instead of +?

    • 📦: ggplot2
    • ❓: You are using the pipe operator with ggplot()
    • ✅: Replace ggplot() %>% geom_*() with ggplot() + geom_*()
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].