rCharts nvd3 库强制滴答

rCharts nvd3 library force ticks

我想强制所有刻度线和刻度标签沿轴出现在 nvd3 库的 rCharts nPlot 中。我尝试了几种方法都没有成功。

这是默认行为:

df <- data.frame(x = 1:13, y = rnorm(13))
library(rCharts)
n <- nPlot(data = df, y ~ x, type = 'lineChart')
n$yAxis(showMaxMin = FALSE)

我想让 1:13 中的所有数据沿 x 轴显示。

最终,我有自定义刻度线,我想用以下替换显示 equally-spaced

n$xAxis(tickFormat = "#! function (x) { 
    ticklabels = ['0-1000', '1000-1500', '1500-1700', '1700-1820', '1820-1913', 
        '1913-1950', '1950-1970', '1970-1990', '1990-2012', '2012-2030', 
        '2030-2050', '2050-2070', '2070-2100']
        return ticklabels[x-1];
} !#")

我希望清楚为什么我要打印所有刻度线和标签(并且间距相等)。

为了给成品一个概念,这里是 ggplot2 印象:

library(ggplot2)
df <- data.frame(x = c('0-1000', '1000-1500', '1500-1700', '1700-1820', '1820-1913', 
    '1913-1950', '1950-1970', '1970-1990', '1990-2012', '2012-2030', '2030-2050', 
    '2050-2070', '2070-2100'), y = rnorm(13), z = "group1")
ggplot(data = df, aes(x = x, y = y, group = z)) + geom_line()

根据我在这里和那里找到的几个建议,我尝试了以下几种方法:都没有用。

根据我对文档的阅读,我认为这可行:

n$xAxis(tickFormat = "#! function (x) {
  return [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13][x-1];
} !#")

我也试过了,机会难得:

n$xAxis(ticks = 13)

我也尝试过结合 tickValuestickFormat 但没有成功。

我也想过写一个脚本,但是我对nvd3库的理解还是不够。

n$setTemplate(afterScript = 
    "<script>
        var chart = nv.models.lineChart();
        var newAxisScale = d3.scale.linear();
            .range(d3.extent(chart.axes[0]._scale.range()))
            .domain([1, d3.max(chart.axes[0]._scale.domain())])
        chart.axes[0].shapes.call(
            d3.svg.axis()
            .orient('bottom')
            .scale(newAxisScale)
            .ticks(13)
            //.tickValues()
            //.tickFormat(d3.format())
        ).selectAll('text')
          .attr('transform','')
    </script>"
)

None 个在控制台中报告错误,但 none 个修改了上面第一个图的外观。

事实证明我没有正确设置 tickValues,因为我的语法与 tickFormat 混淆了。这是一个 rCharts 解决方案。对应的d3nvd3解应该很容易推导出来。

n <- nPlot(data = df, y ~ x, type = 'lineChart')
n$yAxis(showMaxMin = FALSE)
n$addParams(height = 500, width = 1000)
n$xAxis(tickValues = "#! function (x) {    
    tickvalues = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13];
    return tickvalues;
} !#")
n$xAxis(tickFormat = "#! function (x) {
    tickformat = ['0-1000', '1000-1500', '1500-1700', '1700-1820', '1820-1913', 
       '1913-1950', '1950-1970', '1970-1990', '1990-2012', '2012-2030', '2030-2050', 
       '2050-2070', '2070-2100'];
    return tickformat[x-1];
} !#")
n

请注意代码如何在 tickValues 中包含 tickvalues 而在 tickFormat 中包含 tickformat[x-1]