1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
|
skip_if_not_installed("httr")
skip_if_not_installed("haven")
skip_if_not_installed("readr")
skip_on_cran()
skip_if_not_installed("curl")
skip_if_offline()
# prepare data set ---------------
data(efc)
d <- data_filter(efc, 1:5)
d$e42dep <- droplevels(d$e42dep)
# SPSS -------------------------------------
test_that("data_write, SPSS", {
skip_if_not_installed("withr")
withr::with_tempfile("tmp", fileext = ".sav", code = {
expect_message(data_write(d, tmp))
d2 <- data_read(tmp, verbose = FALSE)
expect_equal(
to_factor(d, select = c("e16sex", "c172code")),
d2,
ignore_attr = TRUE
)
})
})
test_that("data_write, SPSS, mixed types of labelled vectors", {
skip_if_not_installed("withr")
withr::with_tempfile("tmp", fileext = ".sav", code = {
d <- data.frame(
a = 1:3,
b = letters[1:3],
c = factor(letters[1:3]),
d = as.Date(c("2022-01-01", "2022-02-01", "2022-03-01")),
e = c(TRUE, FALSE, FALSE),
stringsAsFactors = FALSE
)
# Date and Logical cannot be labelled
d$a <- assign_labels(d$a, variable = "First", values = c("one", "two", "three"))
d$b <- assign_labels(d$b, variable = "Second", values = c("A", "B", "C"))
d$c <- assign_labels(d$c, variable = "Third", values = c("ey", "bee", "see"))
expect_message(data_write(d, tmp), regex = "Preparing")
})
})
# Stata -------------------------------------
test_that("data_write, Stata", {
skip_if_not_installed("withr")
withr::with_tempfile("tmp", fileext = ".dta", code = {
data_write(d, tmp, verbose = FALSE)
d2 <- data_read(tmp, verbose = FALSE)
expect_equal(
to_factor(d, select = c("e16sex", "c172code")),
d2,
ignore_attr = TRUE
)
})
})
# csv -------------------------
test_that("data_write, CSV, keep numeric", {
skip_if_not_installed("withr")
withr::with_tempfile("tmp", fileext = ".csv", code = {
data_write(d, tmp)
d2 <- data_read(tmp)
expect_equal(
to_numeric(d, dummy_factors = FALSE, preserve_levels = TRUE),
d2,
ignore_attr = TRUE
)
})
})
test_that("data_write, CSV, convert to factor", {
skip_if_not_installed("withr")
withr::with_tempfile("tmp", fileext = ".csv", code = {
data_write(d, tmp, convert_factors = TRUE)
d2 <- data_read(tmp)
out <- to_factor(d, select = c("e16sex", "c172code"))
out$e16sex <- as.character(out$e16sex)
out$c172code <- as.character(out$c172code)
out$e42dep <- as.numeric(as.character(out$e42dep))
expect_equal(out, d2, ignore_attr = TRUE)
})
})
test_that("data_write, CSV, create labels file", {
skip_if_not_installed("withr")
withr::with_tempfile("tmp", fileext = ".csv", code = {
# file for labels
fpath <- dirname(tmp)
fname <- sub("\\.csv$", "", basename(tmp))
tmp2 <- paste0(fpath, .Platform$file.sep, fname, "_labels.csv")
on.exit(unlink(tmp2))
data(efc)
expect_message(data_write(efc, tmp, save_labels = TRUE))
d <- data_read(tmp2)
expect_identical(d$variable[2], "e16sex")
expect_identical(d$label[2], "elder's gender")
expect_identical(d$labels[2], "1=male; 2=female")
expect_message(data_write(efc, tmp, save_labels = TRUE, delimiter = ";"))
d <- data_read(tmp2)
expect_identical(d$variable[2], "e16sex")
expect_identical(d$label[2], "elder's gender")
expect_identical(d$labels[2], "1=male; 2=female")
})
})
# invalid file type -------------------------
test_that("data_write, no file extension", {
expect_error(data_write(d, "mytestfile"))
expect_error(data_write(d, NULL))
})
# writing character vector works for missing value labels ------------------
test_that("data_write, existing variable label but missing value labels", {
skip_if_not_installed("withr")
withr::with_tempfile("tmp", fileext = ".sav", code = {
d <- data.frame(
a = letters[1:3],
stringsAsFactors = FALSE
)
d$a <- assign_labels(d$a, variable = "First")
# expect message, but no error
expect_message(data_write(d, tmp), regex = "Preparing")
# check if data is really the same
d2 <- data_read(tmp, verbose = FALSE)
expect_identical(d2, d)
})
})
|