I created a boxplot through ObservableHQ but would like to know how I can edit the x and y-axis labels. Here is the code I’m using:
Plot.plot({
x: {
grid: true,
inset: 6,
},
marks: [
Plot.boxX(data, {
x,
y: 'instance',
fill: '#0d6efd',
strokeWidth: 3,
}),
Plot.boxX(userData, {
x,
y: 'instance',
fill: 'yellow',
strokeWidth: 3,
}),
],
})