我想强制所有刻度标记和刻度标签在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)
我想让
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];
} !#")
我希望很清楚为什么我要打印所有刻度线和标签(并等距排列)。
为了让您对最终产品有所了解,这是
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)
我也尝试将
tickValues
和tickFormat
组合在一起,但没有成功。我还考虑过编写脚本,但是我对
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>"
)
这些都没有在控制台中报告错误,但是它们都没有修改上面第一个图的外观。
最佳答案
事实证明,由于语法与tickValues
混淆,我没有正确设置tickFormat
。这是一个rCharts
解决方案。相应的d3
或nvd3
解决方案应易于推断。
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[x-1]
中具有tickFormat
。 关于rCharts nvd3库强制滴答声,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27970771/