Teradata R Package Function Reference - tdplyr: td_nrow - Teradata R Package - Look here for syntax, methods and examples for the functions included in the Teradata R Package.

Teradata® R Package Function Reference

Product
Teradata R Package
Release Number
16.20
Published
February 2020
Language
English (United States)
Last Update
2020-02-28
dita:id
B700-4007
lifecycle
previous
Product Category
Teradata Vantage

Description

This function retrieves number of rows in a tibble or data.frame object.

Usage

td_nrow(x)

Arguments

x

Required Argument
Specifies a data.frame or a tibble object.
Types : R data.frame OR tibble

Value

Returns the number of rows in a data.frame or a tibble object.

Examples

# Get remote data source connection
con <- td_get_context()$connection

# Create a dataframe.
df <- data.frame(column1 = c(1, 2, 3), column2 = c('teradata', 'vantage', 'release'), 
                 column3 = c(TRUE, FALSE, TRUE))
# Returns the number of rows for data.frame.
td_nrow(df)

# Create table from R dataframe "df".
copy_to(con, df, name = "test_table", analyze = TRUE, overwrite = TRUE)

# Create remote tibble object.
test_table <- tbl(con, "test_table")

# Returns the number of rows for tibble object.
td_nrow(test_table)