You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In functions such as plotSpatialFeature, data from different samples are plotted with facet_wrap. I can't use scales = "free" with geom_sf. So I got this kind of problem which doesn't look good:
I want to adjust the size of the facets according to the size of the bounding box. I still want all panels to have the same scale and the same scale in x and y, so it's not entirely free. facet_grid with space = "free" does not work with geom_sf either. The culprit is coord_sf. I don't need the CRS and reprojection stuff here. So I suppose I should write my own internal variant of geom_sf that allows for flipping the y axis to be consistent with other packages (see pachterlab/SpatialFeatureExperiment#47) and can allow for something like space = "free" but not scales = "free".
The text was updated successfully, but these errors were encountered:
In functions such as
plotSpatialFeature
, data from different samples are plotted withfacet_wrap
. I can't usescales = "free"
withgeom_sf
. So I got this kind of problem which doesn't look good:I want to adjust the size of the facets according to the size of the bounding box. I still want all panels to have the same scale and the same scale in x and y, so it's not entirely free.
facet_grid
withspace = "free"
does not work withgeom_sf
either. The culprit iscoord_sf
. I don't need the CRS and reprojection stuff here. So I suppose I should write my own internal variant ofgeom_sf
that allows for flipping the y axis to be consistent with other packages (see pachterlab/SpatialFeatureExperiment#47) and can allow for something likespace = "free"
but notscales = "free"
.The text was updated successfully, but these errors were encountered: