Welcome, Guest. Please Login
Algorithmic Trading Forum
 
  HomeHelpSearchLogin  
 
Pages: 1
Send Topic Print
R error: formal argument "col" matched by multiple (Read 40402 times)
Algo Designer
Forum Administrator
*****
Offline

Nihil desperandum

Posts: 182
Sydney
Gender: male
R error: formal argument "col" matched by multiple
01/21/12 at 11:19:41
 
After updating xts package in R, I encountered the following problem:

Code:
> plot(equity, col = "blue")
Error in axis(1, at = xycoords$x, labels = FALSE, col = "#BBBBBB", ...) :
  formal argument "col" matched by multiple actual arguments
 



Here is a workaround:

Code:
> plot(equity)
> lines(equity, col = "blue")
 


Back to top
 
 

"Success is the sum of small efforts, repeated day in and day out..."
  IP Logged
Pages: 1
Send Topic Print