Skip to content

Instantly share code, notes, and snippets.

@sergioprates
Last active January 25, 2019 00:09
Show Gist options
  • Save sergioprates/66e42de9018816f1980131525261aa43 to your computer and use it in GitHub Desktop.
Save sergioprates/66e42de9018816f1980131525261aa43 to your computer and use it in GitHub Desktop.
valor.na <- NA
valor.null <- NULL
valor.infinito <- Inf;
valor.menos.infinito <- -Inf
valor.nan <- NaN
vetor.com.null <- c(10,10,10,NULL)
vetor.com.null
valor.nan
# SAÍDA: 10 10 10
# SAÍDA: NaN
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment