-8
>require(quantmod)   
>setSymbolLookup(SDB=list(name="000001.sz",src="yahoo"))   
>getSymbols("SDB",from="2010-01-01",to="2010-01-10") 
> SDB

           000001.SZ.Open 000001.SZ.High 000001.SZ.Low 000001.SZ.Close
2010-01-04          24.52          24.58         23.68           23.71
2010-01-05          23.75          23.90         22.75           23.30
2010-01-06          23.25          23.25         22.72           22.90
2010-01-07          22.90          23.05         22.40           22.65
2010-01-08          22.50          22.75         22.35           22.60

2種類の出力が必要です:
1。

> SDB
      date           open           high           low           close
2010-01-04          24.52          24.58         23.68           23.71
2010-01-05          23.75          23.90         22.75           23.30
2010-01-06          23.25          23.25         22.72           22.90
2010-01-07          22.90          23.05         22.40           22.65
2010-01-08          22.50          22.75         22.35           22.60

2.2。

> SDB
      date           open           high           low           close
1 2010-01-04          24.52          24.58         23.68           23.71
2 2010-01-05          23.75          23.90         22.75           23.30
3 2010-01-06          23.25          23.25         22.72           22.90
4 2010-01-07          22.90          23.05         22.40           22.65
5 2010-01-08          22.50          22.75         22.35           22.60

どうすれば入手できますか?

4

1 に答える 1

2

これがあなたが望むものの亀裂です。あなたの問題は、SDBの保存方法から始まると思います。オブジェクトがどのように見えるかを確認するには、 を使用しますstrxtsオブジェクトが何であるかはわかりませんが、使用すると、必要なstrピースを引き出す方法を決定するのに役立ちます.

str(SDB)
> str(SDB)
An ‘xts’ object from 2010-01-04 to 2010-01-08 containing:
  Data: num [1:5, 1:6] 24.5 23.8 23.2 22.9 22.5 ...
 - attr(*, "dimnames")=List of 2
  ..$ : NULL
  ..$ : chr [1:6] "000001.SZ.Open" "000001.SZ.High" "000001.SZ.Low" "000001.SZ.Close" ...
  Indexed by objects of class: [Date] TZ: 
  xts Attributes:  
List of 4
 $ tclass : chr [1:2] "POSIXct" "POSIXt"
 $ tzone  : chr ""
 $ src    : chr "yahoo"
 $ updated: POSIXct[1:1], format: "2012-07-29 08:33:57"

これで作業を開始できます。

#grab first 4 columns and make it into a dataframe
NEW <- data.frame(SDB[, 1:4])

#turn the rownames to a column
NEW <- data.frame(date=rownames(NEW), NEW)

#remove the junk and lowercases the first letter
colnames(NEW) <- sub('^(\\w?)', '\\L\\1', 
    gsub("X000001.SZ.", "", colnames(NEW)), perl=T)  

#make rownames integer
rownames(NEW)<- NULL

#the two ways you wanted it to look
NEW
print(NEW ,row.names = FALSE) 
于 2012-07-29T12:48:52.467 に答える