Igor Alshannikov
Igor Alshannikov
This code should work: ``` data = dict( c = list(range(10)), x = range(10), y = range(10) ) ggplot(data) + geom_point(aes('x', 'y', col='c')) ``` Currently error: > The value of...
When tiles are used with `coord_map`, gaps between tiles are getting bigger in higher latitudes: ``` import numpy as np from lets_plot import * from lets_plot.geo_data import * # %%...
params: `nudge_x, nudge_y` text alignments (hjust, vjust): `inward, outward`
We need to support this ``` position = position_stack(vjust = 0.5) ``` to recreate 'stacked bars' example from here: http://ggplot2.tidyverse.org/reference/geom_text.html
See discussion: https://stackoverflow.com/questions/52554336/plot-the-equivalent-of-correlation-matrix-for-factors-categorical-data-and-mi/56485520#56485520
https://ggplot2.tidyverse.org/reference/geom_text.html#geom-label-
https://ggplot2.tidyverse.org/reference/geom_hex.html
https://patchwork.data-imaginist.com/
Fix tests / fix behavior or remove tests.
At the "Titanic" example nice to use dict: `embark_dict = dict(C='Cherbourg', Q='Cobh', S='Southampton')` as 'breaks' / 'labels' - need to consult ggplot2 docs to figure out which parameter is most...