Displaying 2 results from an estimated 2 matches for "aaon".
Did you mean:
aan
2011 Jul 05
1
hash table access, vector access &c
...quot;ysmd.csv",header=TRUE);
ysmd.table <- hash();
for (i in 1:length(ysmd$X.stock)) ysmd.table[ysmd$X.stock[i]] <- ysmd[i,];
the first column ("X.stock") is a string (factor):
> ysmd$X.stock[[100]]
[1] FLO
7757 Levels: A AA AA- AAAAA AAC AACC AACOU AACOW AADR AAI AAME AAN AAON ... ZZZZT
when I print ysmd.table, I see the data I expect:
...
ZIOP : ZIOP 402600000 3.03 7.85 707694 6.3717
ZIP : ZIP 794900000 23.53 31.5 677046 23.2508
ZIPR : ZIPR 47100000 2.28 3.5 21865 2.4058
ZIV : ZIV -1 12.2987 17.3862 37455 16.6068
ZIXI : ZIXI 254900000 2.1 4.88 905849 3.5146
....
2011 Jun 18
1
Trouble with Paste and Quotes and List Objects
...a number of objects, each of them financial
statement data from quantmod (although I don't think that knowledge of
quantmod is necessary to help with this problem).
> str(listfinobj)
chr [1:4815] "A.f" "AA.f" "AACC.f" "AAME.f" "AAN.f" "AAON.f" "AAP.f"
"AAPL.f" "AAT.f" "AATI.f" "AAU.f" ...
I can easily pick out the 3rd object in this list.
> listfinobj[[3]]
[1] "AACC.f"
Each of the .f objects has a mildly complicated structure (partial results
shown below).
> str(...