left_just(dataframe, column = NULL, keep.class = FALSE)right_just(dataframe)
NULL
all columns are
justified.TRUE
will attempt to keep the original
classes of the dataframe if the justification is not altered (i.e., numeric
will not be honored but factor may be).Returns a dataframe with selected text column left/right justified.
left_just
- Left justifies a text/character column.
right_just
- A means of undoing a left justification.
left_just
inserts spaces to achieve the
justification. This could interfere with analysis and therefore the output
from left_just
should only be used for visualization
purposes, not analysis.
## <strong>Not run</strong>: # left_just(DATA) # left_just(DATA, "state") # left_just(CO2[1:15,]) # right_just(left_just(CO2[1:15,])) # ## <strong>End(Not run)</strong>