Create an R data frame from a tibble by using the as.data.frame() R function on a tdplyr tibble, to transfer the data of the corresponding Vantage table into an R data frame on the client machine.
The optional n argument of the as.data.frame() function specifies the number of rows to be pulled from the Vantage table.
For Example:
The following statement transfers 20 rows from the "iris_flowers" Vantage table into the "df_iris" data frame on the client by applying the as.data.frame() function on the "tddf_iris" tibble:
> df_iris <- as.data.frame(tddf_iris, n=20)
See Teradata Package for R Limitations for details on using the as.data.frame() function.