كيفية إنشاء رسم بياني لمتغيرين في r
يعد الرسم البياني طريقة مفيدة لتصور توزيع القيم لمتغير معين.
لإنشاء رسم بياني لمتغير في R، يمكنك استخدام الدالة hist() . ولإنشاء رسم بياني لمتغيرين في R، يمكنك استخدام بناء الجملة التالي:
hist(variable1, col=' red ') hist(variable2, col=' blue ', add= TRUE )
يوضح المثال التالي كيفية استخدام بناء الجملة هذا عمليًا.
مثال: إنشاء رسم بياني لمتغيرين في R
يوضح الكود التالي كيفية إنشاء رسم بياني لمتغيرين في R:
#make this example reproducible set. seeds (1) #define data x1 = rnorm(1000, mean=0.6, sd=0.1) x2 = rnorm(1000, mean=0.4, sd=0.1) #plot two histograms in same graph hist(x1, col=' red ') hist(x2, col=' blue ', add= TRUE )
نظرًا لتداخل قيم الرسم البياني، فمن الجيد استخدام ألوان rgb() مع زيادة الشفافية:
#make this example reproducible set. seeds (1) #define data x1 = rnorm(1000, mean=0.6, sd=0.1) x2 = rnorm(1000, mean=0.4, sd=0.1) #plot two histograms in same graph hist(x1, col=rgb(0,0,1,0.2), xlim=c(0, 1), xlab=' Values ', ylab=' Frequency ', main=' Histogram for two variables ') hist(x2, col=rgb(1,0,0,0.2), add= TRUE )
يمكنك أيضًا إضافة وسيلة إيضاح لتسهيل تفسير الرسوم البيانية:
#make this example reproducible set. seeds (1) #define data x1 = rnorm(1000, mean=0.6, sd=0.1) x2 = rnorm(1000, mean=0.4, sd=0.1) #plot two histograms in same graph hist(x1, col=rgb(0,0,1,0.2), xlim=c(0, 1), xlab=' Values ', ylab=' Frequency ', main=' Histogram for two variables ') hist(x2, col=rgb(1,0,0,0.2), add= TRUE ) #add legend legend(' topright ', c(' Variable 1 ', ' Variable 2 '), fill=c(rgb(0,0,1,0.2), rgb(1,0,0,0.2)))
يمكنك العثور على المزيد من دروس R على هذه الصفحة .