rCharts nvd3库强制滴答声

时间:2015-01-15 18:48:49

标签: r d3.js nvd3.js rcharts

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

这是默认行为:

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

enter image description here

我希望1:13中的所有数据都沿x轴显示。

最终,我有自定义标记我希望显示等间距以下替换:

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];
} !#")

enter image description here

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

为了了解最终产品,这里有一个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()

enter image description here

根据我在这里和那里找到的一些建议,以下是我尝试过的几件事:既不工作也没有。

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

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>"
)

这些都没有在控制台中报告错误,但都没有修改上面第一个图的外观。

1 个答案:

答案 0 :(得分:3)

事实证明我没有正确设置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

请注意代码tickvaluestickValues的{​​{1}} tickformat[x-1] tickFormat {。}}。

enter image description here