您好,登錄后才能下訂單哦!
這期內容當中小編將會給大家帶來有關如何使用R語言在SAP Analytics Cloud里繪制各種統計圖表,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
插入一個R visualization:
一定要確保圖形出現這個model的小圖標,代表這個R visualization的模型數據成功綁定之后才能進行下一步操作:
模型綁定成功后,在R script編輯器Environment標簽頁的Data下拉菜單里能看到模型數據。
使用這個SAP Analytics Cloud官方教程里提供的excel文件作為數據源:
https://www.rial-r-visualization/https://www.ontent/uploads/2019/09/R-Script-Plot.txt
# Discription: # Creating a histogram of the log returns, adding the kernel density of the log returns # and the normal density as reference distribution # # Requirements: # ggplot requires a data frame # # Output: # Histogram Plot # library(ggplot2) Simulated_data <- data.frame(Simulated_data) histgg <- ggplot(data = Simulated_data, aes(logreturns)) histgg + geom_histogram(aes(y = ..density..),fill = "lightblue",color = "black", alpha = 0.8, position = "identity") + geom_density(aes(color = "Kernel Density"), size = 1) + stat_function(aes(color = "Normal Distribution"), fun = dnorm, args = list(mean = mean(Simulated_data$logreturns), sd = sd(Simulated_data$logreturns)), size = 1) + ggtitle("Histogram") + theme(panel.grid = element_line(linetype = "dashed", color = "lightgrey"), panel.background = element_rect(fill = "white"), panel.border = element_rect(colour = "black", fill=NA), plot.title = element_text(hjust = 0.5)) + scale_colour_manual("Density", values = c("red", "darkgreen")) + xlab(" ")+ ylab("Frequency")
點擊Execute按鈕,就可以看到R腳本繪制出來的圖形了:
上述就是小編為大家分享的如何使用R語言在SAP Analytics Cloud里繪制各種統計圖表了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。