gpt4 book ai didi

r - R 中使用 rggobi 的交互式图形

转载 作者:行者123 更新时间:2023-12-04 12:31:55 27 4
gpt4 key购买 nike

来自以下xml代码:

<?xml version = "1.0"?>
<Company >
<shareprice>
<timeStamp> 12:00:00.01</timeStamp>
<Price> 25.02</Price>
</shareprice>

<shareprice>
<timeStamp> 12:00:00.02</timeStamp>
<Price> 15</Price>
</shareprice>



<shareprice>
<timeStamp> 12:00:01.025</timeStamp>
<Price> 15.02</Price>
</shareprice>

<shareprice>
<timeStamp> 12:00:01.031</timeStamp>
<Price> 18.25</Price>
</shareprice>



<shareprice>
<timeStamp> 12:00:01.039</timeStamp>
<Price> 18.54</Price>
</shareprice>

<shareprice>
<timeStamp> 12:00:01.050</timeStamp>
<Price> 16.52</Price>
</shareprice>


<shareprice>
<timeStamp> 12:00:02.01</timeStamp>
<Price> 17.50</Price>
</shareprice>

<shareprice>
<timeStamp> 12:00:03.01</timeStamp>
<Price> 25.02</Price>
</shareprice>

<shareprice>
<timeStamp> 12:00:05.02</timeStamp>
<Price> 30</Price>
</shareprice>

<shareprice>
<timeStamp> 12:00:11.025</timeStamp>
<Price> 32.25</Price>
</shareprice>

<shareprice>
<timeStamp> 12:00:12.031</timeStamp>
<Price> 26.05</Price>
</shareprice>

<shareprice>
<timeStamp> 12:00:15.039</timeStamp>
<Price> 18.54</Price>
</shareprice>

<shareprice>
<timeStamp> 12:00:19.050</timeStamp>
<Price> 16.52</Price>
</shareprice>


<shareprice>
<timeStamp> 12:01:02.01</timeStamp>
<Price> 17.50</Price>
</shareprice>
</Company>

并使用以下 R 代码:
library(ggplot2)
library (XML)
test.df <- xmlToDataFrame(file.choose())
test.df
sapply(test.df, class)
test.df$timeStamp <- strptime(as.character(test.df$timeStamp), "%H:%M:%OS")
test.df$Price <- as.numeric(as.character(test.df$Price))
sapply(test.df, class)
options("digits.secs"=3)
summary (test.df)
with(test.df, plot(timeStamp, Price))
sd (test.df$Price)
mean(test.df$timeStamp)
test.df$timeStamp <- test.df[1,"timeStamp"] + cumsum(runif(7)*60)
summary(test.df)
qplot(timeStamp,Price,data=test.df,geom=c("point","line"))
Price <- summary(test.df$Price)
print (Price)

我想创建一个交互式图形,允许用户单击一个点并获取有关该点值的信息(例如,如果值跳跃是一个原因),我希望能够放置此交互式图形在网页上。有人建议使用 GGOBI 来执行此操作,而其他人则表示可以保留在 R 中并使用 rggobi 库。由于我没有这方面的经验,我想我会直接要求一些指示或特定资源的指示(人们可能会花费数年时间在网上搜索却找不到任何东西)

在图表下方,我想打印出价格的摘要。目前,我在 Windows 上的 BATCH 文件中运行代码,它返回 pdf 文件中的图形,但不返回摘要打印。有没有办法设置代码/批处理文件,以便它可以生成交互式图形和摘要?

最佳答案

好吧,对于一些指针:

Rapache

你可以用 Open Flash Chart 画图

另外我发现了这个 link在话题上

HTH

关于r - R 中使用 rggobi 的交互式图形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3269209/

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