Does chart_Series() work with logarithmic axis?
问题 Is there a way to produce logarithmic y-axis with chart_Series() ? I am using the experimental chart_Series() rather than the chartSeries() method in quantmod , because it is more convenient when adding additional lines to the plot. library(quantmod) POWR <- getSymbols("POWR", auto.assign=FALSE) # the following attempts did not produce logarithmic axis for y chart_Series(POWR, log.scale=TRUE) # like in chartSeries() chart_Series(POWR, log="y") # like in plot.default() From a quick look into