いくつかのプロットを作成しながら、ggplot のジッターに関するドキュメントに目を通していましたが、議論を本当に理解していないことに気付きました。
引数は次のとおりです。
Width: degree of jitter in x direction. Defaults to 40% of the resolution of the data.
と
height: degree of jitter in y direction. Defaults to 40% of the resolution of the data.
私の質問は、解像度とは正確には何であり、それはどのように決定されるのでしょうか?
また、0.1 を使用する以下の例のように、これをオーバーライドして値を指定することもできます。
geom_point(position = position_jitter(w = 0.1, h = 0.1))
0.1 に属する単位は? これが解像度の一部であると仮定するのは正しいですか?