Is there anyway to offset the facet labels from the axis labels? I have a plot that is fairly tall and needed to label both.
Ex:
Sample code:
Plot.plot({
grid: true,
marginRight: 60,
facet: {label: null},
x: { axis: 'both'},
marks: [
Plot.frame(),
Plot.dot(penguins.filter(d=>d.species==='Adelie'), {
x: "culmen_length_mm",
y: "culmen_depth_mm",
fx: "sex",
fy: "species"
})
]
})
Thanks!
Steve