1

私はこのスクリプトファイルを持っています:

library(fBasics) # Load the package fBasics.
da=read.table("C:\\Users\\jose\\Tese\\Analysis of Financial Time Series\\dibm3dx7008.txt",header=T) # Load the data.

dim(da) # Find size of the data: 9845 rows and 5 columns.
da[1,] # See the first row of the data

ibm=da[,2] # Obtain IBM simple returns
sibm=ibm*100 # Percentage simple returns
basicStats(sibm) # Compute the summary statistics

そして、パワーポイントから実行したいです。パワーポイントでVBAを試しましたが、誰か助けてくれますか

4

2 に答える 2

1

あなたの質問に対する直接的な回答ではありませんが、ビーマー スライドで Sweave (または Knitr) を使用することを検討してください。

于 2012-10-09T01:02:25.053 に答える