Tidyverse में डेटा के साथ संवाद
Timo Grossenbacher
Data Journalist


ggplot(plot_data) +
geom_histogram(aes(
x = working_hours)) +
labs(x = "Working hours per week",
y = "Number of countries") +
theme(
text = element_text(
family = "Bookman",
color = "gray25")
)

ggplot(plot_data) +
geom_histogram(aes(
x = working_hours)) +
labs(x = "Working hours per week",
y = "Number of countries") +
theme_classic()

ggplot(plot_data) +
geom_histogram(aes(
x = working_hours)) +
labs(x = "Working hours per week",
y = "Number of countries") +
theme_classic() +
theme(
text = element_text(
family = "Bookman",
color = "gray25")
)

?theme
axis.title
धुरों के लेबल (element_text; text से इनहेरिट)
axis.title.x
x धुरी का लेबल (element_text; axis.title से इनहेरिट)
axis.title.x.top
ऊपरी x धुरी का लेबल (element_text; axis.title.x से इनहेरिट)
axis.title.x.bottom
निचली x धुरी का लेबल (element_text; axis.title.x से इनहेरिट)
element_text()
element_rect()
element_line()
element_blank()
ggplot(plot_data) +
geom_histogram(aes(
x = working_hours)) +
labs(x = "Working hours per week",
y = "Number of countries") +
theme(
text = element_blank()
)

Tidyverse में डेटा के साथ संवाद