Delete a vector on an axis.
Examples
# Mirrors writers.jl jldoctest at line 618.
m <- example_metacells_daf()
has_vector(m, "type", "color") # TRUE
#> [1] TRUE
delete_vector(m, "type", "color")
has_vector(m, "type", "color") # FALSE
#> [1] FALSE