I want to plot a line chart using echarts4r, and the xAxis's label need to have the duplicated values. My packageVersion of echarts4r is 0.3.2.
And my codes as the follows:
library(echarts4r)
library(magrittr)
library(data.table)
dt <- data.table(
x_label = c('A', 'A', 'A', 'D', 'D', 'M', 'A'),
x_value = c('a', 'b', 'c', 'd', 'e', 'f', 'g'),
y = 8:14
)
p <- e_chart(dt, x_value)
p <- e_x_axis(p, show = FALSE, index = 0, position = 'top', data = purrr::map(seq_len(nrow(dt)), ~{
list(value = dt[.x, x_value])
})) # The show argument FALSE can not be worked
p <- e_line_(p, 'y', x_index = 0)
p <- e_x_axis(p, show = TRUE, position = 'bottom', data = purrr::map(seq_len(nrow(dt)), ~{
list(value = dt[.x, x_label])
}), index = 1)
p <- e_line_(p, 'y', x_index = 1)
p
But the top xAxis label can not be hide, I don't know why. Does anybody tell me how to custom the xAxis's label in a line chart with duplicated values ?
Or I don't know how to convert this options to R code:
option = {
title: {
text: 'ECharts entry example'
},
tooltip: {},
legend: {
data:['Sales']
},
xAxis: [
{
position: "bottom",
data: ["shirt","cardign","chiffon shirt","pants","heels","socks"]
},
{
position: "bottom",
data: ["group1", "", "", "group2", "", ""],
interval: 1,
axisLine: {
show: false
},
axisTick: {
alignWithLabel: false,
length: 40,
align: "left",
interval: function(index, value) {
return value ? true : false;
}
},
axisLabel: {
margin: 30
},
splitLine: {
show: true,
interval: function(index, value) {
return value ? true : false;
}
}
}
],
yAxis: {},
series: [{
name: 'Sales',
type: 'bar',
data: [5, 20, 36, 10, 10, 20]
}]
};
I just found your question, you may no longer need this answer, but perhaps someone else will benefit from it.
You were looking for the function
e_list()
fromecharts4r
. This method does not sort or aggregate for you. However, you can use R or JS functions.In the code, I've only sorted by
x_label
since all ofx_value
is unique.If you want to see the JS plot you provided in R code, there are only a few steps to take.
option
(that's a keyword in R)Here's the code. I kept the same spacing as in the JSON you provided. There are two notable editions to make this work, for both axes, I added the type. (You'll see comments in the code about the changes from the JSON.)
Keep in mind that if your view (i.e., RStudio viewer pane, browser, etc.) is too narrow, in which the labels in the plot would overlap, some of the labels are hidden. When in doubt, change the size of your view.
This is an example of what you might see if the view is too narrow.