gpt4 book ai didi

r - 除了 texplot 之外,如何在 R 中将文本转换为图像?

转载 作者:行者123 更新时间:2023-12-02 04:26:59 24 4
gpt4 key购买 nike

我在 R 中进行了线性回归,并提取了显着变量及其 p 值。我需要导入要在 Power BI 中导入的那些变量。但是,Power BI 仅支持 R 中的视觉效果,并且回归结果为文本形式。有什么方法可以将其转换为图像,就像 R 中通常弹出的绘图一样?谢谢。

编辑:Power BI 不支持 gplots 包。可以在此处找到支持的软件包 https://powerbi.microsoft.com/en-us/documentation/powerbi-service-r-visuals/#supported-packages

最佳答案

这是您问题的答案以及可重现的示例。您可以使用 gplots 包的 textplot 函数。

library(gplots) # For the textplot function
library(tidyverse) # Should be a part of all data science workflows
library(broom) # Gives us the tidy function

# Generate some dummy data for the regression
dummy_data <- data.frame(x = rnorm(327), y = rnorm(327))

# Run the regression and extract significant variables
reg <- lm(y ~ x, data = dummy_data) %>%
tidy() %>%
filter(term != "(Intercept)") %>%
filter(p.value < 1.01) %>% # Change this to your desired p value cutoff
select(term)

# Plot the significant variables as an image
textplot(reg$term)

如果您想让 R 与 PowerBI 对话,还有更好的选择。 Microsoft 一直在越来越多的产品中构建对 R 的支持,PowerBI 现在拥有强大的 R 集成。看看:https://powerbi.microsoft.com/en-us/documentation/powerbi-desktop-r-scripts/

关于r - 除了 texplot 之外,如何在 R 中将文本转换为图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41507564/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com