EVOLUTION-MANAGER
Edit File: tbl_sum.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>R: Provide a succinct summary of an object</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" type="text/css" href="R.css" /> </head><body> <table width="100%" summary="page for tbl_sum {pillar}"><tr><td>tbl_sum {pillar}</td><td style="text-align: right;">R Documentation</td></tr></table> <h2>Provide a succinct summary of an object</h2> <h3>Description</h3> <p><code>tbl_sum()</code> gives a brief textual description of a table-like object, which should include the dimensions and the data source in the first element, and additional information in the other elements (such as grouping for <span class="pkg">dplyr</span>). The default implementation forwards to <code><a href="type_sum.html">obj_sum()</a></code>. </p> <h3>Usage</h3> <pre> tbl_sum(x) </pre> <h3>Arguments</h3> <table summary="R argblock"> <tr valign="top"><td><code>x</code></td> <td> <p>Object to summarise.</p> </td></tr> </table> <h3>Value</h3> <p>A named character vector, describing the dimensions in the first element and the data source in the name of the first element. </p> <h3>See Also</h3> <p><code><a href="type_sum.html">type_sum()</a></code> </p> <h3>Examples</h3> <pre> tbl_sum(1:10) tbl_sum(matrix(1:10)) tbl_sum(data.frame(a = 1)) tbl_sum(Sys.Date()) tbl_sum(Sys.time()) tbl_sum(mean) </pre> <hr /><div style="text-align: center;">[Package <em>pillar</em> version 1.8.1 <a href="00Index.html">Index</a>]</div> </body></html>