Learn R Programming

taxonomizr (version 0.10.6)

lastNotNa: Return last not NA value

Description

A convenience function to return the last value which is not NA in a vector

Usage

lastNotNa(x, default = "Unknown")

Value

a single element from the last non NA value in x (or the default)

Arguments

x

a vector to look for the last value in

default

a default value to use when all values are NA in a vector

Examples

Run this code
lastNotNa(c(1:4,NA,NA))
lastNotNa(c(letters[1:4],NA,'z',NA))
lastNotNa(c(NA,NA))

Run the code above in your browser using DataLab