我有一个colnames
UTF-8 格式的俄语数据帧。我使用 进行了一些线性建模purrr
并进行了探索coefficients
,broom::tidy()
然后我收到了一个具有混合列名称编码的数据框,我无法将其传递给girafe()
,它因错误而崩溃。
我试过使用stringi::stri_enc_toutf8(colnames(df))
: 没有帮助
`Encoding(colnames(df)) <- "UTF-8" 没有帮助
rem %>%
group_by(МАГАЗИН, `ТИП МАГАЗИНА`, Дата) %>%
summarise(`Количество, шт` = sum(`Количество, шт`, na.rm = TRUE)) %>%
select(МАГАЗИН, `ТИП МАГАЗИНА`, `Количество, шт`, Дата) %>%
group_by(`ТИП МАГАЗИНА`, МАГАЗИН) %>%
nest() %>%
mutate(lm = map(data, ~lm(formula = `Количество, шт` ~ Дата, data = .x)),
fit = map(lm, tidy)) %>%
unnest(fit) %>%
filter(term != "(Intercept)") %>%
colnames() %>% Encoding()
[1] "UTF-8" "UTF-8" "unknown" "unknown" "unknown" "unknown" "unknown"
>
而且,当我绘制它时,我得到了这个:
girafe_options(
girafe( code = print(
rem %>%
group_by(МАГАЗИН, `ТИП МАГАЗИНА`, Дата) %>%
summarise(`Количество, шт` = sum(`Количество, шт`, na.rm = TRUE)) %>%
select(МАГАЗИН, `ТИП МАГАЗИНА`, `Количество, шт`, Дата) %>%
group_by(`ТИП МАГАЗИНА`, МАГАЗИН) %>%
nest() %>%
mutate(lm = map(data, ~lm(formula = `Количество, шт` ~ Дата, data = .x)),
fit = map(lm, tidy)) %>%
unnest(fit) %>%
filter(term != "(Intercept)") %>%
mutate(term = "Дата") %>%
ggplot(aes(x = reorder(МАГАЗИН, estimate), y = estimate,col = `ТИП МАГАЗИНА` , shape = `ТИП МАГАЗИНА` )) +
geom_point_interactive(aes(tooltip = paste("Изменение: ", round(estimate, 6), "<br>",
"Среднеквадратическое отклонение: ", round(std.error, 6), "<br>",
"ВВероятность случайного изменения: ", round(p.value, 6)))) +
geom_errorbar(aes(x = reorder(МАГАЗИН, estimate), ymin = estimate - (estimate + 1.96*std.error),
ymax = estimate + (estimate + 1.96*std.error)))+
geom_segment(aes(y = 0, yend = estimate, xend = МАГАЗИН)) +
geom_hline(yintercept = 0, col = "black", size = 0.4, linetype = "dashed")+
coord_flip() +
theme_light() +
theme(text = element_text(size = 16)) +
theme(axis.text.x = element_text(angle = 90, vjust = 1)) +
theme(legend.position='bottom',
legend.justification='left',
legend.direction='horizontal')+
labs(title = "Выручка и количество проданных товаров Реми и Экономыча",
subtitle = "по номенклатуре",
y = "",
x = "Номенклатура")),height_svg = 2, width_svg = 16),opts_tooltip(use_fill = TRUE), opts_zoom(max = 5))
Error in doc_parse_file(con, encoding = encoding, as_html = as_html, options = options) :
Input is not proper UTF-8, indicate encoding !
Bytes: 0xC8 0xE7 0xEC 0xE5 [9]
在模拟数据集上:
x <- seq.Date(as.Date("2010-01-01"), as.Date("2018-12-01"), "months")
y <- c(arima.sim(model = list(order = c(2,1,1), ar = c(1.5, -0.75), ma = 15), n = 107, sd = 15 ),
arima.sim(model = list(order = c(2,1,1), ar = c(1.5, -.95), ma = 11), n = 107, sd = 15 ),
arima.sim(model = list(order = c(4,0,1), ar = c(0.8, -.75, 0.6, 0.3), ma = 32), n = 108, sd = 10))
df <- data.frame(Дата = rep(x,3), y = y, Группа = c(rep("G1", 108), rep("G2", 108),rep("G3", 108)))
一切都很好,但所有的编码都是一样的
stringi::stri_enc_mark(colnames(df))
[1] "native" "ASCII" "native"
如何更改编码以便绘制它?