كيفية إنشاء مخطط جانت في r باستخدام ggplot2
مخطط جانت هو نوع من المخططات التي تعرض أوقات البداية والنهاية للأحداث المختلفة.
يشرح هذا البرنامج التعليمي كيفية إنشاء مخطط جانت في R باستخدام حزمة ggplot2 .
إنشاء مخطط جانت في R باستخدام ggplot2
لنفترض أن لدينا مجموعة البيانات التالية التي توضح أوقات البدء والانتهاء لأربع نوبات عمل مختلفة للعمال في أحد المتاجر:
#create data frame
data <- data.frame(name = c('Bob', 'Greg', 'Mike', 'Andy'),
start = c(4, 7, 12, 16),
end = c(12, 11, 8, 22),
shift_type = c('early', 'mid_day', 'mid_day', 'late')
)
data
# name start end shift_type
#1 Bob 4 12 early
#2 Greg 7 11 mid_day
#3 Mike 12 8 mid_day
#4 Andy 16 22 late
من أجل إنشاء مخطط جانت باستخدام ggplot2 الذي يصور أوقات البدء والانتهاء لكل عامل، يمكننا استخدام الكود التالي:
#install (if not already installed) and load ggplot2 if(!require(ggplot2)){install.packages('ggplot2')} #create gantt chart that visualizes start and end time for each worker ggplot(data, aes(x=start, xend=end, y=name, yend=name, color=shift_type)) + geom_segment()
وينتج عن ذلك مخطط جانت التالي:
مع بعض التعديلات على التخطيط، يمكننا أن نجعل مخطط جانت يبدو أفضل بكثير:
ggplot(data, aes(x=start, xend=end, y=name, yend=name, color=shift_type)) + theme_bw()+ #use ggplot theme with black gridlines and white background geom_segment(size=8) + #increase line width of segments in the chart labs(title='Worker Schedule', x='Time', y='Worker Name')
وينتج عن ذلك الرسم البياني التالي:
بالإضافة إلى ذلك، إذا كنت تريد تعيين الألوان الدقيقة لاستخدامها في المخطط، فيمكنك استخدام الكود التالي:
ggplot(data, aes(x=start, xend=end, y=name, yend=name, color=shift_type)) + theme_bw()+ #use ggplot theme with black gridlines and white background geom_segment(size=8) + #increase line width of segments in the chart labs(title='Worker Schedule', x='Time', y='Worker Name') + scale_color_manual(values = c('pink', 'purple', 'blue'))
ينتج عن ذلك الرسم البياني التالي بالألوان الوردي والأرجواني والأزرق لتمثيل أنواع الإزاحة المختلفة:
استخدم السمات المخصصة
يمكننا المضي قدمًا باستخدام السمات المخصصة من مكتبة ggthemes .
على سبيل المثال، يمكننا إنشاء مخطط جانت الذي يستخدم سمة مستوحاة من صحيفة وول ستريت جورنال:
#load ggthemes library library(ggthemes) #create scatterplot with Wall Street Journal theme ggplot(data, aes(x=start, xend=end, y=name, yend=name, color=shift_type)) + theme_bw()+ geom_segment(size=8) + labs(title='Worker Schedule', x='Time', y='Worker Name') + scale_color_manual(values = c('pink', 'purple', 'blue')) + theme_wsj() + theme(axis.title = element_text())
أو يمكننا استخدام موضوع مستوحى من مجلة The Economist:
ggplot(data, aes(x=start, xend=end, y=name, yend=name, color=shift_type)) +
theme_bw()+
geom_segment(size=8) +
labs(title='Worker Schedule', x='Time', y='Worker Name') +
scale_color_manual(values = c('pink', 'purple', 'blue')) +
theme_economist() +
theme(axis.title = element_text())
أو ربما موضوع مستوحى من Five Thirty Eight :
ggplot(data, aes(x=start, xend=end, y=name, yend=name, color=shift_type)) +
theme_bw()+
geom_segment(size=8) +
labs(title='Worker Schedule', x='Time', y='Worker Name') +
scale_color_manual(values = c('pink', 'purple', 'blue')) +
theme_fivethirtyeight() +
theme(axis.title = element_text())
للحصول على قائمة كاملة بالموضوعات المتوفرة في مكتبة ggthemes ، راجع صفحة الوثائق .