terra (version 1.6-17)

vector-attributes: Get or replace attribute values of a SpatVector

Description

Replace values of a SpatVector.

Usage

# S4 method for SpatVector
$(x, name)

# S4 method for SpatVector $(x, name)<-value

Value

vector

Arguments

x

SpatVector

name

character (field name) or numeric (column number

value

vector of new values

See Also

values

Examples

Run this code
f <- system.file("ex/lux.shp", package="terra")
v <- vect(f)
v$NAME_1
v$NAME_1[3] <- "my name"
v$ID_1 <- LETTERS[1:12]
v$new <- sample(12)
values(v)

v[2,2] <- "hello"
v[1,] <- v[10,]
v[,3] <- v[,1]
v[2, "NAME_2"] <- "terra"
head(v, 3)

Run the code above in your browser using DataLab