gpt4 book ai didi

r - 使用 rCharts 和 dimplejs 正确显示 x 标签

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

嗨,我用 rCharts 画了一张图使用dimple javascript 库,但我在x 标签显示不正确时遇到了一些麻烦,我尝试使用setBoundssetMargins没有任何成功。欢迎任何帮助!谢谢

# my data (I put all because with less data there's no problem : x labels appears horizontally)
structure(list(date = c("2014-01-01", "2014-01-02", "2014-01-03",
"2014-01-04", "2014-01-05", "2014-01-06", "2014-01-07", "2014-01-08",
"2014-01-09", "2014-01-10", "2014-01-11", "2014-01-12", "2014-01-13",
"2014-01-14", "2014-01-15", "2014-01-16", "2014-01-17", "2014-01-18",
"2014-01-19", "2014-01-20", "2014-01-21", "2014-01-22", "2014-01-23",
"2014-01-24", "2014-01-25", "2014-01-26", "2014-01-27", "2014-01-28",
"2014-01-29", "2014-01-30"), value = c(198L, 391L, 353L, 176L,
143L, 544L, 497L, 553L, 572L, 492L, 165L, 179L, 452L, 687L, 578L,
561L, 529L, 182L, 191L, 494L, 515L, 592L, 576L, 598L, 203L, 199L,
577L, 586L, 588L, 345L), date2 = c("mer. 01", "jeu. 02", "ven. 03",
"sam. 04", "dim. 05", "lun. 06", "mar. 07", "mer. 08", "jeu. 09",
"ven. 10", "sam. 11", "dim. 12", "lun. 13", "mar. 14", "mer. 15",
"jeu. 16", "ven. 17", "sam. 18", "dim. 19", "lun. 20", "mar. 21",
"mer. 22", "jeu. 23", "ven. 24", "sam. 25", "dim. 26", "lun. 27",
"mar. 28", "mer. 29", "jeu. 30")), .Names = c("date", "value",
"date2"), row.names = c(NA, -30L), class = "data.frame")

# the graph
library(rCharts)
d1 <- dPlot(
value ~ date2,
data = x,
type = 'line'
)
d1$xAxis(orderRule="date")
d1

最佳答案

解决了 !

d1 <- dPlot(
value ~ date2,
data = x,
type = 'line',
# Add bounds here
bounds = list(x=70,y=10,height=320,width=500)
)
d1$xAxis(orderRule="date")
d1

关于r - 使用 rCharts 和 dimplejs 正确显示 x 标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22045397/

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