I have 2 tables in my Oracle database:
DF (term, doccount)
TF (abstractid, term, freq)
One for Document frequency(DF) having terms and documentCount and another table for term frequency called TF havind the documentID, terms, Frequency. I want to calculate TF*IDF where TF = number of times that a term appears in an article (frequency column from table TF) and IDF = log (132225)-log(docCount)+1
I want to store my result in a table (TFIDF) having documentID, Terms and the calculated TF*IDF
Any ideas?