tinyplot(mpg ~ hp | factor(cyl),
data = mtcars,
type = type_text(
labels = row.names(mtcars),
font = 2,
adj = 0
)
)
# to avoid clipping text at the plot region, we can use xpd = NA
tinyplot(mpg ~ hp | factor(cyl),
data = mtcars,
type = type_text(
labels = row.names(mtcars),
font = 2,
adj = 0,
xpd = NA
)
)
Run the code above in your browser using DataLab