Write csv file for cyrillic MS office

write_csv2_cp1251(x, path)

Arguments

x

data frame

path

path to file

Value

results of write operations

Details

Write csv file for cyrillic MS office Uses ";" as separator, CP1251 encoding, no raw names.

Examples

test = dplyr::tibble(x = c("Привет", "Пока"), z = c(1, 2)) write_csv2_cp1251(test, path = tempfile())