ggplot2 を使用してドット プロットを作成しています。私のデータは基本的に x_axis、y_axis、z_axis の 3 つの列の形式であり、x_axis と y_axis はペアを表し、z_axis はペアの数を表します。
したがって、x_axis と y_axis をプロットし、z_axis を使用してドットに色を付けています。たとえば、特定のカウントのプロットをスキップしたい特定の状況があります: 1 のカウントが複数回発生し、1 のプロットをスキップしたい場合もありますが、凡例には 1 が表示されます。以下は私のコードです:
> new<-read.table("PB1_combo.txt", header=T, sep="\t")
> bp <-ggplot(data=new, aes(x_axis,y_axis, colour=factor(z_axis)), size=z_axis) +
geom_point(size=5)
> bp + ggtitle("PB1-PB1")
> last_plot()+ scale_colour_discrete(name="Counts")
> last_plot()+ theme_bw()
Sample data from PB1_combo.txt
x_axis y_axis z_axis
14 576 2
394 652 2
759 762 2
473 762 2
65 763 3
114 390 2
762 763 4
758 762 2
388 616 2
217 750 2
65 762 2
473 763 2
743 759 2
65 213 2
743 762 2