Save an SWD object as csv file.
Arguments
- swd
SWD object.
- file_name
character. The name of the file in which to save the object, see details.
Details
The
file_name
argument should include the extension (i.e. my_file.csv).If
file_name
is a single name the function saves the presence absence/background locations in a single file, adding the column pa with 1s for presence and 0s for absence/background locations. Iffile_name
is a vector with two names, it saves the object in two files: the first name is used for the presence locations and the second for the absence/background locations.
Examples
# Acquire environmental variables
files <- list.files(path = file.path(system.file(package = "dismo"), "ex"),
pattern = "grd",
full.names = TRUE)
predictors <- terra::rast(files)
# Prepare presence and background locations
p_coords <- virtualSp$presence
bg_coords <- virtualSp$background
# Create SWD object
data <- prepareSWD(species = "Virtual species",
p = p_coords,
a = bg_coords,
env = predictors,
categorical = "biome")
#> ℹ Extracting predictor information for presence locations
#> ✔ Extracting predictor information for presence locations [36ms]
#>
#> ℹ Extracting predictor information for absence/background locations
#> ✔ Extracting predictor information for absence/background locations [62ms]
#>
if (FALSE) {
# The following commands save the output in the working directory
# Save the SWD object as a single csv file
swd2csv(data,
file_name = "train_data.csv")
# Save the SWD object in two separate csv files
swd2csv(data,
file_name = c("presence.csv", "absence.csv"))}