What is hjust in r

Last updated: April 1, 2026

Quick Answer: hjust is a parameter in R graphics that controls the horizontal justification of text, with values between 0 (left-aligned) and 1 (right-aligned). It's commonly used in base R and ggplot2 to position text elements precisely.

Key Facts

Understanding hjust

The hjust parameter in R is a fundamental tool for controlling text alignment in graphics. The name stands for 'horizontal justification' and takes numeric values between 0 and 1, allowing precise control over where text elements are positioned relative to their anchor point.

How hjust Values Work

Values between 0 and 1 determine alignment: 0 places the text entirely to the right of the anchor point (left-aligned), 0.5 centers the text on the anchor point, and 1 places the text entirely to the left of the anchor point (right-aligned). Decimal values like 0.25 or 0.75 provide intermediate positioning.

Usage in ggplot2

In ggplot2, hjust is commonly used within the theme() function to adjust axis labels, titles, and legend text. For example, theme(axis.text.x = element_text(hjust = 1)) right-aligns x-axis labels. The parameter also appears in geom_text() and annotate() for positioning labels on plot layers.

Common Applications

Developers frequently use hjust when rotating axis labels to prevent overlap or improve readability. It's essential for creating professional-looking plots with properly positioned annotations and when creating custom themes for consistent text placement across multiple visualizations.

Combining with vjust

hjust works alongside vjust (vertical justification) to provide complete two-dimensional control over text placement. Using both parameters together allows for pixel-perfect positioning of text elements in any direction or angle, making them indispensable for advanced data visualization tasks.

Related Questions

What is vjust in R?

vjust is the vertical justification parameter that works with hjust to control text alignment from top to bottom in R graphics.

How do you rotate text in ggplot2?

You can rotate text using angle parameter in element_text() combined with hjust and vjust adjustments in the theme() function.

What is the element_text() function in R?

element_text() is an R function used to control text appearance in ggplot2 themes, including size, color, angle, and justification parameters.

Sources

  1. ggplot2 - element_text documentation MIT
  2. R Documentation - Graphics Parameters GPL-2.0