as_lscape | R Documentation |
Important: this function will not make your table render in
landscape mode in a stand alone TeX document. This function doesn't actually
make the table "landscape". It simply adds to the class attribute so that
functions down the line can look for this tag and wrap the table in
landscape
environment. The landscaping
is entirely the responsibility of
some other function, just not this one.
as_lscape(x)
is_lscape(x)
x |
output from either |
For as_lscape()
, the input is returned, but with stable_lscape
added to the class
attribute. For is_lscape()
, a logical value
is returned, indicating whether or not the object inherits from
stable_lscape
.
st_wrap()
, st2article()
, st2report()
out <- stable(stdata())
is_lscape(out)
land <- as_lscape(out)
is_lscape(land)
st_wrap(as_lscape(out))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.