Exporting Data from Aster - Aster R

Teradata Aster® R User GuideUpdate 3

Product
Aster R
Release Number
7.00.02.01
Published
December 2017
Language
English (United States)
Last Update
2018-04-13
dita:mapPath
fop1497542774450.ditamap
dita:ditavalPath
Generic_no_ie_no_tempfilter.ditaval
dita:id
fbp1477004286096
lifecycle
previous
Product Category
Software

Users can use the function ta.pull() to export data from an Aster virtual object to an R object. The function returns an R data frame. By default, character strings including factor levels are encoded as UTF-8.

For example:

> R_women<-ta.pull(tadf_women)
> class(R_women)
[1] "data.frame"

Users can use the function ta.write.csv() to export data from an Aster virtual object to a file in .csv format.

For example:

> class(tadf_women)
[1] "ta.data.frame" 
> ta.write.csv(tadf_women, file="women.csv")