Output - Aster Analytics

Teradata Aster Analytics Foundation User Guide

Product
Aster Analytics
Release Number
6.21
Published
November 2016
Language
English (United States)
Last Update
2018-04-14
dita:mapPath
kiu1466024880662.ditamap
dita:ditavalPath
AA-notempfilter_pdf_output.ditaval
dita:id
B700-1021
lifecycle
previous
Product Category
Software
TF_IDF Output Schema
Column Name Data Type Description
docid Any Document identifier of document d.
term VARCHAR Term t.
tf DOUBLE PRECISION Term frequency of term t in document d, calculated as specified by the Formula argument.
idf DOUBLE PRECISION Inverse document frequency of term t in document d, calculated by this formula:

IDF(t) = log (doccount / doccount(t))

where doccount is the number of documents in the document set and doccount(t) is the number of documents that contain the term t.

tf_idf DOUBLE PRECISION TF_IDF score of of term t in document d, calculated by this formula:

TF_IDF(t, d) = TF(t, d) * IDF(t)