私は私はそれがプロパティを以下ているように、次のようなグラフを作成するプロット相互作用は、(データ点の数が非常に多いが)
# property data
name <- c("A", "B", "C", "D")
diameter <- c(4.3, 8.3,1.2, 3.3)
X <- c(1, 2, 3, 4)
Y <- c(1, 3, 3, 4)
colr <- c(10, 20, 34, 12)
propdata <- data.frame (name, diameter, X, Y, colr)
# interaction data
name1 <- c("A", "A", "A", "B", "B")
name2 <- c("B", "C", "D", "C", "D")
score <- c(1.1, 2.2, 5.4, 3.1, 2.0)
relation <- data.frame (name1, name2, score)
次のデータ・タイプを持っているグラフ。
(
1) diameter of circles is governed by propdata$diameter
(2) Position in xy field is governed by cordinates of propdata$X and propdata$y
(3) Fill color of the circle is controlled by propdata$colr
(4) Interaction is governed by relation data.frame, name1
and name2 elements will be connected and weight of the line is govenmened
by relation$score.
それは既存のRベースまたは任意の一般的なグラフィックソフトウェアを使用して、このようなグラフを作る以上の特別なソフトウェアを必要とすることは可能です
EDITS:。
これはバブルプロットを使用する限りです:
p <- ggplot(propdata, aes(X,Y,size = diameter, label=name))
p <- p + geom_point(colour= "red")+geom_text(size=3) # colour = colr does not work
p
答えははいです。何を試しましたか? – Andrie
私はggplot2を使ってみました。使用したgeom_point()は、バブルのサイズをフレームにするだけで、接続方法はわかりません。 – jon
@Andrieは私の編集内容を見ています。 。 – jon