These functions allow users to add and delete nodes and their attributes:
add_nodes() adds an additional number of nodes to network data.
delete_nodes() deletes nodes from network data.
add_node_attribute(), mutate(), or mutate_nodes() offer ways to add a vector of values to a network as a nodal attribute.
rename_nodes() and rename() rename nodal attributes.
bind_node_attributes() appends all nodal attributes from one network to another, and join_nodes() merges all nodal attributes from one network to another.
filter_nodes() subsets nodes based on some nodal attribute-related logical statement.
Note that while add_*()/delete_*() functions operate similarly as comparable {igraph} functions, mutate*(), bind*(), etc work like {tidyverse} or {dplyr}-style functions.