Displaying 2 results from an estimated 2 matches for "allpart".
2008 Sep 02
1
R Newbie: quantmod and zoo: Warning in rbind.zoo(...) : column names differ
...part2 <- read.zoo("USDEUR", header=T)
print (dimnames(part2)) # dinames or attributes
part3<-getSymbols(Symbols="USD/EUR", src="oanda", from="2008-01-21",
to="2008-01-31", auto.assign=F, return.class="zoo")
print(dimnames(part3))
allpart <- c(part2, part3)
cat ("-----allparts----\n")
print(dimnames(allpart))
write.zoo (allpart, "USDEUR.all", col.names=T)
</code>
I am not sure how to handle this, please kindly provide some pointer.
Thanks and Regards
-Aval.
2012 Jan 18
4
R-Help
I am trying to create a frequency distribution and I am a bit confused.
Here are the commands I have entered:
> data <- read.csv(file="40609_sortedfinal.csv",head=TRUE,sep=",")
> NumberOfActionsByStatus = data$STATUS
> NumberOfActionsByUser = data$ETS_LOGIN
> NumberOfBidOffer = data$BID_OFFER
> NumberOfActionsByUser.freq = table(NumberOfActionsByUser)
>