[R] Show only header of str() function
Rui Barradas
ru|pb@rr@d@@ @end|ng |rom @@po@pt
Thu Sep 2 13:31:17 CEST 2021
Hello,
Not perfect but works for data.frames:
header_str <- function(x){
capture.output(str(x))[[1]]
}
header_str(iris)
header_str(AirPassengers)
header_str(1:10)
Hope this helps,
Rui Barradas
Às 12:02 de 02/09/21, Luigi Marongiu escreveu:
> Hello, is it possible to show only the header (that is: `'data.frame':
> x obs. of y variables:` part) of the str function?
> Thank you
>
More information about the R-help
mailing list