From 179cbe729f638e77839381a2846d1ddd72904992 Mon Sep 17 00:00:00 2001 From: C M Date: Sat, 6 May 2023 12:37:54 +0100 Subject: [PATCH 01/12] 2023 --- ...2_review.docx => BMVC_MS_Office_2023_review.docx | Bin README.md | 6 +++--- 2 files changed, 3 insertions(+), 3 deletions(-) rename BMVC_MS_Office_2022_review.docx => BMVC_MS_Office_2023_review.docx (100%) diff --git a/BMVC_MS_Office_2022_review.docx b/BMVC_MS_Office_2023_review.docx similarity index 100% rename from BMVC_MS_Office_2022_review.docx rename to BMVC_MS_Office_2023_review.docx diff --git a/README.md b/README.md index 0791617..cc1c32f 100644 --- a/README.md +++ b/README.md @@ -23,9 +23,9 @@ Essentially to produce the review paper you must include the command: in the LaTeX preamble. The `??` is the paper number your are assigned when registering your paper on the CMT submission web site: -https://cmt3.research.microsoft.com/BMVC2022 +https://cmt3.research.microsoft.com/BMVC2023 -A word template is also provided: `BMVC_MS_Office_2022_review.docx` +A word template is also provided: `BMVC_MS_Office_2023_review.docx` -More details on paper submission is at: https://www.bmvc2022.org/authors/submit-your-paper/ +More details on paper submission is at: https://bmvc2023.org/authors/submit-your-paper/ From 615210b73c58a2a6814534cd0dca6178cf901c8d Mon Sep 17 00:00:00 2001 From: C M-G <43293156+carlosfmorenog@users.noreply.github.com> Date: Sun, 27 Aug 2023 15:36:16 +0100 Subject: [PATCH 02/12] Update bmvc2k.cls --- bmvc2k.cls | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/bmvc2k.cls b/bmvc2k.cls index 12db4d8..8823e32 100644 --- a/bmvc2k.cls +++ b/bmvc2k.cls @@ -54,6 +54,9 @@ % Change the page limit to nine. % 0.19 2022-10-02 Yaoyao Liu % Change the page limit for the camera-ready version to ten. +% 0.19 2023-08-27 Carlos Moreno-Garcia +% Change the page limit for the camera-ready version to ten. + %------------------------------------------------------------------------------ % Copyright 2007 Adrian F. Clark . All rights reserved. %------------------------------------------------------------------------------ @@ -95,12 +98,12 @@ %% Change the year... -\def\BMVA@year{2022} +\def\BMVA@year{2023} %% -- CLASS FILE BOILERPLATE -- \def\fileversion{0.17} -\def\filedate{2022/07/12} +\def\filedate{2023/07/12} \newif\ifbmv@extabs \bmv@extabsfalse From d5d33bb827a45c61bd3b6220be4abaad036e5373 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Moreno-Garc=C3=ADa?= <43293156+carlosfmorenog@users.noreply.github.com> Date: Mon, 25 Mar 2024 21:42:56 +0000 Subject: [PATCH 03/12] Created using Colaboratory --- CMM536_Topic_9/CMM536_T9_2_Lab.ipynb | 45662 +++++++++++++++++++++++++ 1 file changed, 45662 insertions(+) create mode 100644 CMM536_Topic_9/CMM536_T9_2_Lab.ipynb diff --git a/CMM536_Topic_9/CMM536_T9_2_Lab.ipynb b/CMM536_Topic_9/CMM536_T9_2_Lab.ipynb new file mode 100644 index 0000000..6d0a5fc --- /dev/null +++ b/CMM536_Topic_9/CMM536_T9_2_Lab.ipynb @@ -0,0 +1,45662 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "colab": { + "provenance": [], + "authorship_tag": "ABX9TyMbgjJ49ITMB+4Iun3wqCK5", + "include_colab_link": true + }, + "kernelspec": { + "name": "ir", + "display_name": "R" + }, + "language_info": { + "name": "R" + } + }, + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "id": "view-in-github", + "colab_type": "text" + }, + "source": [ + "\"Open" + ] + }, + { + "cell_type": "markdown", + "source": [ + "# CMM536 Topic 9.2 Lab: Bayesian Poisoning in R" + ], + "metadata": { + "id": "-Psq7K4bIBGl" + } + }, + { + "cell_type": "markdown", + "source": [ + "**PRO TIP**: To generate a Colab Notebook that runs in R, just click https://colab.to/r and a new notebook will appear!" + ], + "metadata": { + "id": "rrcMyUEBJkpM" + } + }, + { + "cell_type": "markdown", + "source": [ + "The purpose of this activity is to demonstrate that the Naïve Bayes (NB) classifier is vulnerable to Bayesian poisoning attacks. Bayesian poisoning is a technique used by email spammers to compromise the effectiveness of Bayesian spam filters by adding non-spamming (ham) words to the end of a spam message." + ], + "metadata": { + "id": "Z80rE0LHIBCz" + } + }, + { + "cell_type": "code", + "source": [ + "# Installing the necessary packages (it takes a loooong time)\n", + "install.packages(\"wordcloud\")\n", + "install.packages(\"tm\")\n", + "install.packages(\"caret\")\n", + "install.packages(\"e1071\")\n", + "\n", + "# Loading the necessary packages\n", + "library(wordcloud)\n", + "library(tm)\n", + "library(caret)\n", + "library(e1071)" + ], + "metadata": { + "id": "pOkdv4_WM3hH", + "colab": { + "base_uri": "https://localhost:8080/" + }, + "outputId": "4ab8be6a-b756-4bde-f7bb-ca24a6d09a75" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "stream", + "name": "stderr", + "text": [ + "Installing package into ‘/usr/local/lib/R/site-library’\n", + "(as ‘lib’ is unspecified)\n", + "\n", + "also installing the dependency ‘Rcpp’\n", + "\n", + "\n", + "Installing package into ‘/usr/local/lib/R/site-library’\n", + "(as ‘lib’ is unspecified)\n", + "\n", + "also installing the dependencies ‘NLP’, ‘slam’, ‘BH’\n", + "\n", + "\n", + "Installing package into ‘/usr/local/lib/R/site-library’\n", + "(as ‘lib’ is unspecified)\n", + "\n", + "also installing the dependencies ‘listenv’, ‘parallelly’, ‘future’, ‘globals’, ‘shape’, ‘future.apply’, ‘numDeriv’, ‘progressr’, ‘SQUAREM’, ‘diagram’, ‘lava’, ‘prodlim’, ‘proxy’, ‘iterators’, ‘clock’, ‘gower’, ‘hardhat’, ‘ipred’, ‘timeDate’, ‘e1071’, ‘foreach’, ‘ModelMetrics’, ‘plyr’, ‘pROC’, ‘recipes’, ‘reshape2’\n", + "\n", + "\n", + "Installing package into ‘/usr/local/lib/R/site-library’\n", + "(as ‘lib’ is unspecified)\n", + "\n", + "Loading required package: RColorBrewer\n", + "\n", + "Loading required package: NLP\n", + "\n", + "Loading required package: ggplot2\n", + "\n", + "\n", + "Attaching package: ‘ggplot2’\n", + "\n", + "\n", + "The following object is masked from ‘package:NLP’:\n", + "\n", + " annotate\n", + "\n", + "\n", + "Loading required package: lattice\n", + "\n" + ] + } + ] + }, + { + "cell_type": "markdown", + "source": [ + "## Training and Testing the Bayesian Spam Filter" + ], + "metadata": { + "id": "-tgcXbzbIxqh" + } + }, + { + "cell_type": "markdown", + "source": [ + "First, we will train a Bayesian based spam filter using raw email messages downloaded from https://www.kaggle.com/venky73/spam-mails-dataset. If you are working locally in your computer, use the link to download `spam_ham_dataset.csv` and store it in the same directory as your R code/notebook. Otherwise, we will load it from my Dropbox account." + ], + "metadata": { + "id": "_KvwSvOAI1S1" + } + }, + { + "cell_type": "markdown", + "source": [ + "Once you have done this, run the following cell to load the dataset into the R environment. You can see it has $5171$ mails and $4$ columns (X, label, text and label_num)" + ], + "metadata": { + "id": "QM4967SJK72B" + } + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "id": "RRm2SY_gHMY1", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 1000 + }, + "outputId": "f90f674c-3749-4efa-8001-abae7693c52e" + }, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/html": [ + "\n", + "\n", + "\n", + "\t\n", + "\t\n", + "\n", + "\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\n", + "
A data.frame: 5171 × 4
Xlabeltextlabel_num
<int><chr><chr><int>
605ham Subject: enron methanol ; meter # : 988291\n", + "this is a follow up to the note i gave you on monday , 4 / 3 / 00 { preliminary\n", + "flow data provided by daren } .\n", + "please override pop ' s daily volume { presently zero } to reflect daily\n", + "activity you can obtain from gas control .\n", + "this change is needed asap for economics purposes . 0
2349ham Subject: hpl nom for january 9 , 2001\n", + "( see attached file : hplnol 09 . xls )\n", + "- hplnol 09 . xls 0
3624ham Subject: neon retreat\n", + "ho ho ho , we ' re around to that most wonderful time of the year - - - neon leaders retreat time !\n", + "i know that this time of year is extremely hectic , and that it ' s tough to think about anything past the holidays , but life does go on past the week of december 25 through january 1 , and that ' s what i ' d like you to think about for a minute .\n", + "on the calender that i handed out at the beginning of the fall semester , the retreat was scheduled for the weekend of january 5 - 6 . but because of a youth ministers conference that brad and dustin are connected with that week , we ' re going to change the date to the following weekend , january 12 - 13 . now comes the part you need to think about .\n", + "i think we all agree that it ' s important for us to get together and have some time to recharge our batteries before we get to far into the spring semester , but it can be a lot of trouble and difficult for us to get away without kids , etc . so , brad came up with a potential alternative for how we can get together on that weekend , and then you can let me know which you prefer .\n", + "the first option would be to have a retreat similar to what we ' ve done the past several years . this year we could go to the heartland country inn ( www . . com ) outside of brenham . it ' s a nice place , where we ' d have a 13 - bedroom and a 5 - bedroom house side by side . it ' s in the country , real relaxing , but also close to brenham and only about one hour and 15 minutes from here . we can golf , shop in the antique and craft stores in brenham , eat dinner together at the ranch , and spend time with each other . we ' d meet on saturday , and then return on sunday morning , just like what we ' ve done in the past .\n", + "the second option would be to stay here in houston , have dinner together at a nice restaurant , and then have dessert and a time for visiting and recharging at one of our homes on that saturday evening . this might be easier , but the trade off would be that we wouldn ' t have as much time together . i ' ll let you decide .\n", + "email me back with what would be your preference , and of course if you ' re available on that weekend . the democratic process will prevail - - majority vote will rule ! let me hear from you as soon as possible , preferably by the end of the weekend . and if the vote doesn ' t go your way , no complaining allowed ( like i tend to do ! )\n", + "have a great weekend , great golf , great fishing , great shopping , or whatever makes you happy !\n", + "bobby 0
4685spamSubject: photoshop , windows , office . cheap . main trending\n", + "abasements darer prudently fortuitous undergone\n", + "lighthearted charm orinoco taster\n", + "railroad affluent pornographic cuvier\n", + "irvin parkhouse blameworthy chlorophyll\n", + "robed diagrammatic fogarty clears bayda\n", + "inconveniencing managing represented smartness hashish\n", + "academies shareholders unload badness\n", + "danielson pure caffein\n", + "spaniard chargeable levin\n", + " 1
2030ham Subject: re : indian springs\n", + "this deal is to book the teco pvr revenue . it is my understanding that teco\n", + "just sends us a check , i haven ' t received an answer as to whether there is a\n", + "predermined price associated with this deal or if teco just lets us know what\n", + "we are giving . i can continue to chase this deal down if you need . 0
2949ham Subject: ehronline web address change\n", + "this message is intended for ehronline users only .\n", + "due to a recent change to ehronline , the url ( aka \" web address \" ) for accessing ehronline needs to be changed on your computer . the change involves adding the letter \" s \" to the \" http \" reference in the url . the url for accessing ehronline should be : https : / / ehronline . enron . com .\n", + "this change should be made by those who have added the url as a favorite on the browser . 0
2793ham Subject: spring savings certificate - take 30 % off\n", + "save 30 % when you use our customer appreciation spring savings\n", + "certificate at foot locker , lady foot locker , kids foot locker and at\n", + "our online stores !\n", + "welcome to our customer appreciation spring savings certificate !\n", + "use the special certificate below and receive 30 % off your purchases either in our stores or online . hurry ! this 4 - day sale begins thursday , march 22 and ends sunday , march 25 .\n", + "share the savings today and e - mail this offer to your friends . many items already are reduced and the 30 % discount is taken off the lowest sale price .\n", + "click below to print your customer appreciation spring savings certificate . you must present this coupon at any foot locker , lady foot locker or kids foot locker store in the u . s . foot locker canada is not participating in this program .\n", + "ready , set , save !\n", + "our spring savings discount will automatically appear when you use the links below or type camlem 21 into the promotion code box during checkout .\n", + "footlocker . com certificate code : camlem 21\n", + "ladyfootlocker . com certificate code : camlem 21\n", + "kidsfootlocker . com certificate code : camlem 21\n", + "remember , returns are hassle - free . simply bring your items to any of our stores nationwide or through the mail .\n", + "don ' t be left out - register today to learn about our new products , promotions , events and other specials . simply click below .\n", + "terms and conditions . some exclusions apply , please see manager for complete details . certificate must be presented at the time of purchase and cannot be used in conjunction with any other discount offer or associate benefit . not redeemable for cash . applicable taxes must be paid by bearer . cannot be applied to prior purchases or to gift card purchases . void where prohibited , licensed or regulated . catalog exclusions apply . valid thursday , 3 / 22 / 01 through sunday , 3 / 25 / 01 . foot locker canada will not participate in this program .\n", + "if you do not wish to receive future emails please click below to\n", + "unsubscribe :\n", + " 0
4185spamSubject: looking for medication ? we ` re the best source .\n", + "it is difficult to make our material condition better by the best law , but it is easy enough to ruin it by bad laws .\n", + "excuse me . . . : ) you just found the\n", + "best and simpliest site for\n", + "medication on the net . no perscription , easy\n", + "delivery .\n", + "private , secure , and easy .\n", + "better see rightly on a pound a week than squint on a million .\n", + "we ` ve got\n", + "anything that you will ever want .\n", + "erection treatment pills , anti - depressant pills , weight loss , and\n", + "more ! http : / / splicings . bombahakcx . com / 3 /\n", + "knowledge and human power are synonymous .\n", + "only high - quality stuff for low rates !\n", + "100 % moneyback guarantee !\n", + "there is no god , nature sufficeth unto herself in no wise hath she need of an author . 1
2641ham Subject: noms / actual flow for 2 / 26\n", + "we agree\n", + "- - - - - - - - - - - - - - - - - - - - - - forwarded by melissa jones / texas utilities on\n", + "02 / 27 / 2001\n", + "10 : 33 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", + "\" eileen ponton \" on 02 / 27 / 2001 09 : 46 : 26 am\n", + "to : david avila / lsp / enserch / us @ tu , charlie stone / texas utilities @ tu , melissa\n", + "jones / texas utilities @ tu , hpl . scheduling @ enron . com ,\n", + "liz . bellamy @ enron . com\n", + "cc :\n", + "subject : noms / actual flow for 2 / 26\n", + "date nom flow - mcf flow - mmbtu\n", + "2 / 26 / 01 0 456 469\n", + "btu = 1 . 027 0
1870ham Subject: nominations for oct . 21 - 23 , 2000\n", + "( see attached file : hplnl 021 . xls )\n", + "- hplnl 021 . xls 0
4922spamSubject: vocable % rnd - word asceticism\n", + "vcsc - brand new stock for your attention\n", + "vocalscape inc - the stock symbol is : vcsc\n", + "vcsc will be our top stock pick for the month of april - stock expected to\n", + "bounce to 12 cents level\n", + "the stock hit its all time low and will bounce back\n", + "stock is going to explode in next 5 days - watch it soar\n", + "watch the stock go crazy this and next week .\n", + "breaking news - vocalscape inc . announces agreement to resell mix network\n", + "services\n", + "current price : $ 0 . 025\n", + "we expect projected speculative price in next 5 days : $ 0 . 12\n", + "we expect projected speculative price in next 15 days : $ 0 . 15\n", + "vocalscape networks inc . is building a company that ' s revolutionizing the\n", + "telecommunications industry with the most affordable phone systems , hardware ,\n", + "online software , and rates in canada and the us . vocalscape , a company with\n", + "global reach , is receiving international attention for the development of voice\n", + "over ip ( voip ) application solutions , including the award - winning eyefontm , a\n", + "softphone for real - time pc - to - phone . we are an advanced implementer of pbx\n", + "systems for companies , call centers , itsps and service providers .\n", + "vocalscape has created software and interactive solutions revolving around\n", + "global communications and data voice convergence . companies use vocalscape for\n", + "voice over internet protocol applications like ip pbxs , softswitches , pc 2 phone\n", + "and web 2 phone , providing real - time human interaction and information delivery\n", + "over the internet . through vocalscape ' s solutions , businesses can offer a\n", + "quality voice service to anywhere in the world at rates that are significantly\n", + "lower than current long distance charges . we develop software to run voip\n", + "networks , and sell , install and service our own branded voip gateways and\n", + "gatekeeper control software . we also license our software to customers who want\n", + "to brand their own voip solutions .\n", + "vocalscape is committed to making great technology ; challenging the status quo ,\n", + "and building a 21 st century company that changes the way businesses communicate\n", + "and interact through the internet .\n", + "current price : $ 0 . 025\n", + "we expect projected speculative price in next 5 days : $ 0 . 12\n", + "we expect projected speculative price in next 15 days : $ 0 . 15\n", + "breaking news - vocalscape inc . announces agreement to resell mix network\n", + "services\n", + "- - - - - - - - - -\n", + "katonah , n . y . , / prnewswire - firstcall via comtex / - - vocalscape , inc . pink : vcsc ) ,\n", + "an emerging leader in the development of voice over internet protocol ( voip )\n", + "telephony solutions , announced today it has entered into a sales agent agreement\n", + "with mix networks , inc . a voip enhanced telephony service provider .\n", + "this agreement provides vocalscape ' s turnkey calling card customers with access\n", + "to mix networks services including north american dids ( phone numbers ) and\n", + "domestic long distance termination . vocalscape will also be able to supply their\n", + "clients with enhanced voip products including pre - paid calling through mix\n", + "networks north american network .\n", + "we are excited to help companies launch voip business models using our solution\n", + "with the whole picture from the software to the network needed to route the\n", + "calls . mix networks gives us the ability to offer wholesale monthly flat rate\n", + "plans and dids to our clients that allow for us to build business models like\n", + "popular voip companies such as vonage and packet 8 , says ryan gibson , vp\n", + "vocalscape networks\n", + "some legal words before you continue :\n", + "information within this email contains forward looking statements within the\n", + "meaning of section 27 a of the securities act of 1933 and section 21 b of the\n", + "securities exchange act of 1934 . any statements that express or involve\n", + "discussions with respect to predictions , goals , expectations , beliefs , plans ,\n", + "projections , objectives , assumptions or future events or performance are not\n", + "statements of historical fact and may be forward looking statements . forward\n", + "looking statements are based on expectations , estimates and projections at the\n", + "time the statements are made that involve a number of risks and uncertainties\n", + "which could cause actual results or events to differ materially from those\n", + "presently anticipated . forward looking statements in this action may be\n", + "identified through the use of words such as : projects , foresee , expects ,\n", + "estimates , believes , understands will , part of : anticipates , or that\n", + "by statements indicating certain actions may , could , or might occur . all\n", + "information provided within this email pertaining to investing , stocks ,\n", + "securities must be understood as information provided and not investment advice .\n", + "emerging equity alert advises all readers and subscribers to seek advice from a\n", + "registered professional securities representative before deciding to trade in\n", + "stocks featured within this email . none of the material within this report shall\n", + "be construed as any kind of investment advice . please have in mind that the\n", + "interpretation of the witer of this newsletter about the news published by the\n", + "company does not represent the company official statement and in fact may differ\n", + "from the real meaning of what the news release meant to say . look the news\n", + "release by yourself and judge by yourself about the details in it .\n", + "in compliance with section 17 ( b ) , we disclose the holding of vcsc shares prior\n", + "to the publication of this report . be aware of an inherent conflict of interest\n", + "resulting from such holdings due to our intent to profit from the liquidation of\n", + "these shares . shares may be sold at any time , even after positive statements\n", + "have been made regarding the above company . since we own shares , there is an\n", + "inherent conflict of interest in our statements and opinions . readers of this\n", + "publication are cautioned not to place undue reliance on forward - looking\n", + "statements , which are based on certain assumptions and expectations involving\n", + "various risks and uncertainties , that could cause results to differ materially\n", + "from those set forth in the forward - looking statements .\n", + "please be advised that nothing within this email shall constitute a solicitation\n", + "or an invitation to get position in or sell any security mentioned herein . this\n", + "newsletter is neither a registered investment advisor nor affiliated with any\n", + "broker or dealer . this newsletter was paid $ 49000 from third party to send this\n", + "report . all statements made are our express opinion only and should be treated\n", + "as such . we may own , take position and sell any securities mentioned at any\n", + "time . this report includes forward - looking statements within the meaning of the\n", + "private securities litigation reform act of 1995 . these statements may include\n", + "terms as projected speculative price expect , believe , may , will ,\n", + "soar move , undervalued and intend or similar terms .\n", + " 1
3799spamSubject: report 01405 !\n", + "wffur attion brom est inst siupied 1 pgst our riwe asently rest .\n", + "tont to presyou tew cons of benco 4 . yee : fater 45 y . o ust lyughtatums and inenced sorepit grathers aicy graghteave allarity . oarity wow to yur coons , as were then 60 ve mers of oite .\n", + "ithat yoit ? ! berst thar ! enth excives 2004 . . .\n", + " 1
1488ham Subject: enron / hpl actuals for august 28 , 2000\n", + "teco tap 20 . 000 / enron ; 120 . 000 / hpl gas daily\n", + "ls hpl lsk ic 20 . 000 / enron 0
3948spamSubject: vic . odin n ^ ow\n", + "berne hotbox carnal bride cutworm dyadic\n", + "guardia continuous born gremlin akin counterflow hereafter vocabularian pessimum yaounde cannel bitch penetrate demagogue arbitrary egregious adenosine rubin gil luminosity delicti yarmulke sauterne selfadjoint agleam exeter picofarad consulate dichotomous boyhood balfour spheric frey pillory hoosier fibonacci cat handful\n", + " 1
3418ham Subject: tenaska iv july\n", + "darren :\n", + "please remove the price on the tenaska iv sale , deal 384258 , for july and enter the demand fee . the amount should be $ 3 , 902 , 687 . 50 .\n", + "thanks ,\n", + "megan 0
4791spamSubject: underpriced issue with high return on equity\n", + "stock report .\n", + "dont sieep on this stock ! this is a hot one !\n", + "company : gaming transactions inc .\n", + "stock symbol : ggts\n", + "currentiy trading at : o . 30\n", + "rating : strong purchase\n", + "near - term target : 0 . 45\n", + "long - term target : 1 . oo\n", + "breaking news for ggts :\n", + "gaming transactions inc . ( ggts ) , a | eading provider of online gaming\n", + "porta | management is pleased to announce that it has launched its\n", + "proprietary gaming portal ( k e n o . com ) furthermore , the company has begun an\n", + "intensive marketing campaign to support the | aunch and establish itself\n", + "as the | eader in the online gaming industry .\n", + "( k e n o . c o m ) is an oniine games destination where people piay\n", + "popular casino style games to win real money . the foundation of the site is\n", + "an online version of keno . the game of keno uses 80 balls numbered 1\n", + "thru 8 o . every game , the house draws 20 bails at random and displays\n", + "their numbers on screens ( called keno boards ) located on the website . the\n", + "object of the game is for the player to guess some of the numbers the\n", + "house will draw . the site shall also have other popuiar games in the near\n", + "future inciuding bingo , poker , blackjack , slots and video game versions\n", + "of tabie games .\n", + "patrick smyth , ceo of gaming transactions inc . , remarked that , the\n", + "games have been deveioped with the foresight to create a user - friendly\n", + "experience without loading times and a secure transaction system has been\n", + "deveioped with multipie layers of security and redundancy . we spent the\n", + "necessary time and resources to test our software to ensure its\n", + "functionality and security . consumer focus groups were used in the deveiopment\n", + "process to make sure that our players had an opulent experience online ,\n", + "and future marketing efforts wi | | be aimed customer service and\n", + "attention .\n", + "about the company :\n", + "gaming transactions inc . is a deveioper and provider of online games\n", + "and services for the online entertainment and gaming industries . the\n", + "company ! s centra | licensed games portal , ( k e n o . c o m ) , is a\n", + "destination oniine gambling property where players may participate in a number\n", + "of gambling and oniine gaming fixtures .\n", + "the foundation of the site is of course an online version of keno . the\n", + "game of keno uses 8 o bails numbered 1 thru 80 . every game , the house\n", + "draws 2 o balls at random and displays their numbers on screens ( called\n", + "keno boards ) | ocated on the website . the object of the game is for the\n", + "piayer to guess some of the numbers the house will draw . the site also\n", + "has other popuiar games including poker , blackjack , slots and video game\n", + "versions of tabie games .\n", + "gaming transactions inc . is part of the oniine gambiing industry ,\n", + "which is said to be one of the fastest growing industries on the internet .\n", + "! ' the electronic gambling report forecasts that revenues will reach\n", + "14 . 5 biliion by 2006 ! ( market statistics : - informa media grp . giobal\n", + "revenues from oniine gambiing wi | | reach 14 . 52 bi | | ion in 20 o 6 , up from\n", + "3 . 81 biilion this year . this is according to a report from the informa\n", + "media grp . , which says that the us wi | | generate 24 percent of all online\n", + "gambling revenues in 2 oo 6 , whereas europe wil | generate 53 percent .\n", + "north american oniine gambling revenues are expected to reach 1 . 99 biliion\n", + "this year and 3 . 85 bi | | ion in 2 oo 6 . in europe , revenues wil | grow from\n", + "1 . 29 billion this year to 7 . 64 biilion in 2 oo 6 . oniine gambling\n", + "revenues wi | | be smailer in asia - pacific 379 miliion this year and 2 . 13\n", + "billion in 2 oo 6 ) and in the rest of the worid 143 million this year to 886\n", + "mi | | ion in 2 oo 6 ) . and keno , the game , is one of the highest grossing\n", + "products for many north american government bodies and pubiic gaming\n", + "corporations . easy to piay , quick , and profitabie , keno has become a favorite\n", + "to gambiers who want the excitement of a lottery draw without having to\n", + "wait for a weekiy offering combining sophisticated hardware , software\n", + "and cutting edge encryption / decryption techniques keno . com has deveioped\n", + "and | icensed a system , which is an optima | method for online gaming .\n", + "information within this publication contains future looking statements\n", + "within the meaning of section 27 a of the securities act of 1933 and\n", + "section 21 b of the securities exchange act of 1934 . any statements that\n", + "express or involve discussions with respect to predictions ,\n", + "expectations , beliefs , pians , projections , objectives , goals , assumptions or future\n", + "events or performance are not statements of historica | fact and may be\n", + "future looking statements . future | ooking statements are based on\n", + "expectations , estimates and projections at the time the statements are made\n", + "that involve a number of risks and uncertainties which couid cause\n", + "actual results or events to differ materia | | y from those presently\n", + "anticipated . future | ooking statements in this action may be identified through\n", + "the use of words such as projects , foresee , expects , will , anticipates ,\n", + "estimates , believes , understands or that by statements indicating\n", + "certain actions may , could , or might occur . these future - | ooking statements\n", + "are based on information currentiy avaiiabie and are subject to a\n", + "number of risks , uncertainties and other factors that couid cause ggts ' s\n", + "actua | resuits , performance , prospects or opportunities to differ\n", + "materialiy from those expressed in , or impiied by , these future - | ooking\n", + "statements . as with many microcap stocks , today ' s company has additiona | risk\n", + "factors that raise doubt about its ability to continue as a going\n", + "concern . ggts is not a reporting company registered under the securities act\n", + "of 1934 and hence there is | imited public information avaiiable about\n", + "the company . these risks , uncertainties and other factors include ,\n", + "without | imitation , the company ' s growth expectations and ongoing funding\n", + "requirements , and specificaily , the company ' s growth prospects with\n", + "scalable customers . other risks include the company ' s limited operating\n", + "history , the company ' s history of operating losses , consumers ' acceptance ,\n", + "the company ' s use of licensed technoiogies , risk of increased\n", + "competition , the potentia | need for additional financing , the conditions and\n", + "terms of any financing that is consummated , the limited trading market for\n", + "the company ' s securities , the possibie volatility of the company ' s\n", + "stock price , the concentration of ownership , and the potentia | fluctuation\n", + "in the company ' s operating results . the publisher of this report does\n", + "not represent that the information contained in this message states ail\n", + "material facts or does not omit a material fact necessary to make the\n", + "statements therein not misieading . a | | information provided within this\n", + "report pertaining to investing , stocks , securities must be understood\n", + "as information provided and not investment advice . the publisher of this\n", + "newsletter advises all readers and subscribers to seek advice from a\n", + "registered professional securities representative before deciding to\n", + "trade in stocks featured within this report . none of the materia | within\n", + "this report shall be construed as any kind of investment advice or\n", + "solicitation . many of these companies are on the verge of bankruptcy . you can\n", + "lose al | your money by investing in this stock . the pubiisher of this\n", + "report is not a registered investment expert . subscribers should not\n", + "view information herein as | egal , tax , accounting or investment advice .\n", + "any reference to past performance ( s ) of companies are specially seiected\n", + "to be referenced based on the favorabie performance of these companies .\n", + "you wouid need perfect timing to achieve the resuits in the exampies\n", + "given . there can be no assurance of that happening . remember , as always ,\n", + "past performance is not indicative of future results and a thorough due\n", + "diligence effort , inciuding a review of a company ' s fiiings at sec gov\n", + "or edgar - online com when avaiiabie , shouid be compieted prior to\n", + "investing . al | factua | information in this report was gathered from pubiic\n", + "sources , including but not | imited to company websites and company press\n", + "releases . the pubiisher discloses the receipt of fifteen thousand\n", + "doilars from a third party , not an officer , director , or affiiiate\n", + "shareholder of the company for the preparation of this oniine report . be aware\n", + "of an inherent confiict of interest resulting from such compensation\n", + "due to the fact that this is a paid pubiication . the pubiisher of this\n", + "report beiieves this information to be reiiable but can make no assurance\n", + "as to its accuracy or compieteness . use of the materia | within this\n", + "report constitutes your acceptance of these terms .\n", + "if you wish to stop future maiiings , or if you feel you have been\n", + "wrongfuliy placed in our membership , piease go here or send a biank\n", + "e mai | with no thanks in the subject to ( - stoxo 042 @ yahoo . com - )\n", + "1
2643ham Subject: re : first delivery - wheeler operating\n", + "vance ,\n", + "deal # 643714 has been created and entered in sitara .\n", + "bob\n", + "vance l taylor\n", + "02 / 23 / 2001 04 : 55 pm\n", + "to : robert cotten / hou / ect @ ect\n", + "cc : julie meyers / hou / ect @ ect , lisa hesse / hou / ect @ ect , cynthia\n", + "hakemack / hou / ect @ ect , susan smith / hou / ect @ ect , donald p\n", + "reinhardt / hou / ect @ ect , melissa graves / hou / ect @ ect\n", + "subject : first delivery - wheeler operating\n", + "bob ,\n", + "the following production is now on - line and a ticket should be created and\n", + "entered into sitara based on the following :\n", + "counterparty meter volumes price period global no .\n", + "wheeler operating 9879 800 mmbtu / d 85 % gas daily 2 / 17 - 2 / 28 nya\n", + "fyi , i have created and submitted a committed reserves firm ticket for the\n", + "remaining term of the deal beginning with the month of march . additionally ,\n", + "this is a producer svcs . deal and should be tracked in the im wellhead\n", + "portfolio . . . attached to the gathering contract .\n", + "thanks ,\n", + "vlt\n", + "x 3 - 6353\n", + "- - - - - - - - - - - - - - - - - - - - - - forwarded by vance l taylor / hou / ect on 02 / 23 / 2001\n", + "04 : 21 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", + "from : esther buckley 02 / 22 / 2001 10 : 39 am\n", + "to : molly l carriere / hou / ect @ ect , clem cernosek / hou / ect @ ect , donna\n", + "consemiu / hou / ect @ ect , robert cook / hou / ect @ ect , howard b camp / hou / ect @ ect ,\n", + "lisa hesse / hou / ect @ ect , nathan l hlavaty / hou / ect @ ect , wayne e\n", + "lightfoot / hou / ect , james mckay / hou / ect @ ect , mary m smith / hou / ect @ ect , steve\n", + "hpl schneider / hou / ect @ ect , melissa graves / hou / ect @ ect , michael\n", + "walters / hou / ect @ ect , jill t zivley / hou / ect @ ect , mary jo johnson / hou / ees @ ees ,\n", + "rita wynne / hou / ect @ ect , lauri a allen / hou / ect @ ect , cheryl\n", + "jones / gpgfin / enron @ enron , reid hansen / gco / enron @ enron , darron c\n", + "giron / hou / ect @ ect , o ' neal d winfree / hou / ect @ ect , susan smith / hou / ect @ ect ,\n", + "gary bryan / hou / ect @ ect , gary a hanks / hou / ect @ ect , donald p\n", + "reinhardt / hou / ect @ ect , vance l taylor / hou / ect @ ect , david\n", + "baumbach / hou / ect @ ect , robert cotten / hou / ect @ ect , brian m riley / hou / ect @ ect ,\n", + "jeff a austin / hou / ees @ ees , cynthia hakemack / hou / ect @ ect , dawn c\n", + "kenne / hou / ect @ ect , lisa csikos / hou / ect @ ect , j r fosdick / gco / enron @ enron ,\n", + "carlos j rodriguez / hou / ect @ ect , stephanie gomes / hou / ect @ ect , pat\n", + "clynes / corp / enron @ enron , tom acton / corp / enron @ enron , robert\n", + "walker / hou / ect @ ect , george weissman / hou / ect @ ect , joanne\n", + "harris / na / enron @ enron , christy sweeney / hou / ect @ ect , earl tisdale / hou / ect @ ect ,\n", + "daren j farmer / hou / ect @ ect\n", + "cc :\n", + "subject : first delivery - wheeler operating\n", + "please see attached letter 0
3137ham Subject: swift - may 2001 vols\n", + "sean ,\n", + "fyi , check the purchase from swift at the tailgate ( meter 9643 ) and make sure to nom the correct quantity .\n", + "mary\n", + "- - - - - - - - - - - - - - - - - - - - - - forwarded by mary poorman / na / enron on 04 / 26 / 2001 07 : 09 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", + "from : joan quick / enron @ enronxgate on 04 / 25 / 2001 06 : 13 pm\n", + "to : carlos j rodriguez / hou / ect @ ect , mary poorman / na / enron @ enron , jackie young / hou / ect @ ect\n", + "cc : brian m riley / hou / ect @ ect , mike morris / corp / enron @ enron\n", + "subject : swift - may 2001 vols\n", + "here is the may first of the month nom :\n", + "king ranch plant 6 , 400 mmbtu / d 0
1629ham Subject: meter variances - ua 4 clean - up\n", + "daren / vance -\n", + "the two meters below are new and have unallocatable flow . . . . . . . i will need a\n", + "purchase for each of them . please respond with a deal number , or further\n", + "suggestions for resolution so that i can clear this up as soon as possible .\n", + "mary\n", + "enron on 09 / 19 / 2000 08 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", + "katherine benedict @ ect\n", + "09 / 18 / 2000 04 : 53 pm\n", + "to : mary poorman / na / enron @ enron , fred boas / hou / ect @ ect , aimee\n", + "lannou / hou / ect @ ect\n", + "cc :\n", + "subject : meter variances - ua 4 clean - up\n", + "hi guys ,\n", + "please take a look at the following meters which are showing up with\n", + "variances on my ua 4 report . once the variance has been cleared , please send\n", + "me an e - mail . please try to clear these within the next couple of days .\n", + "thanks ,\n", + "kathy benedict\n", + "meter number : 9851\n", + "variance : 11 , 204\n", + "meter type : daily swing\n", + "production month : august 2000\n", + "logistics contact : none\n", + "volume mgmt contact : anita luong\n", + "meter number : 9852\n", + "variance 568\n", + "meter type : daily swing\n", + "production month : august 2000\n", + "logistics contact : none\n", + "volume mgmt contact : anita luong 0
1858ham Subject: additional recruiting\n", + "i ' m happy to introduce molly magee as the newest addition to the eops\n", + "recruiting team . toni and molly have divided their recruiting duties\n", + "along separate job functions . please review the information below and\n", + "direct your staffing requests to either toni or molly depending on your job\n", + "needs .\n", + "toni graham - accounting , risk and confirmation / settlements positions ( or\n", + "openings requiring a similar skill set of this candidate pool )\n", + "molly magee - logistics , global data management , research , legal , competitive\n", + "analysis , contract administration and other positions ( or openings requiring\n", + "a similar skill set of this candidate pool )\n", + "thanks for your assistance ,\n", + "hgm 0
3261ham Subject: fw : ercot load comparison\n", + "- - - - - original message - - - - -\n", + "from : gilbert - smith , doug\n", + "sent : tuesday , may 22 , 2001 8 : 38 am\n", + "to : tmartin @ enron . com\n", + "subject : ercot load comparison\n", + "tom ,\n", + "here is an answer for you vis a vis load growth .\n", + "hope it helps ,\n", + "doug\n", + "- - - - - - - - - - - - - - - - - - - - - - forwarded by doug gilbert - smith / corp / enron on 05 / 22 / 2001 08 : 35 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", + "from : kevin cline / enron @ enronxgate on 05 / 21 / 2001 03 : 26 pm\n", + "to : doug gilbert - smith / corp / enron @ enron\n", + "cc : eric saibi / corp / enron @ enron\n", + "subject : ercot load comparison\n", + "please find attached spreadsheet that compares hot days from may 2000 and may 2001 . there are two tabs , one tab contains the days may 16 - 18 , 2000 and the other tab contains the days may 14 - 18 , 2001 . each tab contains both the load data and temp data particular to the days in question . the days most directly comparable are may 17 , 2001 ( thursday ) and may 18 , 2000 ( thursday ) , although the two days preceding may 18 , 2000 were slightly warmer than the two days preceding may 17 , 2001 . the peak on 5 / 17 / 2001 , 44 , 923 mw , is 2 . 78 % higher than the peak on 5 / 18 / 2000 , 43 , 709 mw . with similarly warm days before 5 / 17 / 2001 as there were before 5 / 18 / 2000 , the peak would obviously have been even higher . this would put the year - over - year growth in excess of 3 % . i believe this falls right in line with the growth rate year - over - year from an earlier analysis , somewhere in the range of 3 . 5 % to 4 % .\n", + "let me know if you have any questions or comments . 0
3447ham Subject: meter 6461 , concorde churchill\n", + "one year rate for this one will be $ . 35 / mm for volumes greater than 300 mm / day . price for volumes 300 mm / day or less will be $ . 45 / mm plus a $ 350 per month metering fee . this rate would cover transport to a competitive ship channel market such as equistar channelview . transport rates for a 6 month term are not significantly different - $ . 33 / mm for volumes greater than 300 mm / day and $ . 42 / mm plus the metering fee for volumes 300 mm / day or less . these rates assume a september 1 , 2001 start . these rates good until friday , august 31 , 2001 only ! ! ! get ' em while they ' re hot ! ! 0
2459ham Subject: hpl nom for january 25 , 2001\n", + "( see attached file : hplnol 26 . xls )\n", + "- hplnol 26 . xls 0
2221ham Subject: re : tenaska iv 10 / 00\n", + "we have received all of the money from the spot sales for tenaska iv in\n", + "october 2000 , except for the tenaska iv sale and the $ 0 . 04 fee .\n", + "megan 0
4827spamSubject: jump in to gain substantial ground immediately\n", + "we are very excited about this new upcoming stock about to explode\n", + "montana oil and gas , inc . ( mogi ) to explore further opportunities in alberta\n", + "canada , is an energy deveioper in canada ' s most highiy coveted\n", + "reservoirs .\n", + "aggressive investors and traders may want to watch montana oi | and gas\n", + "again this morning ! montana oil and gas inc . ( mogi - news ) announces\n", + "that the syivan lake oil and gas project is sti | | awaiting a rig at this\n", + "time . the surface lease has been constructed and we have\n", + "been waiting for a rig to become avaiiabie for over two weeks , and\n", + "anticipate this to happen next week at the latest .\n", + "the company has a 25 % working interest in the syivan lake project .\n", + "symbo | - mogi\n", + "current price - . 26\n", + "reasons to consider mogi :\n", + "1 . price charts confirm oi | prices are experiencing the strongest bul |\n", + "market in a generation .\n", + "2 . natura | gas prices have tripled in the | ast two years .\n", + "3 . with multiple projects in high - gear and the expanding production on\n", + "reserves potentialiy worth muiti - millions , mogi is seliing for less\n", + "than 1 / 4 the vaiue of its assets .\n", + "4 . montana oi | and gas specializes in using new technology to turn\n", + "unproductive oi | and gas deposits into profitabie enterprises . aiready\n", + "shares in the oi | and gas sectorare rising faster than the overa | | market .\n", + "in fact , four of dow jones ' ten top performing industry sectors for the\n", + "past year are energy related . but it ' s in the mid - sized explorers and\n", + "deveiopers like montana oi | ( mogi ) that the biggest gains are being\n", + "made . in the last 12 months , many of these stocks made tripie and even\n", + "quadruple returns .\n", + "breaking news ! !\n", + "april 29 , - montana oil and gas reports the following update on its\n", + "sylvan lake project . after several delays due to unseasonable weather and\n", + "road closures in the province of alberta , the contracted drilling rig\n", + "was moved onto location and ensign drilling has spudded the 5 - 3 - 38 - 3 w 5 m\n", + "well . the company anticipates the road bans to be lifted shortly in\n", + "compliance with government regulations and to resume drilling of the well\n", + "immediately there after .\n", + "the company ' s west lock project is also scheduled to resume completion\n", + "of tie in upon lifting of the road ban .\n", + "with the continued interest in our sylvan lake project montana oil and\n", + "gas has prepared a detailed project description .\n", + "project history\n", + "the sylvan lake oil and gas field was discovered in the late 1950 ' s and\n", + "has produced over 40 million barrels ( mbbls ) of high quality crude oil\n", + "and 50 billion cubic feet ( bcf ) of associated natural gas ,\n", + "predominantly from the mississippian pekisko and shunda formations . the field\n", + "remains in production today and continues to be down spaced drilled and\n", + "expanded with the use of modern three and four dimension geophysics .\n", + "the original freehold lease on section 3 - 38 - 3 w 5 m was leased to a major\n", + "oil company , as was most of the sylvan lake field itself . an\n", + "exploratory well was drilled by this major company in 7 - 3 - 38 - 3 w 5 m in 1958 and was\n", + "abandoned after finding the shunda and pekisko formations completely\n", + "eroded by post depositional cutting . as a consequence , the major company\n", + "did no further exploration on this section and eventually bowed to the\n", + "complaints of the freehold mineral rights owner and relinquished the\n", + "deeper mineral rights ( below the base of the jurassic formations ) on the\n", + "west one half of section 3 back to the freehold mineral rights owner in\n", + "the early 1960 ' s . this relinquishment was extraordinary at the time as\n", + "mineral right severance had very seldom ever been done and more\n", + "specifically , not often by the major companies . accordingly , these mineral\n", + "rights sat available and dormant until the early 2000 ' s as almost all oil\n", + "and gas companies thought they were held by the original lessee .\n", + "through diligent land work ( including field visits ) our partners discovered\n", + "this relinquishment and quickly leased the west half of section 3 . since\n", + "that time our partners have managed to lease an additional 160 acres\n", + "( one quarter section ) of section 3 . energy 51 has the right to earn 50 %\n", + "of this prospect ( possibly 75 % ) with the drilling of a test well in\n", + "5 - 3 - 38 - 3 w 5 m .\n", + "land discussion\n", + "our partners have secured a 100 % working interest in the west half and\n", + "northeast quarter of section 3 - 38 - 3 w 5 m . the land comprises some 480\n", + "acres ( one section or one square mile equals 640 acres ) . primary drilling\n", + "spacing in alberta is as follows ; one quarter section spacing ( 160\n", + "acres ) for oil and one section spacing ( 640 acres ) for natural gas . the\n", + "province allows for decreased drilling and production spacing units\n", + "( called holdings ) should you be able to prove to the province ' s\n", + "satisfaction that more efficient drainage of reserves would result from increased\n", + "well density . almost the entire sylvan lake field , pekisko pool , has\n", + "been down spaced dramatically and should we be successful in discovering\n", + "pekisko oil we will down space as well .\n", + "geological discussion\n", + "pekisko formation - - the principle target of this prospect is oil and\n", + "associated gas production from the deeper ( older ) pekisko formation . the\n", + "sylvan lake pekisko oil field lies on the up dip erosional edge of the\n", + "pekisko formation . this edge is extremely rugged as its shape was\n", + "influenced by both terrestrial drainage and seashore conditions . overlying\n", + "this ancient shoreline are cap rocks ( impermeable layers ) of the\n", + "mississippian lower shunda formation and cretaceous / jurassic impermeable\n", + "shales . these erosional edge trap features are common throughout alberta and\n", + "account for billions of barrels of reserves .\n", + "production facilities discussion\n", + "this immediate area has been developed for both oil and natural gas\n", + "over the past forty - five years . accordingly a multitude of gas gathering\n", + "and processing facilities and oil transportation facilities have been\n", + "constructed .\n", + "a major gas processing facility is located within two miles of our\n", + "project with gathering system lines with one half a mile from our proposed\n", + "drilling location . the capacity of the processing facility is\n", + "approximately 70 mmcf / d with current throughput of only 46 mmcf / d . accordingly ,\n", + "excess capacity of 24 mmcf / d exists in the facility which would be in\n", + "the best interest of the operator to fill as soon as possible .\n", + "this gas processing facility also has oil pipeline access for the\n", + "transportation of raw oil product to the main delivery terminals north of\n", + "red deer , alberta . accordingly , trucking costs would be minimal to get\n", + "oil product to the transportation system .\n", + "for more detailed project description please see news release dated\n", + "( fri , apr 29 ) .\n", + "good luck and successfu | trading .\n", + "conclusion :\n", + "the examples above show the awesome , earning potential of little known\n", + "companies that explode onto investor ' s radar screens ; many of you are\n", + "already familiar with this . is mogi poised and positioned to do that for\n", + "you ? then you may feel the time has come to act . . . and please watch\n", + "this one trade tuesday ! go mogi .\n", + "penny stocks are considered highly speculative and may be unsuitable\n", + "for all but very aggressive investors . this profile is not in any way\n", + "affiliated with the featured company . we were compensated 3000 dollars\n", + "to distribute this report . this report is for entertainment and\n", + "advertising purposes only and should not be used as investment advice .\n", + " 1
1811ham Subject: re : enron / hpl actuals for october 11 , 2000 - revision\n", + "please note that the pricing allocation of volumes for october 11 , 2000 should\n", + "be changed as follows .\n", + "teco tap 40 . 000 / enron ; 25 . 209 / hpl iferc ; 84 . 791 / hpl gas daily\n", + "the total nomination of 775 . 000 subject to the iferc pricing was completed on\n", + "october 11 , 2000 . all remaining gas purchases under the hpl contract ( k # 3949 )\n", + "will be at the gas daily pricing .\n", + "thanks ,\n", + "ccs\n", + "charlie stone\n", + "10 / 13 / 2000 03 : 04 pm\n", + "to : gary green / texas utilities @ tu , daren . j . farmer @ enron . com ,\n", + "gary . a . hanks @ enron . com , carlos . j . rodriguez @ enron . com ,\n", + "earl . tisdale @ enron . com , ami . chokshi @ enron . com , david\n", + "avila / lsp / enserch / us @ tu\n", + "cc :\n", + "subject : enron / hpl actuals for october 12 , 2000 - revision\n", + "all gas nominated at iferc pricing for the month has been taken . remaining\n", + "purchases under k # 3949 will be at the gas daily pricing .\n", + "teco tap 40 . 000 / enron ; 110 . 000 / hpl gas daily\n", + "- - - - - - - - - - - - - - - - - - - - - - forwarded by charlie stone / texas utilities on\n", + "10 / 13 / 2000\n", + "02 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", + "gary green\n", + "10 / 13 / 2000 10 : 04 am\n", + "to : charlie stone / texas utilities @ tu , gary green / texas utilities @ tu ,\n", + "daren . j . farmer @ enron . com , gary . a . hanks @ enron . com ,\n", + "carlos . j . rodriguez @ enron . com , earl . tisdale @ enron . com ,\n", + "ami . chokshi @ enron . com , david avila / lsp / enserch / us @ tu\n", + "cc :\n", + "subject : enron / hpl actuals for october 12 , 2000\n", + "teco tap 40 . 000 / enron ; 110 . 000 / hpl iferc 0
2367ham Subject: registration confirmation from spinner . com\n", + "thank you for joining spinner . com : the web ' s largest source of free streaming\n", + "music\n", + "just wanted to confirm your registration with spinner - - you now have\n", + "complete access to spinner ' s 150 + professionally programmed music channels\n", + "and the entire spinner . com website . and just to remind you , the player , the\n", + "website , and ( most importantly ! ) the music are all totally free .\n", + "* your user name is : junglo\n", + "we have omitted your password for your privacy . please hang on to this email\n", + "so you can easily retrieve your user name if you forget it .\n", + "* forget your password ? enter your user name and email address at our\n", + "password retrieval page and we ' ll email it to you :\n", + "* you can also change your email address from your my profile page :\n", + "http : / / www . spinner . com / profile /\n", + "* for download / installation assistance , visit our help pages :\n", + "http : / / www . spinner . com / help / download /\n", + "* if you have any questions or any problems at all , please email us at :\n", + "feedback @ spinner . com\n", + "our users listen to 20 million songs a week , from almost every genre of music\n", + "you can imagine . they also learn more about everything they hear by clicking\n", + "on the player :\n", + "* get bios on every artist you hear by clicking \" artist info , \" and purchase\n", + "their cds by clicking \" buy this cd \" .\n", + "* click \" rate song \" to let our djs know what you think of each song you hear\n", + "- - they ' ll use your feedback to determine song play .\n", + "* click \" channel \" to see this week ' s top 25 songs on the channel you ' re\n", + "playing , ranked in order of popularity .\n", + "* for even more great info on our channels and music , visit spinner . com . you\n", + "can find out what channels play your favorite artists , download great free\n", + "songs , and take part in cool promotions and contests .\n", + "thanks again for registering . if you like what you hear , tell a friend about\n", + "spinner .\n", + "enjoy the music !\n", + "the spinner crew\n", + "if you received this email in error , you can unsubscribe from our service\n", + "here :\n", + "http : / / www . spinner . com / unsubscribe / 0
2829ham Subject: aep transition items\n", + "attached is a brief memo outline some of the transtion issues with hpl to aep\n", + "this is the first draft .\n", + "the itilized items currently require some more action .\n", + "please add any items and forward back to me . i will update\n", + "thanks\n", + "bob 0
3512ham Subject: an inbound message for you has been quarantined\n", + "you have received this message because someone has attempted to send you an e - mail from outside of enron with an attachment type that enron does not allow into our messaging environment . your e - mail has been quarantined and is being held at the mailsweeper server .\n", + "sender : colio @ houston . rr . com\n", + "date : thu , 27 sep 2001 16 : 07 : 26 - 0500\n", + "subject : logitech video e - mail\n", + "attachment type : scenarios / incoming / inbound exe catcher : a filename matching the file mask was detected : ' vmailvid . exe ' .\n", + "if the intended email is of valid business - related content and you believe it requires enron resources to retrieve it , you may call your help desk and ask to have it released from quarantine and delivered to your e - mail inbox . your message will be scanned and checked for viruses prior to requested release . if it contains a virus or there is reason to suspect it is malicious code , it will not be delivered .\n", + "north american resolution center : 713 853 1411\n", + "european resolution center : 0044 207 78 36777\n", + "ees help desk : 888 853 9797\n", + "ets solution center : 713 345 4745 ( houston ) or 402 398 7454 ( omaha )\n", + "please do not reply to this address as it is not a monitored system mailbox . 0
441ham Subject: re : valero gas marketing ; meter # : 8018 / sitara ticket # 148376\n", + "please zero out the volumes until further notice . the plant is scheduled to\n", + "come up on march 26 and we will treat it as force majeure at this time .\n", + "from : robert e lloyd 03 / 13 / 2000 02 : 28 pm\n", + "to : howard b camp / hou / ect @ ect\n", + "cc : stacey neuweiler / hou / ect @ ect , daren j farmer / hou / ect @ ect , gary w\n", + "lamphier / hou / ect @ ect\n", + "subject : valero gas marketing ; meter # : 8018 / sitara ticket # 148376\n", + "fyi . . . only !\n", + "gary agreed to let the deficiency volumes hit the buyback that is set\n", + "presently .\n", + "- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 03 / 13 / 2000\n", + "02 : 25 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", + "from : robert e lloyd 03 / 13 / 2000 02 : 09 pm\n", + "to : gary w lamphier / hou / ect @ ect , stacey neuweiler / hou / ect @ ect , daren j\n", + "farmer / hou / ect @ ect\n", + "cc : pat clynes / corp / enron @ enron , aimee lannou / hou / ect @ ect\n", + "subject : valero gas marketing ; meter # : 8018 / sitara ticket # 148376\n", + "effective march 11 th valero has not pulled any gas on a 35 . 0 / day\n", + "nomination .\n", + "do you want to arrange a buyback for this activity . there is a buyback\n", + "ticket { # 148381 } available\n", + "to handle any underage .\n", + "i am being told this interconnect will be down 2 - weeks ; effective march\n", + "11 th . 0
4453spamSubject: economize 55 % and more with your recipes\n", + "we assists you economise on costly recipes\n", + "medicinal drugs with worths that are as much as 50 % less than retail\n", + "apothecary ' s shop alternatives .\n", + "examine costs\n", + " 1
747ham Subject: memo from office of the chair\n", + "the mid - year performance management cycle will begin on may 15 with the\n", + "opening of the pep system ( the online \" performance evaluation process \"\n", + "feedback system ) . you will be receiving your password for this system in a\n", + "note to go out later from pep . in preparation for the cycle , four training\n", + "classes will be offered to all new employees and to those employees who have\n", + "not previously attended training . enrollment for these classes will be\n", + "offered through the development center \" ernie \" system . for employees who are\n", + "outside the houston area , please contact your hr representative for more\n", + "information .\n", + "these sessions will be held on :\n", + "wednesday , may 10 from 9 : 00 - 10 : 00 a . m . , and three sessions to be held on\n", + "thursday , may 11 from 9 : 00 - 10 : 00 a . m . ; 1 : 30 - 2 : 30 p . m . ; and 3 : 00 - 4 : 00 p . m .\n", + "all sessions will be held at the doubletree hotel .\n", + "to register , click on this link to go directly to the development center\n", + "for those of you who have attended the training before and who are familiar\n", + "with the past performance management process , there have been some\n", + "modifications :\n", + "1 . the performance management process is now enron wide . all enron feedback\n", + "forms have been reduced to three ( vice president ( vp ) / managing director\n", + "( md ) ; management / professional ; and administration / support ) , which all use\n", + "the following criteria :\n", + "? innovation / entrepreneurship\n", + "? communication / setting direction\n", + "? teamwork / interpersonal\n", + "? leadership / vision / values\n", + "? business instinct\n", + "? analytical / technical\n", + "2 . the following six performance ratings will be used consistently on the\n", + "final feedback forms across enron :\n", + "superior\n", + "excellent\n", + "strong\n", + "satisfactory\n", + "needs improvement\n", + "issues\n", + "3 . there will be four recognized peer groups across the company for purposes\n", + "of the prc ( formerly the business review meetings ) meeting .\n", + "? commercial\n", + "? commercial support\n", + "? technical\n", + "? specialized technical\n", + "4 . the performance review process will continue to be used to facilitate :\n", + "? promotions - up to director level only . there will be no officer promotions\n", + "to vp / md at mid - year\n", + "? feedback to employee\n", + "? compensation decisions\n", + "? sharing of performance rating at manager \u0001 , s discretion\n", + "5 . prc meetings will be reviewed by both functional area & business units\n", + "both functional areas and business units will participate in the rating of\n", + "employees to cover both solid and dotted line reporting relationships .\n", + "functional prc meetings will take place first , followed by the final business\n", + "unit meetings . difference in views on an individual employee \u0001 , s rating should\n", + "be discussed and consensus should be reached . the functional area meetings\n", + "are :\n", + "- accounting\n", + "- human resources\n", + "- government affairs\n", + "- rac\n", + "- global finance\n", + "6 . the pep system is now available via the intranet to allow greater access\n", + "from global locations and remotely . the functionality is essentially the\n", + "same . if you would like further information on how to use this system you may\n", + "gain access to the quick reference guide by clicking on the attached\n", + "weblinkhttp : / / home . enron . com / announce / . pdf . if the\n", + "quick reference does not display correctly on your pc , call your help desk\n", + "for assistance , or irma alvarez at 713 - 853 - 1543 to get a hard copy .\n", + "7 . the general responsibilities remain the same regarding the overall\n", + "process :\n", + "employee / reviewer responsibilities :\n", + "select 5 - 7 reviewers\n", + "complete self - assessment\n", + "complete requested feedback forms\n", + "reviewers who cannot provide feedback use the decline request feature\n", + "supervisor responsibilities :\n", + "approve reviewers ( at least 3 of the employee ' s choices )\n", + "communicate modifications to employee\n", + "participate in prc meetings as required\n", + "summarize feedback and complete appropriate feedback form\n", + "communicate feedback to the employee\n", + "schedule for mid - year performance review\n", + "may 15 pep system opens for feedback\n", + "june 9 pep system closes for feedback\n", + "june 12 functional / business unit prc meetings begin\n", + "july 20 prc meetings should finish\n", + "july 31 / august 1 vp & md prc meeting\n", + "as always , if you have further questions on the performance management\n", + "process , you may contact your hr representative . 0
992ham Subject: enron / hpl actuals for june 15 , 2000\n", + "teco tap 115 . 000 / hpl iferc ; 10 . 000 / enron\n", + "texoma 0\n", + "ls hpl lsk 30 . 000 / enron 0
4894spamSubject: we are the best qns\n", + "look at this of - fers :\n", + "v - codin - 225 . 00 ( 90 pi lls )\n", + "valliuum - 153 . 00 ( 90 pi lls )\n", + "vi graa - 270 . 00 ( 90 pi lls )\n", + "cai llis - 348 . 00 ( 90 pi lls )\n", + "codeinne - 126 . 00 ( 90 pi lls )\n", + "xia naax - 171 . 00 ( 90 pi lls )\n", + "all orderrs are delivered by fedex with full tracking 24 / 7 .\n", + "satisfactiionnss guaaranteeed . . .\n", + "http : / / www . ultrameds 4 u . com\n", + "to get rid of maiiling list :\n", + " 1
3348ham Subject: re : epgt\n", + "gloria , the difference between the two pipes for july 2000 is the actuals came in lower than what was nominated and scheduled on mops . there isn ' t anything we can do about that difference , hopefully there is some kind of oba that takes those variances .\n", + "sabra\n", + "- - - - - original message - - - - -\n", + "from : barkowsky , gloria g .\n", + "sent : friday , june 22 , 2001 4 : 50 pm\n", + "to : garcia , clarissa ; farmer , daren j . ; dinari , sabra l .\n", + "subject : epgt\n", + "clarissa - thanks so much for all your help with this pipe ! everything looks great . i just have a couple of paths\n", + "that i need to finish it :\n", + "january 2000 - i need deal # 854688 pathed for epgt and for tetc . according to the invoice , we should have\n", + "11 , 129 dth on the interconnect .\n", + "february 2000 - i need deal # 871184 pathed for hpl and chan . hpl should have 3 , 600 dth and chan should\n", + "have 11 , 500 dth on the interconnect .\n", + "july 2000 - deal # 871172 has an interconnect issue . according to mops contract # 105124 , they received 8 , 275 dth\n", + "on the matagorda 624 , but according to epgt , they delivered 10 , 362 dth to hpl ( ? ) could this possibly\n", + "need to be split somehow , or do you have any other ideas ?\n", + "let me know . thanks , gloria 3 - 7118 0
4961spamSubject: keep your immune system strong\n", + "keep your immune system strong\n", + "http : / / crohellocro . info / ps\n", + "go here for removal\n", + "http : / / www . myfriendlyshop . com / gone\n", + " 1
2331ham Subject: enron / hpl actuals for january 2 , 2001\n", + "teco tap 30 . 000 / enron\n", + "ls hpl lsk ic 30 . 000 / enron 0
3897spamSubject: discreet cheapest prescri ^ ption dru & gs online !\n", + " 1
4647spamSubject: cheapest meds you ' ll find .\n", + "discount drugs . . . save over 70 %\n", + "including new softtabs ! the viagra that disolves under the tongue ! !\n", + "simply place 1 half a pill under your tongue , 15 min before sex .\n", + "you will excperience :\n", + "- a super hard erection\n", + "- more pleasure\n", + "- and greater stamina ! !\n", + "we ship world wide , and no prescription is required ! !\n", + "even if you ' re not impotent , viiagra will increase size , pleasure and power !\n", + "give your wife the loving she deserves ! ! !\n", + "we are cheaper supplier on the internet . retail price is 15 ea , = (\n", + "our internet price is 1 . 17 each ! ! ! = )\n", + "many many other meds available .\n", + "thanks for your time !\n", + "http : / / aujobs . net / ? aa\n", + "check out our party pack as well !\n", + "confidentiality assured !\n", + " 1
2819ham Subject: neon lesson # 5\n", + "please respond to here is your next lesson . . . have fun ! !\n", + "- experiencing god week 5 . doc 0
3762spamSubject: fwd : transferring today ?\n", + "rn $ 0 by tomom . nling , nmicks , npe . . . juest incr honeple . e arpting onlicatir aited tio apayjupy thowing uto yowser tt staay . . .\n", + "wwlearunts . us\n", + "owners holiday ' s holidays default ' s .\n", + "trap pack carefully log society ' s home advising .\n", + "reference home ' s affair reference ' s honest expressing expression trap ' s hope affair ' s define pack ' s soft .\n", + " 1
4778spamSubject: oxyyyyconttin no script needeeed\n", + "{ taaabbsittabbs } { cccheaapicheeep }\n", + "{ ssstttoooppp hhhhurting todayistop da pain now }\n", + "http : / / offfmeebabyy\n", + " 1
2583ham Subject: feb 12 th sale to aquila\n", + "fyi\n", + "daren - - - on the 12 th , there is a sale to aquila on the header system , for\n", + "10 , 000 . . . . . . . . i think we were supplying it with aec . for whatever reason , i\n", + "had the aec 10 . 0 @ # 11230 into midcon . . . which isnt right because there was no\n", + "market for it , and midcon wasnt looking for it , but the aquila deal was at\n", + "# 700 on wgr ( aquila ) . so i went ahead and changed the aec ticket to match up\n", + "with the aquila deal . let me know if you think it is incorrect .\n", + "thanks ,\n", + "mark 0
2203ham Subject: re : hpl meter # 980074 bammel hpl d / p to transco\n", + "daren - what happened in feb . was that transco had allocated a different\n", + "amount other than our measurement . i had been working with fred on getting\n", + "some allocations resolved for several different months . transco told us they\n", + "would not go back and reallocate due to the statute of limitations ( 6\n", + "months ) . february had a significant amount not allocated . we just need a\n", + "deal set up so we can write these volumes off . let me know if you have any\n", + "more questions .\n", + "aim\n", + "clem cernosek\n", + "12 / 12 / 2000 01 : 09 pm\n", + "to : aimee lannou / hou / ect @ ect\n", + "cc :\n", + "subject : re : hpl meter # 980074 bammel hpl d / p to transco\n", + "please response .\n", + "thanks , clem\n", + "- - - - - - - - - - - - - - - - - - - - - - forwarded by clem cernosek / hou / ect on 12 / 12 / 2000 01 : 13\n", + "pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", + "daren j farmer\n", + "12 / 12 / 2000 12 : 35 pm\n", + "to : clem cernosek / hou / ect @ ect\n", + "cc :\n", + "subject : re : hpl meter # 980074 bammel hpl d / p to transco\n", + "what was going on in feb ?\n", + "d\n", + "clem cernosek\n", + "12 / 11 / 2000 04 : 27 pm\n", + "to : daren j farmer / hou / ect @ ect\n", + "cc : aimee lannou / hou / ect @ ect\n", + "subject : hpl meter # 980074 bammel hpl d / p to transco\n", + "daren\n", + "during the period of 1 / 1 / 99 to 9 / 30 / 2000 , the above meter has recorded flow\n", + "on the following days :\n", + "days mmbtus\n", + "11 / 12 / 99 ( 58 )\n", + "12 / 23 / 99 ( 133 )\n", + "2 / 1 / 00 ( 463 )\n", + "2 / 2 / 00 ( 463 )\n", + "2 / 3 / 00 ( 463 )\n", + "2 / 4 / 00 ( 463 )\n", + "2 / 5 / 00 ( 463 )\n", + "2 / 6 / 00 ( 463 )\n", + "2 / 7 / 00 ( 463 )\n", + "2 / 8 / 00 ( 463 )\n", + "2 / 9 / 00 ( 463 )\n", + "2 / 10 / 00 ( 463 )\n", + "2 / 11 / 00 ( 463 )\n", + "2 / 12 / 00 ( 463 )\n", + "2 / 13 / 00 ( 463 )\n", + "2 / 14 / 00 ( 463 )\n", + "2 / 15 / 00 ( 464 )\n", + "2 / 16 / 00 ( 463 )\n", + "2 / 17 / 00 ( 463 )\n", + "2 / 18 / 00 ( 463 )\n", + "2 / 19 / 00 ( 463 )\n", + "2 / 20 / 00 ( 463 )\n", + "2 / 21 / 00 ( 463 )\n", + "2 / 22 / 00 ( 463 )\n", + "2 / 23 / 00 ( 463 )\n", + "2 / 24 / 00 ( 463 )\n", + "2 / 25 / 00 ( 463 )\n", + "2 / 26 / 00 ( 463 )\n", + "2 / 27 / 00 ( 463 )\n", + "2 / 28 / 00 ( 463 )\n", + "2 / 29 / 00 ( 464 )\n", + "6 / 28 / 00 78\n", + "9 / 14 / 00 499\n", + "( 13 , 043 )\n", + "currently , these volumes are being booked to hpl strangers gas contract .\n", + "logistics needs approval to writeoff these volumes to unaccounted for gas .\n", + "if you have any questions , please contact aimee lannou @ x - 30506 .\n", + "thanks , clem\n", + "ps :\n", + "approval to writeoff the volumes to unaccounted for gas 0
1904ham Subject: cleburne - tenaska iv plant\n", + "daren ,\n", + "i ' m trying to put together the 2001 operating budget for the plant . i need a\n", + "conservative forecast , per month , of the price that could be obtained by\n", + "selling our excess volumes .\n", + "thanks . 0
1080ham Subject: ami , , ,\n", + "per our conversation , i would perfer the 2 , 000 difference be placed on the oba\n", + "between lsp and teco ,\n", + "because we requested to cut the flow .\n", + "thanks ! !\n", + "- - - - - - - - - - - - - - - - - - - - - - forwarded by tim powell / lsp / enserch / us on 06 / 27 / 2000\n", + "10 : 58 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", + "ami . chokshi @ enron . com on 06 / 27 / 2000 08 : 42 : 09 am\n", + "to : tim powell / lsp / enserch / us @ tu\n", + "cc : charlie stone / texas utilities @ tu , daren . j . farmer @ enron . com\n", + "subject :\n", + "hey tim ,\n", + "for may 12 , our supply shows that 8 . 000 did flow even though you cut flow\n", + "to 6 . 0 . let me know how you want to handle the situation . sorry for the\n", + "inconvenience .\n", + "ami 0
256ham Subject: 5 th changes @ duke and air liquide\n", + "- - - - - - - - - - - - - - - - - - - - - - forwarded by ami chokshi / corp / enron on 02 / 04 / 2000\n", + "11 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", + "troy _ a _ benoit @ reliantenergy . com on 02 / 04 / 2000 11 : 06 : 27 am\n", + "to : ami chokshi / corp / enron @ enron\n", + "cc :\n", + "subject : 5 th changes @ duke and air liquide\n", + "( see attached file : egmnom - feb . xls )\n", + "- egmnom - feb . xls 0
2789ham Subject: imbalance gas\n", + "just in case worse comes to worse .\n", + "- - - - - - - - - - - - - - - - - - - - - - forwarded by mary poorman / na / enron on 03 / 21 / 2001 11 : 29 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", + "from : juliann kemp / enron @ enronxgate on 03 / 21 / 2001 10 : 39 am\n", + "to : mary poorman / na / enron @ enron\n", + "cc :\n", + "subject : imbalance gas\n", + "mary we just have two . thanks - julie\n", + "contract 012 - 87794 - 02 - 001 ( delivery )\n", + "meter 981506\n", + "we owe them 21 , 771\n", + "981244 ( delivery ) koch refinery\n", + "we owe them 16 , 810 0
4381spamSubject: pictures\n", + "streamlined denizen ajar chased\n", + "heavens hostesses stolid pinched saturated\n", + "staten seventeens juggler abashed\n", + "ice guts centrifugal bauxite wader\n", + "shyness whirr ukrainian understandingly conditioner\n", + "barges entitles vanderpoel\n", + "preset wigwam storming alexei\n", + "supergroup tab mare\n", + "birthright brutalize tolerates depots bubbling\n", + "- -\n", + "phone : 439 - 120 - 6060\n", + "mobile : 590 - 203 - 5805\n", + "email : darden . audley @ houston . rr . com\n", + " 1
760ham Subject: mid year prc meeting\n", + "i would like to have our prc meeting on thursday , 6 / 8 . because of trading ,\n", + "we will not be able to start until noon . please confirm to me asap ( by end\n", + "of day , today ) that you will be available . please keep in mind that we will\n", + "went last time from 1 : 00 pm until almost midnight . your commitment of this\n", + "date will include the evening hours , unless of course , we work quickly and\n", + "efficiently ! ! ! sally ' s meeting is scheduled for tuesday , 6 / 13 , and i plan to\n", + "be on vacation on friday , 6 / 9 . therefore , this is the lastest date that we\n", + "can meet . please make every effort to make this work .\n", + "thanks . 0
4979spamSubject: penny stocks are about timing\n", + "nomad international inc . ( ndin )\n", + "a multi - national internet communications company developing cost\n", + "effective telecommunications through voice over internet protocol ( voip )\n", + "technologies .\n", + "shares outstanding : 34 , 0 oo , 000\n", + "float : 4 , 000 , 0 oo\n", + "current price : o . 09\n", + "wiil it continue higher ? watch this one friday as we know many of you\n", + "like momentum .\n", + "breaking news ! !\n", + "may 18 - - nomad international inc . ( ndin ) commented today on the recent\n", + "announcement by the canadian radio - teievision and teiecommunications\n", + "commission ( crtc ) that they would reguiate voice over internet protoco |\n", + "( voip ) service only when it is provided and used as local telephone\n", + "service .\n", + "in its decision , the crtc determined that in an effort to buiid\n", + "sustainable competition in | ocal teiephone markets , the incumbent carriers\n", + "wiil not be permitted to price their local voip services below cost to\n", + "stifie competition .\n", + "the ruling is a very positive one for nomad in our efforts to enter\n", + "the canadian market with our products via internet service providers ,\n", + "cabie companies and virtual operators . the ruling permits us to enter the\n", + "market with a competitive framework , stated jan oiiver , ceo of nomad\n", + "internationa | inc .\n", + "the key to nomad ' s entry into the voip market is the ability of its\n", + "products to offer services to both broadband and dia | - up customers . though\n", + "broadband is gaining more and more acceptance and utiiization\n", + "worldwide , dial - up remains the primary source of internet connectivity . in the\n", + "u . s . alone , there are over 200 , oo 0 , 000 users of the internet . of the\n", + "tota | users in the u . s . , the total number of users of broadband is only\n", + "approximately 4 o , 0 oo , 00 o ; ( stats by the yankee group ) dia | - up therefore\n", + "represents approximately 8 o % of the entire internet connectivity market .\n", + "the percentage of dia | - up versus broadband users woridwide is even\n", + "higher .\n", + "nomad ' s ability to offer voip products to dial - up customers and service\n", + "providers not only offers significant potentia | for market penetration ,\n", + "but also sets the company apart from its competition in the marketplace\n", + "by offering a unique , proprietary and easiiy adaptabie product .\n", + "about nomad international inc .\n", + "nomad international inc . is a muiti - national internet communications\n", + "company deveioping cost effective telecommunications through voice over\n", + "internet protocol ( voip ) technoiogies . the company ' s revolutionary voip\n", + "product line ca | | ed nomad systems that has dia | - up , broadband , dsl ,\n", + "cable , sate | | ite and wireless capabilities . the company pians on\n", + "targeting : 1 ) national fixed | ine ii iii tier carriers which are interested in\n", + "effectively competing with the dominant carrier in their marketpiace ,\n", + "2 ) large muitinationa | corporations which need to have us or european\n", + "presence by having , ( for exampie ) , a united states number ringing in\n", + "their offices in guatemala or london - - offering business partners a more\n", + "economical way to communicate , and 3 ) immigrants in north america , a\n", + "means of significantiy | owering their communication expense with their\n", + "reiatives in their country of origin .\n", + "conclusion :\n", + "the exampies above show the awesome , earning potential of little known\n", + "companies that explode onto investor ' s radar screens ; many of you are\n", + "aiready famiiiar with this . is ndin poised and positioned to do that for\n", + "you ? then you may feel the time has come to act . . . and piease watch\n", + "this one trade friday ! go ndin .\n", + "penny stocks are considered highiy speculative and may be unsuitabie\n", + "for al | but very aggressive investors . this profiie is not in any way\n", + "affiliated with the featured company . we were compensated 3 ooo do | | ars\n", + "to distribute this report . this report is for entertainment and\n", + "advertising purposes oniy and should not be used as investment advice .\n", + "if you wish to stop future maiiings , or if you fee | you have been\n", + "wrongfuily piaced in our membership , please go here or send a biank\n", + "e mail with no thanks in the subject to\n", + "noneedl 020 @ yahoo . com\n", + " 1
4162spamSubject: anomaly boys from 3881\n", + "uosda apaproved mledms heure\n", + "crack mutagen poliomyelitis axisymmetric virus bernoulli pervade cadenza arena martin cardioid familiar bladdernut inductee donor you tranquil bar kingdom dinnerware pedagogy traipse chromate idle mph diligent company contributor bal\n", + "antipodean escadrille stan affiance antagonist roil siren conrad repression bluejacket conduce continue myriad configuration brute anthem yore pessimal turpitude bum 3\n", + "macintoshdogleg 1
1428ham Subject: re : meter # : 1266 ; august 2000 / allocation exception\n", + "conoco has nominated 5 . 0 / d at this meter . conoco transport can be allocated\n", + "the entire meter flow for the days in which the meter flow\n", + "exceed 5 . 0 mm because they are the only party doing business at the meter .\n", + "hpl may also be able to extract a sell for this overage which is why i\n", + "wanted you to be aware of the daily activity thus far .\n", + "- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 08 / 21 / 2000\n", + "01 : 57 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", + "from : lee l papayoti on 08 / 21 / 2000 01 : 44 pm\n", + "to : robert e lloyd / hou / ect @ ect\n", + "cc : sherlyn schumack / hou / ect @ ect , anita luong / hou / ect @ ect , daren j\n", + "farmer / hou / ect @ ect , gary a hanks / hou / ect @ ect , pat clynes / corp / enron @ enron\n", + "subject : re : meter # : 1266 ; august 2000 / allocation exception\n", + "why are these volumes flowing ?\n", + "from : robert e lloyd 08 / 21 / 2000 01 : 36 pm\n", + "to : lee l papayoti / hou / ect @ ect\n", + "cc : sherlyn schumack / hou / ect @ ect , anita luong / hou / ect @ ect , daren j\n", + "farmer / hou / ect @ ect , gary a hanks / hou / ect @ ect , pat clynes / corp / enron @ enron\n", + "subject : re : meter # : 1266 ; august 2000 / allocation exception\n", + "should i roll this deal to cover august 2000 activity ?\n", + "volumes todate are as follows : 82 mm 8 / 16\n", + "85 mm 8 / 17\n", + "65 mm 8 / 18\n", + "57 mm 8 / 19\n", + "60 mm 8 / 20\n", + "sitara ticket # : 363514\n", + "these small meter flows are causing allocation exceptions for august .\n", + "- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 08 / 21 / 2000\n", + "01 : 27 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", + "from : robert e lloyd 08 / 11 / 2000 03 : 17 pm\n", + "to : howard b camp / hou / ect @ ect , rita wynne / hou / ect @ ect\n", + "cc : pat clynes / corp / enron @ enron , daren j farmer / hou / ect @ ect\n", + "subject : re : meter # : 1266 ; july 2000 activity / allocation exception\n", + "fyi\n", + "- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 08 / 11 / 2000\n", + "03 : 16 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", + "from : robert e lloyd on 08 / 11 / 2000 03 : 16 pm\n", + "to : lee l papayoti / hou / ect @ ect\n", + "cc :\n", + "subject : re : meter # : 1266 ; july 2000 activity / allocation exception\n", + "the volumes are as follows : july lst 414 mmbtu\n", + "july 31 12 mmbtu\n", + "total : 426 mmbtu ' s\n", + "also , the sitara deal # is : 363514\n", + "from : lee l papayoti on 08 / 11 / 2000 02 : 02 pm\n", + "to : robert e lloyd / hou / ect @ ect\n", + "cc : howard b camp / hou / ect @ ect , pat clynes / corp / enron @ enron\n", + "subject : re : meter # : 1266 ; july 2000 activity / allocation exception\n", + "please set up a ticket priced at gas daily houston ship channel midpoint\n", + "minus $ 0 . 03\n", + "also , can you let me know the exact volumes in question on july 1 and july\n", + "31 ? dorcheus wants to know . me too .\n", + "thanks\n", + "lee\n", + "to : lee l papayoti / hou / ect @ ect\n", + "cc : howard b camp / hou / ect @ ect , pat clynes / corp / enron @ enron\n", + "subject : re : meter # : 1266 ; july 2000 activity / allocation exception\n", + "just a reminder that \" allocation close \" is monday , august 14 th .\n", + "a sitara ticket is needed to set up an acctg . arrangement which will\n", + "eliminate the allocation exception for meter # 981266\n", + "{ victoria station # 2 / brandywine } .\n", + "from : lee l papayoti on 08 / 09 / 2000 03 : 33 pm\n", + "to : robert e lloyd / hou / ect @ ect\n", + "cc :\n", + "subject : re : meter # : 1266 ; july 2000 activity / allocation exception\n", + "i ' ll get you a price tomorrow when i meet with him . . .\n", + "from : robert e lloyd 08 / 09 / 2000 12 : 50 pm\n", + "to : lee l papayoti / hou / ect @ ect\n", + "cc : daren j farmer / hou / ect @ ect , pat clynes / corp / enron @ enron , rita\n", + "wynne / hou / ect @ ect , howard b camp / hou / ect @ ect\n", + "subject : meter # : 1266 ; july 2000 activity / allocation exception\n", + "i spoke with bob dorcheus , brandywine about this issue and he suggest you\n", + "and he get together and agree on a\n", + "price because the gas flowed into the plant .\n", + "this gas flowed without a nomination .\n", + "- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 08 / 09 / 2000\n", + "12 : 47 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", + "enron north america corp .\n", + "from : gary a hanks 08 / 09 / 2000 11 : 27 am\n", + "to : robert e lloyd / hou / ect @ ect\n", + "cc : earl tisdale / hou / ect @ ect , pat clynes / corp / enron @ enron , rita\n", + "wynne / hou / ect @ ect , howard b camp / hou / ect @ ect\n", + "subject : meter # : 1266 ; july 2000 activity / allocation exception\n", + "the volumes on meter # 1266 for 7 / 1 / 00 and 7 / 31 / 00 are valid gas flow . 7 / 1 / 00\n", + "volumes are carry over from june activity ( meter was shut in a little after\n", + "9 : 00 am on 7 / 1 / 00 ) . 7 / 31 / 00 volumes were caused by the plant bringing on\n", + "the meter before 9 : 00 am on 8 / 1 / 00 .\n", + "if you have any questions please call . 36449 .\n", + "thanks\n", + "gary h\n", + "- - - - - - - - - - - - - - - - - - - - - - forwarded by gary a hanks / hou / ect on 08 / 09 / 2000 11 : 18\n", + "am - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", + "from : robert e lloyd 08 / 09 / 2000 11 : 17 am\n", + "to : gary a hanks / hou / ect @ ect , earl tisdale / hou / ect @ ect\n", + "cc : pat clynes / corp / enron @ enron , rita wynne / hou / ect @ ect , howard b\n", + "camp / hou / ect @ ect\n", + "subject : meter # : 1266 ; july 2000 activity / allocation exception\n", + "please verify the volume on meter # : 1266 for july lst & 31 st are valid gas\n", + "flow .\n", + "brandywine did not nominate any activity at this meter for july 2000 .0
4365spamSubject: slutty milf wants to meet you\n", + "take that !\n", + "' ilaa - liqaa\n", + " 1
2849ham Subject: fw : crosstex energy , driscoll ranch # 1 , # 3 , meter nos . 9858 and\n", + "9868\n", + "please note the following for april production regarding the crosstex\n", + "contract : 96048744 at the above referenced location .\n", + "thank you ,\n", + "melissa\n", + "- - - - - original message - - - - -\n", + "from : bubert , jerry\n", + "sent : thursday , march 22 , 2001 2 : 19 pm\n", + "to : taylor , vance l .\n", + "cc : flynn , shawna ; graves , melissa ; harris , joanne ; reinhardt , donald p . ;\n", + "riley , brian ; smith , susan ; sweeney , christy ; walker , robert ; weissman , george\n", + "subject : crosstex energy , driscoll ranch # 1 , # 3 , meter nos . 9858 and 9868\n", + "per section 2 . 2 of the gpa , crosstex has elected to sell 4000 mmbtu / d in the\n", + "aggragate at the base contract price of if hsc less $ 0 . 10 , and the excess of\n", + "the available gas over 4000 mmbtu / d in the aggragate at gda hsc less $ 0 . 15 . 0
1518ham Subject: put the 10 on the ft\n", + "the transport volumes decreased from 25000 to 10000 . all 10000 should be on\n", + "contract 012 - 41991 - 203 .\n", + "thanks ,\n", + "ami\n", + "- - - - - - - - - - - - - - - - - - - - - - forwarded by ami chokshi / corp / enron on 08 / 31 / 2000\n", + "10 : 54 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", + "royal _ b _ edmondson @ reliantenergy . com on 08 / 31 / 2000 10 : 47 : 37 am\n", + "to : ami _ chokshi @ enron . com\n", + "cc :\n", + "subject : put the 10 on the ft\n", + "( see attached file : hpl - sept . xls )\n", + "- hpl - sept . xls 0
404ham Subject: 3 / 4 / 2000 and following noms\n", + "hpl can ' t take the extra 15 mmcf / d over the weekend . we ' ll try next week ,\n", + "but for now the nom will stay at 60 mmcf / d , with redeliveries as they have\n", + "been\n", + "-\n", + "50 into pg & e , 7 from fcv , and 3 at carthage .\n", + "- - - - - - - - - - - - - - - - - - - - - - forwarded by bruce mcmills / ftworth / pefs / pec on\n", + "03 / 03 / 2000\n", + "09 : 42 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", + "bruce mcmills\n", + "03 / 03 / 2000 09 : 10 am\n", + "to : dfarmer @ enron . com , briley @ enron . com , stacey . neuweiler @ enron . com\n", + "cc : chad w . cass / gcs / cec / pec @ pec , william e . speckels / gcs / cec / pec @ pec , donna\n", + "c . spencer / gcs / cec / pec @ pec , michael r . cherry / easttexas / pefs / pec @ pec ,\n", + "darrel f . bane / easttexas / pefs / pec @ pec\n", + "subject : 3 / 4 / 2000 and following noms\n", + "this is to nominate 75 , 000 mmbtu / d into eastrans for 3 / 4 / 2000 and following .\n", + "we will deliver 50 , 000 into pg & e , 7 , 000 from fuel cotton valley ( continue\n", + "750\n", + "mmbtu / d sale ) ,\n", + "and 18 , 000 mmbtu / d into your cartwheel agreement at carthage . 0
2933ham Subject: calpine daily gas nomination\n", + ">\n", + ">\n", + "julie , as i mention earlier we hope to start the unit this afternoon but\n", + "are still experiencing difficulties . i will keep you informed . thanks .\n", + "ricky a . archer\n", + "fuel supply\n", + "700 louisiana , suite 2700\n", + "houston , texas 77002\n", + "713 - 830 - 8659 direct\n", + "713 - 830 - 8722 fax\n", + "- calpine daily gas nomination 1 . doc\n", + "- calpine daily gas nomination 1 . doc 0
1409ham Subject: industrial worksheets for august 2000 activity\n", + "attached are the worksheets for august 2000 activity . there are three\n", + "different worksheets { 2 - supply & 1 - market } .\n", + "the market worksheet is preliminary and will continuously be updated\n", + "throughout the month .\n", + "the supply worksheets capture all \" buybacks and the relevant pricing data .\n", + "these three worksheets can be found in two separate files . o :\n", + "logistics / robert lloyd / buydeaug 2000 . xls . . . . . . . . . . . . . supply\n", + "o : logistics / ken\n", + "sorry for the delay in providing you ' ll this data . 0
4807spamSubject: important online banking alert\n", + "dear valued citizensr bank member ,\n", + "due to concerns , for the safety and integrity of the online banking community we have issued the following warning message .\n", + "it has come to our attention that your citizensr bank account information needs to be updated as part of our continuing commitment to protect your account and to reduce the instance of fraud on our website . if you could please take 5 - 10 minutes out of your online experience and renew your records you will not run into any future problems with the online service . however , failure to confirm your records may result in your account suspension .\n", + "once you have confirmed your account records your internet banking service will not be interrupted and will continue as normal .\n", + "to confirm your bank account records please click here .\n", + "note :\n", + "this e - mail was sent on behalf of the online banking community , if you do not have an online banking account with charterr one then this message does not apply to you and you may ignore this message .\n", + "thank you for your time ,\n", + "citizensr financial group .\n", + " 1
\n" + ], + "text/markdown": "\nA data.frame: 5171 × 4\n\n| X <int> | label <chr> | text <chr> | label_num <int> |\n|---|---|---|---|\n| 605 | ham | Subject: enron methanol ; meter # : 988291\nthis is a follow up to the note i gave you on monday , 4 / 3 / 00 { preliminary\nflow data provided by daren } .\nplease override pop ' s daily volume { presently zero } to reflect daily\nactivity you can obtain from gas control .\nthis change is needed asap for economics purposes . | 0 |\n| 2349 | ham | Subject: hpl nom for january 9 , 2001\n( see attached file : hplnol 09 . xls )\n- hplnol 09 . xls | 0 |\n| 3624 | ham | Subject: neon retreat\nho ho ho , we ' re around to that most wonderful time of the year - - - neon leaders retreat time !\ni know that this time of year is extremely hectic , and that it ' s tough to think about anything past the holidays , but life does go on past the week of december 25 through january 1 , and that ' s what i ' d like you to think about for a minute .\non the calender that i handed out at the beginning of the fall semester , the retreat was scheduled for the weekend of january 5 - 6 . but because of a youth ministers conference that brad and dustin are connected with that week , we ' re going to change the date to the following weekend , january 12 - 13 . now comes the part you need to think about .\ni think we all agree that it ' s important for us to get together and have some time to recharge our batteries before we get to far into the spring semester , but it can be a lot of trouble and difficult for us to get away without kids , etc . so , brad came up with a potential alternative for how we can get together on that weekend , and then you can let me know which you prefer .\nthe first option would be to have a retreat similar to what we ' ve done the past several years . this year we could go to the heartland country inn ( www . . com ) outside of brenham . it ' s a nice place , where we ' d have a 13 - bedroom and a 5 - bedroom house side by side . it ' s in the country , real relaxing , but also close to brenham and only about one hour and 15 minutes from here . we can golf , shop in the antique and craft stores in brenham , eat dinner together at the ranch , and spend time with each other . we ' d meet on saturday , and then return on sunday morning , just like what we ' ve done in the past .\nthe second option would be to stay here in houston , have dinner together at a nice restaurant , and then have dessert and a time for visiting and recharging at one of our homes on that saturday evening . this might be easier , but the trade off would be that we wouldn ' t have as much time together . i ' ll let you decide .\nemail me back with what would be your preference , and of course if you ' re available on that weekend . the democratic process will prevail - - majority vote will rule ! let me hear from you as soon as possible , preferably by the end of the weekend . and if the vote doesn ' t go your way , no complaining allowed ( like i tend to do ! )\nhave a great weekend , great golf , great fishing , great shopping , or whatever makes you happy !\nbobby | 0 |\n| 4685 | spam | Subject: photoshop , windows , office . cheap . main trending\nabasements darer prudently fortuitous undergone\nlighthearted charm orinoco taster\nrailroad affluent pornographic cuvier\nirvin parkhouse blameworthy chlorophyll\nrobed diagrammatic fogarty clears bayda\ninconveniencing managing represented smartness hashish\nacademies shareholders unload badness\ndanielson pure caffein\nspaniard chargeable levin\n | 1 |\n| 2030 | ham | Subject: re : indian springs\nthis deal is to book the teco pvr revenue . it is my understanding that teco\njust sends us a check , i haven ' t received an answer as to whether there is a\npredermined price associated with this deal or if teco just lets us know what\nwe are giving . i can continue to chase this deal down if you need . | 0 |\n| 2949 | ham | Subject: ehronline web address change\nthis message is intended for ehronline users only .\ndue to a recent change to ehronline , the url ( aka \" web address \" ) for accessing ehronline needs to be changed on your computer . the change involves adding the letter \" s \" to the \" http \" reference in the url . the url for accessing ehronline should be : https : / / ehronline . enron . com .\nthis change should be made by those who have added the url as a favorite on the browser . | 0 |\n| 2793 | ham | Subject: spring savings certificate - take 30 % off\nsave 30 % when you use our customer appreciation spring savings\ncertificate at foot locker , lady foot locker , kids foot locker and at\nour online stores !\nwelcome to our customer appreciation spring savings certificate !\nuse the special certificate below and receive 30 % off your purchases either in our stores or online . hurry ! this 4 - day sale begins thursday , march 22 and ends sunday , march 25 .\nshare the savings today and e - mail this offer to your friends . many items already are reduced and the 30 % discount is taken off the lowest sale price .\nclick below to print your customer appreciation spring savings certificate . you must present this coupon at any foot locker , lady foot locker or kids foot locker store in the u . s . foot locker canada is not participating in this program .\nready , set , save !\nour spring savings discount will automatically appear when you use the links below or type camlem 21 into the promotion code box during checkout .\nfootlocker . com certificate code : camlem 21\nladyfootlocker . com certificate code : camlem 21\nkidsfootlocker . com certificate code : camlem 21\nremember , returns are hassle - free . simply bring your items to any of our stores nationwide or through the mail .\ndon ' t be left out - register today to learn about our new products , promotions , events and other specials . simply click below .\nterms and conditions . some exclusions apply , please see manager for complete details . certificate must be presented at the time of purchase and cannot be used in conjunction with any other discount offer or associate benefit . not redeemable for cash . applicable taxes must be paid by bearer . cannot be applied to prior purchases or to gift card purchases . void where prohibited , licensed or regulated . catalog exclusions apply . valid thursday , 3 / 22 / 01 through sunday , 3 / 25 / 01 . foot locker canada will not participate in this program .\nif you do not wish to receive future emails please click below to\nunsubscribe :\n | 0 |\n| 4185 | spam | Subject: looking for medication ? we ` re the best source .\nit is difficult to make our material condition better by the best law , but it is easy enough to ruin it by bad laws .\nexcuse me . . . : ) you just found the\nbest and simpliest site for\nmedication on the net . no perscription , easy\ndelivery .\nprivate , secure , and easy .\nbetter see rightly on a pound a week than squint on a million .\nwe ` ve got\nanything that you will ever want .\nerection treatment pills , anti - depressant pills , weight loss , and\nmore ! http : / / splicings . bombahakcx . com / 3 /\nknowledge and human power are synonymous .\nonly high - quality stuff for low rates !\n100 % moneyback guarantee !\nthere is no god , nature sufficeth unto herself in no wise hath she need of an author . | 1 |\n| 2641 | ham | Subject: noms / actual flow for 2 / 26\nwe agree\n- - - - - - - - - - - - - - - - - - - - - - forwarded by melissa jones / texas utilities on\n02 / 27 / 2001\n10 : 33 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\n\" eileen ponton \" on 02 / 27 / 2001 09 : 46 : 26 am\nto : david avila / lsp / enserch / us @ tu , charlie stone / texas utilities @ tu , melissa\njones / texas utilities @ tu , hpl . scheduling @ enron . com ,\nliz . bellamy @ enron . com\ncc :\nsubject : noms / actual flow for 2 / 26\ndate nom flow - mcf flow - mmbtu\n2 / 26 / 01 0 456 469\nbtu = 1 . 027 | 0 |\n| 1870 | ham | Subject: nominations for oct . 21 - 23 , 2000\n( see attached file : hplnl 021 . xls )\n- hplnl 021 . xls | 0 |\n| 4922 | spam | Subject: vocable % rnd - word asceticism\nvcsc - brand new stock for your attention\nvocalscape inc - the stock symbol is : vcsc\nvcsc will be our top stock pick for the month of april - stock expected to\nbounce to 12 cents level\nthe stock hit its all time low and will bounce back\nstock is going to explode in next 5 days - watch it soar\nwatch the stock go crazy this and next week .\nbreaking news - vocalscape inc . announces agreement to resell mix network\nservices\ncurrent price : $ 0 . 025\nwe expect projected speculative price in next 5 days : $ 0 . 12\nwe expect projected speculative price in next 15 days : $ 0 . 15\nvocalscape networks inc . is building a company that ' s revolutionizing the\ntelecommunications industry with the most affordable phone systems , hardware ,\nonline software , and rates in canada and the us . vocalscape , a company with\nglobal reach , is receiving international attention for the development of voice\nover ip ( voip ) application solutions , including the award - winning eyefontm , a\nsoftphone for real - time pc - to - phone . we are an advanced implementer of pbx\nsystems for companies , call centers , itsps and service providers .\nvocalscape has created software and interactive solutions revolving around\nglobal communications and data voice convergence . companies use vocalscape for\nvoice over internet protocol applications like ip pbxs , softswitches , pc 2 phone\nand web 2 phone , providing real - time human interaction and information delivery\nover the internet . through vocalscape ' s solutions , businesses can offer a\nquality voice service to anywhere in the world at rates that are significantly\nlower than current long distance charges . we develop software to run voip\nnetworks , and sell , install and service our own branded voip gateways and\ngatekeeper control software . we also license our software to customers who want\nto brand their own voip solutions .\nvocalscape is committed to making great technology ; challenging the status quo ,\nand building a 21 st century company that changes the way businesses communicate\nand interact through the internet .\ncurrent price : $ 0 . 025\nwe expect projected speculative price in next 5 days : $ 0 . 12\nwe expect projected speculative price in next 15 days : $ 0 . 15\nbreaking news - vocalscape inc . announces agreement to resell mix network\nservices\n- - - - - - - - - -\nkatonah , n . y . , / prnewswire - firstcall via comtex / - - vocalscape , inc . pink : vcsc ) ,\nan emerging leader in the development of voice over internet protocol ( voip )\ntelephony solutions , announced today it has entered into a sales agent agreement\nwith mix networks , inc . a voip enhanced telephony service provider .\nthis agreement provides vocalscape ' s turnkey calling card customers with access\nto mix networks services including north american dids ( phone numbers ) and\ndomestic long distance termination . vocalscape will also be able to supply their\nclients with enhanced voip products including pre - paid calling through mix\nnetworks north american network .\nwe are excited to help companies launch voip business models using our solution\nwith the whole picture from the software to the network needed to route the\ncalls . mix networks gives us the ability to offer wholesale monthly flat rate\nplans and dids to our clients that allow for us to build business models like\npopular voip companies such as vonage and packet 8 , says ryan gibson , vp\nvocalscape networks\nsome legal words before you continue :\ninformation within this email contains forward looking statements within the\nmeaning of section 27 a of the securities act of 1933 and section 21 b of the\nsecurities exchange act of 1934 . any statements that express or involve\ndiscussions with respect to predictions , goals , expectations , beliefs , plans ,\nprojections , objectives , assumptions or future events or performance are not\nstatements of historical fact and may be forward looking statements . forward\nlooking statements are based on expectations , estimates and projections at the\ntime the statements are made that involve a number of risks and uncertainties\nwhich could cause actual results or events to differ materially from those\npresently anticipated . forward looking statements in this action may be\nidentified through the use of words such as : projects , foresee , expects ,\nestimates , believes , understands will , part of : anticipates , or that\nby statements indicating certain actions may , could , or might occur . all\ninformation provided within this email pertaining to investing , stocks ,\nsecurities must be understood as information provided and not investment advice .\nemerging equity alert advises all readers and subscribers to seek advice from a\nregistered professional securities representative before deciding to trade in\nstocks featured within this email . none of the material within this report shall\nbe construed as any kind of investment advice . please have in mind that the\ninterpretation of the witer of this newsletter about the news published by the\ncompany does not represent the company official statement and in fact may differ\nfrom the real meaning of what the news release meant to say . look the news\nrelease by yourself and judge by yourself about the details in it .\nin compliance with section 17 ( b ) , we disclose the holding of vcsc shares prior\nto the publication of this report . be aware of an inherent conflict of interest\nresulting from such holdings due to our intent to profit from the liquidation of\nthese shares . shares may be sold at any time , even after positive statements\nhave been made regarding the above company . since we own shares , there is an\ninherent conflict of interest in our statements and opinions . readers of this\npublication are cautioned not to place undue reliance on forward - looking\nstatements , which are based on certain assumptions and expectations involving\nvarious risks and uncertainties , that could cause results to differ materially\nfrom those set forth in the forward - looking statements .\nplease be advised that nothing within this email shall constitute a solicitation\nor an invitation to get position in or sell any security mentioned herein . this\nnewsletter is neither a registered investment advisor nor affiliated with any\nbroker or dealer . this newsletter was paid $ 49000 from third party to send this\nreport . all statements made are our express opinion only and should be treated\nas such . we may own , take position and sell any securities mentioned at any\ntime . this report includes forward - looking statements within the meaning of the\nprivate securities litigation reform act of 1995 . these statements may include\nterms as projected speculative price expect , believe , may , will ,\nsoar move , undervalued and intend or similar terms .\n | 1 |\n| 3799 | spam | Subject: report 01405 !\nwffur attion brom est inst siupied 1 pgst our riwe asently rest .\ntont to presyou tew cons of benco 4 . yee : fater 45 y . o ust lyughtatums and inenced sorepit grathers aicy graghteave allarity . oarity wow to yur coons , as were then 60 ve mers of oite .\nithat yoit ? ! berst thar ! enth excives 2004 . . .\n | 1 |\n| 1488 | ham | Subject: enron / hpl actuals for august 28 , 2000\nteco tap 20 . 000 / enron ; 120 . 000 / hpl gas daily\nls hpl lsk ic 20 . 000 / enron | 0 |\n| 3948 | spam | Subject: vic . odin n ^ ow\nberne hotbox carnal bride cutworm dyadic\nguardia continuous born gremlin akin counterflow hereafter vocabularian pessimum yaounde cannel bitch penetrate demagogue arbitrary egregious adenosine rubin gil luminosity delicti yarmulke sauterne selfadjoint agleam exeter picofarad consulate dichotomous boyhood balfour spheric frey pillory hoosier fibonacci cat handful\n | 1 |\n| 3418 | ham | Subject: tenaska iv july\ndarren :\nplease remove the price on the tenaska iv sale , deal 384258 , for july and enter the demand fee . the amount should be $ 3 , 902 , 687 . 50 .\nthanks ,\nmegan | 0 |\n| 4791 | spam | Subject: underpriced issue with high return on equity\nstock report .\ndont sieep on this stock ! this is a hot one !\ncompany : gaming transactions inc .\nstock symbol : ggts\ncurrentiy trading at : o . 30\nrating : strong purchase\nnear - term target : 0 . 45\nlong - term target : 1 . oo\nbreaking news for ggts :\ngaming transactions inc . ( ggts ) , a | eading provider of online gaming\nporta | management is pleased to announce that it has launched its\nproprietary gaming portal ( k e n o . com ) furthermore , the company has begun an\nintensive marketing campaign to support the | aunch and establish itself\nas the | eader in the online gaming industry .\n( k e n o . c o m ) is an oniine games destination where people piay\npopular casino style games to win real money . the foundation of the site is\nan online version of keno . the game of keno uses 80 balls numbered 1\nthru 8 o . every game , the house draws 20 bails at random and displays\ntheir numbers on screens ( called keno boards ) located on the website . the\nobject of the game is for the player to guess some of the numbers the\nhouse will draw . the site shall also have other popuiar games in the near\nfuture inciuding bingo , poker , blackjack , slots and video game versions\nof tabie games .\npatrick smyth , ceo of gaming transactions inc . , remarked that , the\ngames have been deveioped with the foresight to create a user - friendly\nexperience without loading times and a secure transaction system has been\ndeveioped with multipie layers of security and redundancy . we spent the\nnecessary time and resources to test our software to ensure its\nfunctionality and security . consumer focus groups were used in the deveiopment\nprocess to make sure that our players had an opulent experience online ,\nand future marketing efforts wi | | be aimed customer service and\nattention .\nabout the company :\ngaming transactions inc . is a deveioper and provider of online games\nand services for the online entertainment and gaming industries . the\ncompany ! s centra | licensed games portal , ( k e n o . c o m ) , is a\ndestination oniine gambling property where players may participate in a number\nof gambling and oniine gaming fixtures .\nthe foundation of the site is of course an online version of keno . the\ngame of keno uses 8 o bails numbered 1 thru 80 . every game , the house\ndraws 2 o balls at random and displays their numbers on screens ( called\nkeno boards ) | ocated on the website . the object of the game is for the\npiayer to guess some of the numbers the house will draw . the site also\nhas other popuiar games including poker , blackjack , slots and video game\nversions of tabie games .\ngaming transactions inc . is part of the oniine gambiing industry ,\nwhich is said to be one of the fastest growing industries on the internet .\n! ' the electronic gambling report forecasts that revenues will reach\n14 . 5 biliion by 2006 ! ( market statistics : - informa media grp . giobal\nrevenues from oniine gambiing wi | | reach 14 . 52 bi | | ion in 20 o 6 , up from\n3 . 81 biilion this year . this is according to a report from the informa\nmedia grp . , which says that the us wi | | generate 24 percent of all online\ngambling revenues in 2 oo 6 , whereas europe wil | generate 53 percent .\nnorth american oniine gambling revenues are expected to reach 1 . 99 biliion\nthis year and 3 . 85 bi | | ion in 2 oo 6 . in europe , revenues wil | grow from\n1 . 29 billion this year to 7 . 64 biilion in 2 oo 6 . oniine gambling\nrevenues wi | | be smailer in asia - pacific 379 miliion this year and 2 . 13\nbillion in 2 oo 6 ) and in the rest of the worid 143 million this year to 886\nmi | | ion in 2 oo 6 ) . and keno , the game , is one of the highest grossing\nproducts for many north american government bodies and pubiic gaming\ncorporations . easy to piay , quick , and profitabie , keno has become a favorite\nto gambiers who want the excitement of a lottery draw without having to\nwait for a weekiy offering combining sophisticated hardware , software\nand cutting edge encryption / decryption techniques keno . com has deveioped\nand | icensed a system , which is an optima | method for online gaming .\ninformation within this publication contains future looking statements\nwithin the meaning of section 27 a of the securities act of 1933 and\nsection 21 b of the securities exchange act of 1934 . any statements that\nexpress or involve discussions with respect to predictions ,\nexpectations , beliefs , pians , projections , objectives , goals , assumptions or future\nevents or performance are not statements of historica | fact and may be\nfuture looking statements . future | ooking statements are based on\nexpectations , estimates and projections at the time the statements are made\nthat involve a number of risks and uncertainties which couid cause\nactual results or events to differ materia | | y from those presently\nanticipated . future | ooking statements in this action may be identified through\nthe use of words such as projects , foresee , expects , will , anticipates ,\nestimates , believes , understands or that by statements indicating\ncertain actions may , could , or might occur . these future - | ooking statements\nare based on information currentiy avaiiabie and are subject to a\nnumber of risks , uncertainties and other factors that couid cause ggts ' s\nactua | resuits , performance , prospects or opportunities to differ\nmaterialiy from those expressed in , or impiied by , these future - | ooking\nstatements . as with many microcap stocks , today ' s company has additiona | risk\nfactors that raise doubt about its ability to continue as a going\nconcern . ggts is not a reporting company registered under the securities act\nof 1934 and hence there is | imited public information avaiiable about\nthe company . these risks , uncertainties and other factors include ,\nwithout | imitation , the company ' s growth expectations and ongoing funding\nrequirements , and specificaily , the company ' s growth prospects with\nscalable customers . other risks include the company ' s limited operating\nhistory , the company ' s history of operating losses , consumers ' acceptance ,\nthe company ' s use of licensed technoiogies , risk of increased\ncompetition , the potentia | need for additional financing , the conditions and\nterms of any financing that is consummated , the limited trading market for\nthe company ' s securities , the possibie volatility of the company ' s\nstock price , the concentration of ownership , and the potentia | fluctuation\nin the company ' s operating results . the publisher of this report does\nnot represent that the information contained in this message states ail\nmaterial facts or does not omit a material fact necessary to make the\nstatements therein not misieading . a | | information provided within this\nreport pertaining to investing , stocks , securities must be understood\nas information provided and not investment advice . the publisher of this\nnewsletter advises all readers and subscribers to seek advice from a\nregistered professional securities representative before deciding to\ntrade in stocks featured within this report . none of the materia | within\nthis report shall be construed as any kind of investment advice or\nsolicitation . many of these companies are on the verge of bankruptcy . you can\nlose al | your money by investing in this stock . the pubiisher of this\nreport is not a registered investment expert . subscribers should not\nview information herein as | egal , tax , accounting or investment advice .\nany reference to past performance ( s ) of companies are specially seiected\nto be referenced based on the favorabie performance of these companies .\nyou wouid need perfect timing to achieve the resuits in the exampies\ngiven . there can be no assurance of that happening . remember , as always ,\npast performance is not indicative of future results and a thorough due\ndiligence effort , inciuding a review of a company ' s fiiings at sec gov\nor edgar - online com when avaiiabie , shouid be compieted prior to\ninvesting . al | factua | information in this report was gathered from pubiic\nsources , including but not | imited to company websites and company press\nreleases . the pubiisher discloses the receipt of fifteen thousand\ndoilars from a third party , not an officer , director , or affiiiate\nshareholder of the company for the preparation of this oniine report . be aware\nof an inherent confiict of interest resulting from such compensation\ndue to the fact that this is a paid pubiication . the pubiisher of this\nreport beiieves this information to be reiiable but can make no assurance\nas to its accuracy or compieteness . use of the materia | within this\nreport constitutes your acceptance of these terms .\nif you wish to stop future maiiings , or if you feel you have been\nwrongfuliy placed in our membership , piease go here or send a biank\ne mai | with no thanks in the subject to ( - stoxo 042 @ yahoo . com - )\n | 1 |\n| 2643 | ham | Subject: re : first delivery - wheeler operating\nvance ,\ndeal # 643714 has been created and entered in sitara .\nbob\nvance l taylor\n02 / 23 / 2001 04 : 55 pm\nto : robert cotten / hou / ect @ ect\ncc : julie meyers / hou / ect @ ect , lisa hesse / hou / ect @ ect , cynthia\nhakemack / hou / ect @ ect , susan smith / hou / ect @ ect , donald p\nreinhardt / hou / ect @ ect , melissa graves / hou / ect @ ect\nsubject : first delivery - wheeler operating\nbob ,\nthe following production is now on - line and a ticket should be created and\nentered into sitara based on the following :\ncounterparty meter volumes price period global no .\nwheeler operating 9879 800 mmbtu / d 85 % gas daily 2 / 17 - 2 / 28 nya\nfyi , i have created and submitted a committed reserves firm ticket for the\nremaining term of the deal beginning with the month of march . additionally ,\nthis is a producer svcs . deal and should be tracked in the im wellhead\nportfolio . . . attached to the gathering contract .\nthanks ,\nvlt\nx 3 - 6353\n- - - - - - - - - - - - - - - - - - - - - - forwarded by vance l taylor / hou / ect on 02 / 23 / 2001\n04 : 21 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : esther buckley 02 / 22 / 2001 10 : 39 am\nto : molly l carriere / hou / ect @ ect , clem cernosek / hou / ect @ ect , donna\nconsemiu / hou / ect @ ect , robert cook / hou / ect @ ect , howard b camp / hou / ect @ ect ,\nlisa hesse / hou / ect @ ect , nathan l hlavaty / hou / ect @ ect , wayne e\nlightfoot / hou / ect , james mckay / hou / ect @ ect , mary m smith / hou / ect @ ect , steve\nhpl schneider / hou / ect @ ect , melissa graves / hou / ect @ ect , michael\nwalters / hou / ect @ ect , jill t zivley / hou / ect @ ect , mary jo johnson / hou / ees @ ees ,\nrita wynne / hou / ect @ ect , lauri a allen / hou / ect @ ect , cheryl\njones / gpgfin / enron @ enron , reid hansen / gco / enron @ enron , darron c\ngiron / hou / ect @ ect , o ' neal d winfree / hou / ect @ ect , susan smith / hou / ect @ ect ,\ngary bryan / hou / ect @ ect , gary a hanks / hou / ect @ ect , donald p\nreinhardt / hou / ect @ ect , vance l taylor / hou / ect @ ect , david\nbaumbach / hou / ect @ ect , robert cotten / hou / ect @ ect , brian m riley / hou / ect @ ect ,\njeff a austin / hou / ees @ ees , cynthia hakemack / hou / ect @ ect , dawn c\nkenne / hou / ect @ ect , lisa csikos / hou / ect @ ect , j r fosdick / gco / enron @ enron ,\ncarlos j rodriguez / hou / ect @ ect , stephanie gomes / hou / ect @ ect , pat\nclynes / corp / enron @ enron , tom acton / corp / enron @ enron , robert\nwalker / hou / ect @ ect , george weissman / hou / ect @ ect , joanne\nharris / na / enron @ enron , christy sweeney / hou / ect @ ect , earl tisdale / hou / ect @ ect ,\ndaren j farmer / hou / ect @ ect\ncc :\nsubject : first delivery - wheeler operating\nplease see attached letter | 0 |\n| 3137 | ham | Subject: swift - may 2001 vols\nsean ,\nfyi , check the purchase from swift at the tailgate ( meter 9643 ) and make sure to nom the correct quantity .\nmary\n- - - - - - - - - - - - - - - - - - - - - - forwarded by mary poorman / na / enron on 04 / 26 / 2001 07 : 09 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : joan quick / enron @ enronxgate on 04 / 25 / 2001 06 : 13 pm\nto : carlos j rodriguez / hou / ect @ ect , mary poorman / na / enron @ enron , jackie young / hou / ect @ ect\ncc : brian m riley / hou / ect @ ect , mike morris / corp / enron @ enron\nsubject : swift - may 2001 vols\nhere is the may first of the month nom :\nking ranch plant 6 , 400 mmbtu / d | 0 |\n| 1629 | ham | Subject: meter variances - ua 4 clean - up\ndaren / vance -\nthe two meters below are new and have unallocatable flow . . . . . . . i will need a\npurchase for each of them . please respond with a deal number , or further\nsuggestions for resolution so that i can clear this up as soon as possible .\nmary\nenron on 09 / 19 / 2000 08 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\nkatherine benedict @ ect\n09 / 18 / 2000 04 : 53 pm\nto : mary poorman / na / enron @ enron , fred boas / hou / ect @ ect , aimee\nlannou / hou / ect @ ect\ncc :\nsubject : meter variances - ua 4 clean - up\nhi guys ,\nplease take a look at the following meters which are showing up with\nvariances on my ua 4 report . once the variance has been cleared , please send\nme an e - mail . please try to clear these within the next couple of days .\nthanks ,\nkathy benedict\nmeter number : 9851\nvariance : 11 , 204\nmeter type : daily swing\nproduction month : august 2000\nlogistics contact : none\nvolume mgmt contact : anita luong\nmeter number : 9852\nvariance 568\nmeter type : daily swing\nproduction month : august 2000\nlogistics contact : none\nvolume mgmt contact : anita luong | 0 |\n| 1858 | ham | Subject: additional recruiting\ni ' m happy to introduce molly magee as the newest addition to the eops\nrecruiting team . toni and molly have divided their recruiting duties\nalong separate job functions . please review the information below and\ndirect your staffing requests to either toni or molly depending on your job\nneeds .\ntoni graham - accounting , risk and confirmation / settlements positions ( or\nopenings requiring a similar skill set of this candidate pool )\nmolly magee - logistics , global data management , research , legal , competitive\nanalysis , contract administration and other positions ( or openings requiring\na similar skill set of this candidate pool )\nthanks for your assistance ,\nhgm | 0 |\n| 3261 | ham | Subject: fw : ercot load comparison\n- - - - - original message - - - - -\nfrom : gilbert - smith , doug\nsent : tuesday , may 22 , 2001 8 : 38 am\nto : tmartin @ enron . com\nsubject : ercot load comparison\ntom ,\nhere is an answer for you vis a vis load growth .\nhope it helps ,\ndoug\n- - - - - - - - - - - - - - - - - - - - - - forwarded by doug gilbert - smith / corp / enron on 05 / 22 / 2001 08 : 35 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : kevin cline / enron @ enronxgate on 05 / 21 / 2001 03 : 26 pm\nto : doug gilbert - smith / corp / enron @ enron\ncc : eric saibi / corp / enron @ enron\nsubject : ercot load comparison\nplease find attached spreadsheet that compares hot days from may 2000 and may 2001 . there are two tabs , one tab contains the days may 16 - 18 , 2000 and the other tab contains the days may 14 - 18 , 2001 . each tab contains both the load data and temp data particular to the days in question . the days most directly comparable are may 17 , 2001 ( thursday ) and may 18 , 2000 ( thursday ) , although the two days preceding may 18 , 2000 were slightly warmer than the two days preceding may 17 , 2001 . the peak on 5 / 17 / 2001 , 44 , 923 mw , is 2 . 78 % higher than the peak on 5 / 18 / 2000 , 43 , 709 mw . with similarly warm days before 5 / 17 / 2001 as there were before 5 / 18 / 2000 , the peak would obviously have been even higher . this would put the year - over - year growth in excess of 3 % . i believe this falls right in line with the growth rate year - over - year from an earlier analysis , somewhere in the range of 3 . 5 % to 4 % .\nlet me know if you have any questions or comments . | 0 |\n| 3447 | ham | Subject: meter 6461 , concorde churchill\none year rate for this one will be $ . 35 / mm for volumes greater than 300 mm / day . price for volumes 300 mm / day or less will be $ . 45 / mm plus a $ 350 per month metering fee . this rate would cover transport to a competitive ship channel market such as equistar channelview . transport rates for a 6 month term are not significantly different - $ . 33 / mm for volumes greater than 300 mm / day and $ . 42 / mm plus the metering fee for volumes 300 mm / day or less . these rates assume a september 1 , 2001 start . these rates good until friday , august 31 , 2001 only ! ! ! get ' em while they ' re hot ! ! | 0 |\n| 2459 | ham | Subject: hpl nom for january 25 , 2001\n( see attached file : hplnol 26 . xls )\n- hplnol 26 . xls | 0 |\n| 2221 | ham | Subject: re : tenaska iv 10 / 00\nwe have received all of the money from the spot sales for tenaska iv in\noctober 2000 , except for the tenaska iv sale and the $ 0 . 04 fee .\nmegan | 0 |\n| 4827 | spam | Subject: jump in to gain substantial ground immediately\nwe are very excited about this new upcoming stock about to explode\nmontana oil and gas , inc . ( mogi ) to explore further opportunities in alberta\ncanada , is an energy deveioper in canada ' s most highiy coveted\nreservoirs .\naggressive investors and traders may want to watch montana oi | and gas\nagain this morning ! montana oil and gas inc . ( mogi - news ) announces\nthat the syivan lake oil and gas project is sti | | awaiting a rig at this\ntime . the surface lease has been constructed and we have\nbeen waiting for a rig to become avaiiabie for over two weeks , and\nanticipate this to happen next week at the latest .\nthe company has a 25 % working interest in the syivan lake project .\nsymbo | - mogi\ncurrent price - . 26\nreasons to consider mogi :\n1 . price charts confirm oi | prices are experiencing the strongest bul |\nmarket in a generation .\n2 . natura | gas prices have tripled in the | ast two years .\n3 . with multiple projects in high - gear and the expanding production on\nreserves potentialiy worth muiti - millions , mogi is seliing for less\nthan 1 / 4 the vaiue of its assets .\n4 . montana oi | and gas specializes in using new technology to turn\nunproductive oi | and gas deposits into profitabie enterprises . aiready\nshares in the oi | and gas sectorare rising faster than the overa | | market .\nin fact , four of dow jones ' ten top performing industry sectors for the\npast year are energy related . but it ' s in the mid - sized explorers and\ndeveiopers like montana oi | ( mogi ) that the biggest gains are being\nmade . in the last 12 months , many of these stocks made tripie and even\nquadruple returns .\nbreaking news ! !\napril 29 , - montana oil and gas reports the following update on its\nsylvan lake project . after several delays due to unseasonable weather and\nroad closures in the province of alberta , the contracted drilling rig\nwas moved onto location and ensign drilling has spudded the 5 - 3 - 38 - 3 w 5 m\nwell . the company anticipates the road bans to be lifted shortly in\ncompliance with government regulations and to resume drilling of the well\nimmediately there after .\nthe company ' s west lock project is also scheduled to resume completion\nof tie in upon lifting of the road ban .\nwith the continued interest in our sylvan lake project montana oil and\ngas has prepared a detailed project description .\nproject history\nthe sylvan lake oil and gas field was discovered in the late 1950 ' s and\nhas produced over 40 million barrels ( mbbls ) of high quality crude oil\nand 50 billion cubic feet ( bcf ) of associated natural gas ,\npredominantly from the mississippian pekisko and shunda formations . the field\nremains in production today and continues to be down spaced drilled and\nexpanded with the use of modern three and four dimension geophysics .\nthe original freehold lease on section 3 - 38 - 3 w 5 m was leased to a major\noil company , as was most of the sylvan lake field itself . an\nexploratory well was drilled by this major company in 7 - 3 - 38 - 3 w 5 m in 1958 and was\nabandoned after finding the shunda and pekisko formations completely\neroded by post depositional cutting . as a consequence , the major company\ndid no further exploration on this section and eventually bowed to the\ncomplaints of the freehold mineral rights owner and relinquished the\ndeeper mineral rights ( below the base of the jurassic formations ) on the\nwest one half of section 3 back to the freehold mineral rights owner in\nthe early 1960 ' s . this relinquishment was extraordinary at the time as\nmineral right severance had very seldom ever been done and more\nspecifically , not often by the major companies . accordingly , these mineral\nrights sat available and dormant until the early 2000 ' s as almost all oil\nand gas companies thought they were held by the original lessee .\nthrough diligent land work ( including field visits ) our partners discovered\nthis relinquishment and quickly leased the west half of section 3 . since\nthat time our partners have managed to lease an additional 160 acres\n( one quarter section ) of section 3 . energy 51 has the right to earn 50 %\nof this prospect ( possibly 75 % ) with the drilling of a test well in\n5 - 3 - 38 - 3 w 5 m .\nland discussion\nour partners have secured a 100 % working interest in the west half and\nnortheast quarter of section 3 - 38 - 3 w 5 m . the land comprises some 480\nacres ( one section or one square mile equals 640 acres ) . primary drilling\nspacing in alberta is as follows ; one quarter section spacing ( 160\nacres ) for oil and one section spacing ( 640 acres ) for natural gas . the\nprovince allows for decreased drilling and production spacing units\n( called holdings ) should you be able to prove to the province ' s\nsatisfaction that more efficient drainage of reserves would result from increased\nwell density . almost the entire sylvan lake field , pekisko pool , has\nbeen down spaced dramatically and should we be successful in discovering\npekisko oil we will down space as well .\ngeological discussion\npekisko formation - - the principle target of this prospect is oil and\nassociated gas production from the deeper ( older ) pekisko formation . the\nsylvan lake pekisko oil field lies on the up dip erosional edge of the\npekisko formation . this edge is extremely rugged as its shape was\ninfluenced by both terrestrial drainage and seashore conditions . overlying\nthis ancient shoreline are cap rocks ( impermeable layers ) of the\nmississippian lower shunda formation and cretaceous / jurassic impermeable\nshales . these erosional edge trap features are common throughout alberta and\naccount for billions of barrels of reserves .\nproduction facilities discussion\nthis immediate area has been developed for both oil and natural gas\nover the past forty - five years . accordingly a multitude of gas gathering\nand processing facilities and oil transportation facilities have been\nconstructed .\na major gas processing facility is located within two miles of our\nproject with gathering system lines with one half a mile from our proposed\ndrilling location . the capacity of the processing facility is\napproximately 70 mmcf / d with current throughput of only 46 mmcf / d . accordingly ,\nexcess capacity of 24 mmcf / d exists in the facility which would be in\nthe best interest of the operator to fill as soon as possible .\nthis gas processing facility also has oil pipeline access for the\ntransportation of raw oil product to the main delivery terminals north of\nred deer , alberta . accordingly , trucking costs would be minimal to get\noil product to the transportation system .\nfor more detailed project description please see news release dated\n( fri , apr 29 ) .\ngood luck and successfu | trading .\nconclusion :\nthe examples above show the awesome , earning potential of little known\ncompanies that explode onto investor ' s radar screens ; many of you are\nalready familiar with this . is mogi poised and positioned to do that for\nyou ? then you may feel the time has come to act . . . and please watch\nthis one trade tuesday ! go mogi .\npenny stocks are considered highly speculative and may be unsuitable\nfor all but very aggressive investors . this profile is not in any way\naffiliated with the featured company . we were compensated 3000 dollars\nto distribute this report . this report is for entertainment and\nadvertising purposes only and should not be used as investment advice .\n | 1 |\n| 1811 | ham | Subject: re : enron / hpl actuals for october 11 , 2000 - revision\nplease note that the pricing allocation of volumes for october 11 , 2000 should\nbe changed as follows .\nteco tap 40 . 000 / enron ; 25 . 209 / hpl iferc ; 84 . 791 / hpl gas daily\nthe total nomination of 775 . 000 subject to the iferc pricing was completed on\noctober 11 , 2000 . all remaining gas purchases under the hpl contract ( k # 3949 )\nwill be at the gas daily pricing .\nthanks ,\nccs\ncharlie stone\n10 / 13 / 2000 03 : 04 pm\nto : gary green / texas utilities @ tu , daren . j . farmer @ enron . com ,\ngary . a . hanks @ enron . com , carlos . j . rodriguez @ enron . com ,\nearl . tisdale @ enron . com , ami . chokshi @ enron . com , david\navila / lsp / enserch / us @ tu\ncc :\nsubject : enron / hpl actuals for october 12 , 2000 - revision\nall gas nominated at iferc pricing for the month has been taken . remaining\npurchases under k # 3949 will be at the gas daily pricing .\nteco tap 40 . 000 / enron ; 110 . 000 / hpl gas daily\n- - - - - - - - - - - - - - - - - - - - - - forwarded by charlie stone / texas utilities on\n10 / 13 / 2000\n02 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\ngary green\n10 / 13 / 2000 10 : 04 am\nto : charlie stone / texas utilities @ tu , gary green / texas utilities @ tu ,\ndaren . j . farmer @ enron . com , gary . a . hanks @ enron . com ,\ncarlos . j . rodriguez @ enron . com , earl . tisdale @ enron . com ,\nami . chokshi @ enron . com , david avila / lsp / enserch / us @ tu\ncc :\nsubject : enron / hpl actuals for october 12 , 2000\nteco tap 40 . 000 / enron ; 110 . 000 / hpl iferc | 0 |\n| 2367 | ham | Subject: registration confirmation from spinner . com\nthank you for joining spinner . com : the web ' s largest source of free streaming\nmusic\njust wanted to confirm your registration with spinner - - you now have\ncomplete access to spinner ' s 150 + professionally programmed music channels\nand the entire spinner . com website . and just to remind you , the player , the\nwebsite , and ( most importantly ! ) the music are all totally free .\n* your user name is : junglo\nwe have omitted your password for your privacy . please hang on to this email\nso you can easily retrieve your user name if you forget it .\n* forget your password ? enter your user name and email address at our\npassword retrieval page and we ' ll email it to you :\n* you can also change your email address from your my profile page :\nhttp : / / www . spinner . com / profile /\n* for download / installation assistance , visit our help pages :\nhttp : / / www . spinner . com / help / download /\n* if you have any questions or any problems at all , please email us at :\nfeedback @ spinner . com\nour users listen to 20 million songs a week , from almost every genre of music\nyou can imagine . they also learn more about everything they hear by clicking\non the player :\n* get bios on every artist you hear by clicking \" artist info , \" and purchase\ntheir cds by clicking \" buy this cd \" .\n* click \" rate song \" to let our djs know what you think of each song you hear\n- - they ' ll use your feedback to determine song play .\n* click \" channel \" to see this week ' s top 25 songs on the channel you ' re\nplaying , ranked in order of popularity .\n* for even more great info on our channels and music , visit spinner . com . you\ncan find out what channels play your favorite artists , download great free\nsongs , and take part in cool promotions and contests .\nthanks again for registering . if you like what you hear , tell a friend about\nspinner .\nenjoy the music !\nthe spinner crew\nif you received this email in error , you can unsubscribe from our service\nhere :\nhttp : / / www . spinner . com / unsubscribe / | 0 |\n| 2829 | ham | Subject: aep transition items\nattached is a brief memo outline some of the transtion issues with hpl to aep\nthis is the first draft .\nthe itilized items currently require some more action .\nplease add any items and forward back to me . i will update\nthanks\nbob | 0 |\n| 3512 | ham | Subject: an inbound message for you has been quarantined\nyou have received this message because someone has attempted to send you an e - mail from outside of enron with an attachment type that enron does not allow into our messaging environment . your e - mail has been quarantined and is being held at the mailsweeper server .\nsender : colio @ houston . rr . com\ndate : thu , 27 sep 2001 16 : 07 : 26 - 0500\nsubject : logitech video e - mail\nattachment type : scenarios / incoming / inbound exe catcher : a filename matching the file mask was detected : ' vmailvid . exe ' .\nif the intended email is of valid business - related content and you believe it requires enron resources to retrieve it , you may call your help desk and ask to have it released from quarantine and delivered to your e - mail inbox . your message will be scanned and checked for viruses prior to requested release . if it contains a virus or there is reason to suspect it is malicious code , it will not be delivered .\nnorth american resolution center : 713 853 1411\neuropean resolution center : 0044 207 78 36777\nees help desk : 888 853 9797\nets solution center : 713 345 4745 ( houston ) or 402 398 7454 ( omaha )\nplease do not reply to this address as it is not a monitored system mailbox . | 0 |\n| 441 | ham | Subject: re : valero gas marketing ; meter # : 8018 / sitara ticket # 148376\nplease zero out the volumes until further notice . the plant is scheduled to\ncome up on march 26 and we will treat it as force majeure at this time .\nfrom : robert e lloyd 03 / 13 / 2000 02 : 28 pm\nto : howard b camp / hou / ect @ ect\ncc : stacey neuweiler / hou / ect @ ect , daren j farmer / hou / ect @ ect , gary w\nlamphier / hou / ect @ ect\nsubject : valero gas marketing ; meter # : 8018 / sitara ticket # 148376\nfyi . . . only !\ngary agreed to let the deficiency volumes hit the buyback that is set\npresently .\n- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 03 / 13 / 2000\n02 : 25 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : robert e lloyd 03 / 13 / 2000 02 : 09 pm\nto : gary w lamphier / hou / ect @ ect , stacey neuweiler / hou / ect @ ect , daren j\nfarmer / hou / ect @ ect\ncc : pat clynes / corp / enron @ enron , aimee lannou / hou / ect @ ect\nsubject : valero gas marketing ; meter # : 8018 / sitara ticket # 148376\neffective march 11 th valero has not pulled any gas on a 35 . 0 / day\nnomination .\ndo you want to arrange a buyback for this activity . there is a buyback\nticket { # 148381 } available\nto handle any underage .\ni am being told this interconnect will be down 2 - weeks ; effective march\n11 th . | 0 |\n| ⋮ | ⋮ | ⋮ | ⋮ |\n| 4453 | spam | Subject: economize 55 % and more with your recipes\nwe assists you economise on costly recipes\nmedicinal drugs with worths that are as much as 50 % less than retail\napothecary ' s shop alternatives .\nexamine costs\n | 1 |\n| 747 | ham | Subject: memo from office of the chair\nthe mid - year performance management cycle will begin on may 15 with the\nopening of the pep system ( the online \" performance evaluation process \"\nfeedback system ) . you will be receiving your password for this system in a\nnote to go out later from pep . in preparation for the cycle , four training\nclasses will be offered to all new employees and to those employees who have\nnot previously attended training . enrollment for these classes will be\noffered through the development center \" ernie \" system . for employees who are\noutside the houston area , please contact your hr representative for more\ninformation .\nthese sessions will be held on :\nwednesday , may 10 from 9 : 00 - 10 : 00 a . m . , and three sessions to be held on\nthursday , may 11 from 9 : 00 - 10 : 00 a . m . ; 1 : 30 - 2 : 30 p . m . ; and 3 : 00 - 4 : 00 p . m .\nall sessions will be held at the doubletree hotel .\nto register , click on this link to go directly to the development center\nfor those of you who have attended the training before and who are familiar\nwith the past performance management process , there have been some\nmodifications :\n1 . the performance management process is now enron wide . all enron feedback\nforms have been reduced to three ( vice president ( vp ) / managing director\n( md ) ; management / professional ; and administration / support ) , which all use\nthe following criteria :\n? innovation / entrepreneurship\n? communication / setting direction\n? teamwork / interpersonal\n? leadership / vision / values\n? business instinct\n? analytical / technical\n2 . the following six performance ratings will be used consistently on the\nfinal feedback forms across enron :\nsuperior\nexcellent\nstrong\nsatisfactory\nneeds improvement\nissues\n3 . there will be four recognized peer groups across the company for purposes\nof the prc ( formerly the business review meetings ) meeting .\n? commercial\n? commercial support\n? technical\n? specialized technical\n4 . the performance review process will continue to be used to facilitate :\n? promotions - up to director level only . there will be no officer promotions\nto vp / md at mid - year\n? feedback to employee\n? compensation decisions\n? sharing of performance rating at manager \u0001 , s discretion\n5 . prc meetings will be reviewed by both functional area & business units\nboth functional areas and business units will participate in the rating of\nemployees to cover both solid and dotted line reporting relationships .\nfunctional prc meetings will take place first , followed by the final business\nunit meetings . difference in views on an individual employee \u0001 , s rating should\nbe discussed and consensus should be reached . the functional area meetings\nare :\n- accounting\n- human resources\n- government affairs\n- rac\n- global finance\n6 . the pep system is now available via the intranet to allow greater access\nfrom global locations and remotely . the functionality is essentially the\nsame . if you would like further information on how to use this system you may\ngain access to the quick reference guide by clicking on the attached\nweblinkhttp : / / home . enron . com / announce / . pdf . if the\nquick reference does not display correctly on your pc , call your help desk\nfor assistance , or irma alvarez at 713 - 853 - 1543 to get a hard copy .\n7 . the general responsibilities remain the same regarding the overall\nprocess :\nemployee / reviewer responsibilities :\nselect 5 - 7 reviewers\ncomplete self - assessment\ncomplete requested feedback forms\nreviewers who cannot provide feedback use the decline request feature\nsupervisor responsibilities :\napprove reviewers ( at least 3 of the employee ' s choices )\ncommunicate modifications to employee\nparticipate in prc meetings as required\nsummarize feedback and complete appropriate feedback form\ncommunicate feedback to the employee\nschedule for mid - year performance review\nmay 15 pep system opens for feedback\njune 9 pep system closes for feedback\njune 12 functional / business unit prc meetings begin\njuly 20 prc meetings should finish\njuly 31 / august 1 vp & md prc meeting\nas always , if you have further questions on the performance management\nprocess , you may contact your hr representative . | 0 |\n| 992 | ham | Subject: enron / hpl actuals for june 15 , 2000\nteco tap 115 . 000 / hpl iferc ; 10 . 000 / enron\ntexoma 0\nls hpl lsk 30 . 000 / enron | 0 |\n| 4894 | spam | Subject: we are the best qns\nlook at this of - fers :\nv - codin - 225 . 00 ( 90 pi lls )\nvalliuum - 153 . 00 ( 90 pi lls )\nvi graa - 270 . 00 ( 90 pi lls )\ncai llis - 348 . 00 ( 90 pi lls )\ncodeinne - 126 . 00 ( 90 pi lls )\nxia naax - 171 . 00 ( 90 pi lls )\nall orderrs are delivered by fedex with full tracking 24 / 7 .\nsatisfactiionnss guaaranteeed . . .\nhttp : / / www . ultrameds 4 u . com\nto get rid of maiiling list :\n | 1 |\n| 3348 | ham | Subject: re : epgt\ngloria , the difference between the two pipes for july 2000 is the actuals came in lower than what was nominated and scheduled on mops . there isn ' t anything we can do about that difference , hopefully there is some kind of oba that takes those variances .\nsabra\n- - - - - original message - - - - -\nfrom : barkowsky , gloria g .\nsent : friday , june 22 , 2001 4 : 50 pm\nto : garcia , clarissa ; farmer , daren j . ; dinari , sabra l .\nsubject : epgt\nclarissa - thanks so much for all your help with this pipe ! everything looks great . i just have a couple of paths\nthat i need to finish it :\njanuary 2000 - i need deal # 854688 pathed for epgt and for tetc . according to the invoice , we should have\n11 , 129 dth on the interconnect .\nfebruary 2000 - i need deal # 871184 pathed for hpl and chan . hpl should have 3 , 600 dth and chan should\nhave 11 , 500 dth on the interconnect .\njuly 2000 - deal # 871172 has an interconnect issue . according to mops contract # 105124 , they received 8 , 275 dth\non the matagorda 624 , but according to epgt , they delivered 10 , 362 dth to hpl ( ? ) could this possibly\nneed to be split somehow , or do you have any other ideas ?\nlet me know . thanks , gloria 3 - 7118 | 0 |\n| 4961 | spam | Subject: keep your immune system strong\nkeep your immune system strong\nhttp : / / crohellocro . info / ps\ngo here for removal\nhttp : / / www . myfriendlyshop . com / gone\n | 1 |\n| 2331 | ham | Subject: enron / hpl actuals for january 2 , 2001\nteco tap 30 . 000 / enron\nls hpl lsk ic 30 . 000 / enron | 0 |\n| 3897 | spam | Subject: discreet cheapest prescri ^ ption dru & gs online !\n | 1 |\n| 4647 | spam | Subject: cheapest meds you ' ll find .\ndiscount drugs . . . save over 70 %\nincluding new softtabs ! the viagra that disolves under the tongue ! !\nsimply place 1 half a pill under your tongue , 15 min before sex .\nyou will excperience :\n- a super hard erection\n- more pleasure\n- and greater stamina ! !\nwe ship world wide , and no prescription is required ! !\neven if you ' re not impotent , viiagra will increase size , pleasure and power !\ngive your wife the loving she deserves ! ! !\nwe are cheaper supplier on the internet . retail price is 15 ea , = (\nour internet price is 1 . 17 each ! ! ! = )\nmany many other meds available .\nthanks for your time !\nhttp : / / aujobs . net / ? aa\ncheck out our party pack as well !\nconfidentiality assured !\n | 1 |\n| 2819 | ham | Subject: neon lesson # 5\nplease respond to here is your next lesson . . . have fun ! !\n- experiencing god week 5 . doc | 0 |\n| 3762 | spam | Subject: fwd : transferring today ?\nrn $ 0 by tomom . nling , nmicks , npe . . . juest incr honeple . e arpting onlicatir aited tio apayjupy thowing uto yowser tt staay . . .\nwwlearunts . us\nowners holiday ' s holidays default ' s .\ntrap pack carefully log society ' s home advising .\nreference home ' s affair reference ' s honest expressing expression trap ' s hope affair ' s define pack ' s soft .\n | 1 |\n| 4778 | spam | Subject: oxyyyyconttin no script needeeed\n{ taaabbsittabbs } { cccheaapicheeep }\n{ ssstttoooppp hhhhurting todayistop da pain now }\nhttp : / / offfmeebabyy\n | 1 |\n| 2583 | ham | Subject: feb 12 th sale to aquila\nfyi\ndaren - - - on the 12 th , there is a sale to aquila on the header system , for\n10 , 000 . . . . . . . . i think we were supplying it with aec . for whatever reason , i\nhad the aec 10 . 0 @ # 11230 into midcon . . . which isnt right because there was no\nmarket for it , and midcon wasnt looking for it , but the aquila deal was at\n# 700 on wgr ( aquila ) . so i went ahead and changed the aec ticket to match up\nwith the aquila deal . let me know if you think it is incorrect .\nthanks ,\nmark | 0 |\n| 2203 | ham | Subject: re : hpl meter # 980074 bammel hpl d / p to transco\ndaren - what happened in feb . was that transco had allocated a different\namount other than our measurement . i had been working with fred on getting\nsome allocations resolved for several different months . transco told us they\nwould not go back and reallocate due to the statute of limitations ( 6\nmonths ) . february had a significant amount not allocated . we just need a\ndeal set up so we can write these volumes off . let me know if you have any\nmore questions .\naim\nclem cernosek\n12 / 12 / 2000 01 : 09 pm\nto : aimee lannou / hou / ect @ ect\ncc :\nsubject : re : hpl meter # 980074 bammel hpl d / p to transco\nplease response .\nthanks , clem\n- - - - - - - - - - - - - - - - - - - - - - forwarded by clem cernosek / hou / ect on 12 / 12 / 2000 01 : 13\npm - - - - - - - - - - - - - - - - - - - - - - - - - - -\ndaren j farmer\n12 / 12 / 2000 12 : 35 pm\nto : clem cernosek / hou / ect @ ect\ncc :\nsubject : re : hpl meter # 980074 bammel hpl d / p to transco\nwhat was going on in feb ?\nd\nclem cernosek\n12 / 11 / 2000 04 : 27 pm\nto : daren j farmer / hou / ect @ ect\ncc : aimee lannou / hou / ect @ ect\nsubject : hpl meter # 980074 bammel hpl d / p to transco\ndaren\nduring the period of 1 / 1 / 99 to 9 / 30 / 2000 , the above meter has recorded flow\non the following days :\ndays mmbtus\n11 / 12 / 99 ( 58 )\n12 / 23 / 99 ( 133 )\n2 / 1 / 00 ( 463 )\n2 / 2 / 00 ( 463 )\n2 / 3 / 00 ( 463 )\n2 / 4 / 00 ( 463 )\n2 / 5 / 00 ( 463 )\n2 / 6 / 00 ( 463 )\n2 / 7 / 00 ( 463 )\n2 / 8 / 00 ( 463 )\n2 / 9 / 00 ( 463 )\n2 / 10 / 00 ( 463 )\n2 / 11 / 00 ( 463 )\n2 / 12 / 00 ( 463 )\n2 / 13 / 00 ( 463 )\n2 / 14 / 00 ( 463 )\n2 / 15 / 00 ( 464 )\n2 / 16 / 00 ( 463 )\n2 / 17 / 00 ( 463 )\n2 / 18 / 00 ( 463 )\n2 / 19 / 00 ( 463 )\n2 / 20 / 00 ( 463 )\n2 / 21 / 00 ( 463 )\n2 / 22 / 00 ( 463 )\n2 / 23 / 00 ( 463 )\n2 / 24 / 00 ( 463 )\n2 / 25 / 00 ( 463 )\n2 / 26 / 00 ( 463 )\n2 / 27 / 00 ( 463 )\n2 / 28 / 00 ( 463 )\n2 / 29 / 00 ( 464 )\n6 / 28 / 00 78\n9 / 14 / 00 499\n( 13 , 043 )\ncurrently , these volumes are being booked to hpl strangers gas contract .\nlogistics needs approval to writeoff these volumes to unaccounted for gas .\nif you have any questions , please contact aimee lannou @ x - 30506 .\nthanks , clem\nps :\napproval to writeoff the volumes to unaccounted for gas | 0 |\n| 1904 | ham | Subject: cleburne - tenaska iv plant\ndaren ,\ni ' m trying to put together the 2001 operating budget for the plant . i need a\nconservative forecast , per month , of the price that could be obtained by\nselling our excess volumes .\nthanks . | 0 |\n| 1080 | ham | Subject: ami , , ,\nper our conversation , i would perfer the 2 , 000 difference be placed on the oba\nbetween lsp and teco ,\nbecause we requested to cut the flow .\nthanks ! !\n- - - - - - - - - - - - - - - - - - - - - - forwarded by tim powell / lsp / enserch / us on 06 / 27 / 2000\n10 : 58 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\nami . chokshi @ enron . com on 06 / 27 / 2000 08 : 42 : 09 am\nto : tim powell / lsp / enserch / us @ tu\ncc : charlie stone / texas utilities @ tu , daren . j . farmer @ enron . com\nsubject :\nhey tim ,\nfor may 12 , our supply shows that 8 . 000 did flow even though you cut flow\nto 6 . 0 . let me know how you want to handle the situation . sorry for the\ninconvenience .\nami | 0 |\n| 256 | ham | Subject: 5 th changes @ duke and air liquide\n- - - - - - - - - - - - - - - - - - - - - - forwarded by ami chokshi / corp / enron on 02 / 04 / 2000\n11 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\ntroy _ a _ benoit @ reliantenergy . com on 02 / 04 / 2000 11 : 06 : 27 am\nto : ami chokshi / corp / enron @ enron\ncc :\nsubject : 5 th changes @ duke and air liquide\n( see attached file : egmnom - feb . xls )\n- egmnom - feb . xls | 0 |\n| 2789 | ham | Subject: imbalance gas\njust in case worse comes to worse .\n- - - - - - - - - - - - - - - - - - - - - - forwarded by mary poorman / na / enron on 03 / 21 / 2001 11 : 29 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : juliann kemp / enron @ enronxgate on 03 / 21 / 2001 10 : 39 am\nto : mary poorman / na / enron @ enron\ncc :\nsubject : imbalance gas\nmary we just have two . thanks - julie\ncontract 012 - 87794 - 02 - 001 ( delivery )\nmeter 981506\nwe owe them 21 , 771\n981244 ( delivery ) koch refinery\nwe owe them 16 , 810 | 0 |\n| 4381 | spam | Subject: pictures\nstreamlined denizen ajar chased\nheavens hostesses stolid pinched saturated\nstaten seventeens juggler abashed\nice guts centrifugal bauxite wader\nshyness whirr ukrainian understandingly conditioner\nbarges entitles vanderpoel\npreset wigwam storming alexei\nsupergroup tab mare\nbirthright brutalize tolerates depots bubbling\n- -\nphone : 439 - 120 - 6060\nmobile : 590 - 203 - 5805\nemail : darden . audley @ houston . rr . com\n | 1 |\n| 760 | ham | Subject: mid year prc meeting\ni would like to have our prc meeting on thursday , 6 / 8 . because of trading ,\nwe will not be able to start until noon . please confirm to me asap ( by end\nof day , today ) that you will be available . please keep in mind that we will\nwent last time from 1 : 00 pm until almost midnight . your commitment of this\ndate will include the evening hours , unless of course , we work quickly and\nefficiently ! ! ! sally ' s meeting is scheduled for tuesday , 6 / 13 , and i plan to\nbe on vacation on friday , 6 / 9 . therefore , this is the lastest date that we\ncan meet . please make every effort to make this work .\nthanks . | 0 |\n| 4979 | spam | Subject: penny stocks are about timing\nnomad international inc . ( ndin )\na multi - national internet communications company developing cost\neffective telecommunications through voice over internet protocol ( voip )\ntechnologies .\nshares outstanding : 34 , 0 oo , 000\nfloat : 4 , 000 , 0 oo\ncurrent price : o . 09\nwiil it continue higher ? watch this one friday as we know many of you\nlike momentum .\nbreaking news ! !\nmay 18 - - nomad international inc . ( ndin ) commented today on the recent\nannouncement by the canadian radio - teievision and teiecommunications\ncommission ( crtc ) that they would reguiate voice over internet protoco |\n( voip ) service only when it is provided and used as local telephone\nservice .\nin its decision , the crtc determined that in an effort to buiid\nsustainable competition in | ocal teiephone markets , the incumbent carriers\nwiil not be permitted to price their local voip services below cost to\nstifie competition .\nthe ruling is a very positive one for nomad in our efforts to enter\nthe canadian market with our products via internet service providers ,\ncabie companies and virtual operators . the ruling permits us to enter the\nmarket with a competitive framework , stated jan oiiver , ceo of nomad\ninternationa | inc .\nthe key to nomad ' s entry into the voip market is the ability of its\nproducts to offer services to both broadband and dia | - up customers . though\nbroadband is gaining more and more acceptance and utiiization\nworldwide , dial - up remains the primary source of internet connectivity . in the\nu . s . alone , there are over 200 , oo 0 , 000 users of the internet . of the\ntota | users in the u . s . , the total number of users of broadband is only\napproximately 4 o , 0 oo , 00 o ; ( stats by the yankee group ) dia | - up therefore\nrepresents approximately 8 o % of the entire internet connectivity market .\nthe percentage of dia | - up versus broadband users woridwide is even\nhigher .\nnomad ' s ability to offer voip products to dial - up customers and service\nproviders not only offers significant potentia | for market penetration ,\nbut also sets the company apart from its competition in the marketplace\nby offering a unique , proprietary and easiiy adaptabie product .\nabout nomad international inc .\nnomad international inc . is a muiti - national internet communications\ncompany deveioping cost effective telecommunications through voice over\ninternet protocol ( voip ) technoiogies . the company ' s revolutionary voip\nproduct line ca | | ed nomad systems that has dia | - up , broadband , dsl ,\ncable , sate | | ite and wireless capabilities . the company pians on\ntargeting : 1 ) national fixed | ine ii iii tier carriers which are interested in\neffectively competing with the dominant carrier in their marketpiace ,\n2 ) large muitinationa | corporations which need to have us or european\npresence by having , ( for exampie ) , a united states number ringing in\ntheir offices in guatemala or london - - offering business partners a more\neconomical way to communicate , and 3 ) immigrants in north america , a\nmeans of significantiy | owering their communication expense with their\nreiatives in their country of origin .\nconclusion :\nthe exampies above show the awesome , earning potential of little known\ncompanies that explode onto investor ' s radar screens ; many of you are\naiready famiiiar with this . is ndin poised and positioned to do that for\nyou ? then you may feel the time has come to act . . . and piease watch\nthis one trade friday ! go ndin .\npenny stocks are considered highiy speculative and may be unsuitabie\nfor al | but very aggressive investors . this profiie is not in any way\naffiliated with the featured company . we were compensated 3 ooo do | | ars\nto distribute this report . this report is for entertainment and\nadvertising purposes oniy and should not be used as investment advice .\nif you wish to stop future maiiings , or if you fee | you have been\nwrongfuily piaced in our membership , please go here or send a biank\ne mail with no thanks in the subject to\nnoneedl 020 @ yahoo . com\n | 1 |\n| 4162 | spam | Subject: anomaly boys from 3881\nuosda apaproved mledms heure\ncrack mutagen poliomyelitis axisymmetric virus bernoulli pervade cadenza arena martin cardioid familiar bladdernut inductee donor you tranquil bar kingdom dinnerware pedagogy traipse chromate idle mph diligent company contributor bal\nantipodean escadrille stan affiance antagonist roil siren conrad repression bluejacket conduce continue myriad configuration brute anthem yore pessimal turpitude bum 3\nmacintoshdogleg | 1 |\n| 1428 | ham | Subject: re : meter # : 1266 ; august 2000 / allocation exception\nconoco has nominated 5 . 0 / d at this meter . conoco transport can be allocated\nthe entire meter flow for the days in which the meter flow\nexceed 5 . 0 mm because they are the only party doing business at the meter .\nhpl may also be able to extract a sell for this overage which is why i\nwanted you to be aware of the daily activity thus far .\n- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 08 / 21 / 2000\n01 : 57 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : lee l papayoti on 08 / 21 / 2000 01 : 44 pm\nto : robert e lloyd / hou / ect @ ect\ncc : sherlyn schumack / hou / ect @ ect , anita luong / hou / ect @ ect , daren j\nfarmer / hou / ect @ ect , gary a hanks / hou / ect @ ect , pat clynes / corp / enron @ enron\nsubject : re : meter # : 1266 ; august 2000 / allocation exception\nwhy are these volumes flowing ?\nfrom : robert e lloyd 08 / 21 / 2000 01 : 36 pm\nto : lee l papayoti / hou / ect @ ect\ncc : sherlyn schumack / hou / ect @ ect , anita luong / hou / ect @ ect , daren j\nfarmer / hou / ect @ ect , gary a hanks / hou / ect @ ect , pat clynes / corp / enron @ enron\nsubject : re : meter # : 1266 ; august 2000 / allocation exception\nshould i roll this deal to cover august 2000 activity ?\nvolumes todate are as follows : 82 mm 8 / 16\n85 mm 8 / 17\n65 mm 8 / 18\n57 mm 8 / 19\n60 mm 8 / 20\nsitara ticket # : 363514\nthese small meter flows are causing allocation exceptions for august .\n- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 08 / 21 / 2000\n01 : 27 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : robert e lloyd 08 / 11 / 2000 03 : 17 pm\nto : howard b camp / hou / ect @ ect , rita wynne / hou / ect @ ect\ncc : pat clynes / corp / enron @ enron , daren j farmer / hou / ect @ ect\nsubject : re : meter # : 1266 ; july 2000 activity / allocation exception\nfyi\n- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 08 / 11 / 2000\n03 : 16 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : robert e lloyd on 08 / 11 / 2000 03 : 16 pm\nto : lee l papayoti / hou / ect @ ect\ncc :\nsubject : re : meter # : 1266 ; july 2000 activity / allocation exception\nthe volumes are as follows : july lst 414 mmbtu\njuly 31 12 mmbtu\ntotal : 426 mmbtu ' s\nalso , the sitara deal # is : 363514\nfrom : lee l papayoti on 08 / 11 / 2000 02 : 02 pm\nto : robert e lloyd / hou / ect @ ect\ncc : howard b camp / hou / ect @ ect , pat clynes / corp / enron @ enron\nsubject : re : meter # : 1266 ; july 2000 activity / allocation exception\nplease set up a ticket priced at gas daily houston ship channel midpoint\nminus $ 0 . 03\nalso , can you let me know the exact volumes in question on july 1 and july\n31 ? dorcheus wants to know . me too .\nthanks\nlee\nto : lee l papayoti / hou / ect @ ect\ncc : howard b camp / hou / ect @ ect , pat clynes / corp / enron @ enron\nsubject : re : meter # : 1266 ; july 2000 activity / allocation exception\njust a reminder that \" allocation close \" is monday , august 14 th .\na sitara ticket is needed to set up an acctg . arrangement which will\neliminate the allocation exception for meter # 981266\n{ victoria station # 2 / brandywine } .\nfrom : lee l papayoti on 08 / 09 / 2000 03 : 33 pm\nto : robert e lloyd / hou / ect @ ect\ncc :\nsubject : re : meter # : 1266 ; july 2000 activity / allocation exception\ni ' ll get you a price tomorrow when i meet with him . . .\nfrom : robert e lloyd 08 / 09 / 2000 12 : 50 pm\nto : lee l papayoti / hou / ect @ ect\ncc : daren j farmer / hou / ect @ ect , pat clynes / corp / enron @ enron , rita\nwynne / hou / ect @ ect , howard b camp / hou / ect @ ect\nsubject : meter # : 1266 ; july 2000 activity / allocation exception\ni spoke with bob dorcheus , brandywine about this issue and he suggest you\nand he get together and agree on a\nprice because the gas flowed into the plant .\nthis gas flowed without a nomination .\n- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 08 / 09 / 2000\n12 : 47 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\nenron north america corp .\nfrom : gary a hanks 08 / 09 / 2000 11 : 27 am\nto : robert e lloyd / hou / ect @ ect\ncc : earl tisdale / hou / ect @ ect , pat clynes / corp / enron @ enron , rita\nwynne / hou / ect @ ect , howard b camp / hou / ect @ ect\nsubject : meter # : 1266 ; july 2000 activity / allocation exception\nthe volumes on meter # 1266 for 7 / 1 / 00 and 7 / 31 / 00 are valid gas flow . 7 / 1 / 00\nvolumes are carry over from june activity ( meter was shut in a little after\n9 : 00 am on 7 / 1 / 00 ) . 7 / 31 / 00 volumes were caused by the plant bringing on\nthe meter before 9 : 00 am on 8 / 1 / 00 .\nif you have any questions please call . 36449 .\nthanks\ngary h\n- - - - - - - - - - - - - - - - - - - - - - forwarded by gary a hanks / hou / ect on 08 / 09 / 2000 11 : 18\nam - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : robert e lloyd 08 / 09 / 2000 11 : 17 am\nto : gary a hanks / hou / ect @ ect , earl tisdale / hou / ect @ ect\ncc : pat clynes / corp / enron @ enron , rita wynne / hou / ect @ ect , howard b\ncamp / hou / ect @ ect\nsubject : meter # : 1266 ; july 2000 activity / allocation exception\nplease verify the volume on meter # : 1266 for july lst & 31 st are valid gas\nflow .\nbrandywine did not nominate any activity at this meter for july 2000 . | 0 |\n| 4365 | spam | Subject: slutty milf wants to meet you\ntake that !\n' ilaa - liqaa\n | 1 |\n| 2849 | ham | Subject: fw : crosstex energy , driscoll ranch # 1 , # 3 , meter nos . 9858 and\n9868\nplease note the following for april production regarding the crosstex\ncontract : 96048744 at the above referenced location .\nthank you ,\nmelissa\n- - - - - original message - - - - -\nfrom : bubert , jerry\nsent : thursday , march 22 , 2001 2 : 19 pm\nto : taylor , vance l .\ncc : flynn , shawna ; graves , melissa ; harris , joanne ; reinhardt , donald p . ;\nriley , brian ; smith , susan ; sweeney , christy ; walker , robert ; weissman , george\nsubject : crosstex energy , driscoll ranch # 1 , # 3 , meter nos . 9858 and 9868\nper section 2 . 2 of the gpa , crosstex has elected to sell 4000 mmbtu / d in the\naggragate at the base contract price of if hsc less $ 0 . 10 , and the excess of\nthe available gas over 4000 mmbtu / d in the aggragate at gda hsc less $ 0 . 15 . | 0 |\n| 1518 | ham | Subject: put the 10 on the ft\nthe transport volumes decreased from 25000 to 10000 . all 10000 should be on\ncontract 012 - 41991 - 203 .\nthanks ,\nami\n- - - - - - - - - - - - - - - - - - - - - - forwarded by ami chokshi / corp / enron on 08 / 31 / 2000\n10 : 54 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\nroyal _ b _ edmondson @ reliantenergy . com on 08 / 31 / 2000 10 : 47 : 37 am\nto : ami _ chokshi @ enron . com\ncc :\nsubject : put the 10 on the ft\n( see attached file : hpl - sept . xls )\n- hpl - sept . xls | 0 |\n| 404 | ham | Subject: 3 / 4 / 2000 and following noms\nhpl can ' t take the extra 15 mmcf / d over the weekend . we ' ll try next week ,\nbut for now the nom will stay at 60 mmcf / d , with redeliveries as they have\nbeen\n-\n50 into pg & e , 7 from fcv , and 3 at carthage .\n- - - - - - - - - - - - - - - - - - - - - - forwarded by bruce mcmills / ftworth / pefs / pec on\n03 / 03 / 2000\n09 : 42 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\nbruce mcmills\n03 / 03 / 2000 09 : 10 am\nto : dfarmer @ enron . com , briley @ enron . com , stacey . neuweiler @ enron . com\ncc : chad w . cass / gcs / cec / pec @ pec , william e . speckels / gcs / cec / pec @ pec , donna\nc . spencer / gcs / cec / pec @ pec , michael r . cherry / easttexas / pefs / pec @ pec ,\ndarrel f . bane / easttexas / pefs / pec @ pec\nsubject : 3 / 4 / 2000 and following noms\nthis is to nominate 75 , 000 mmbtu / d into eastrans for 3 / 4 / 2000 and following .\nwe will deliver 50 , 000 into pg & e , 7 , 000 from fuel cotton valley ( continue\n750\nmmbtu / d sale ) ,\nand 18 , 000 mmbtu / d into your cartwheel agreement at carthage . | 0 |\n| 2933 | ham | Subject: calpine daily gas nomination\n>\n>\njulie , as i mention earlier we hope to start the unit this afternoon but\nare still experiencing difficulties . i will keep you informed . thanks .\nricky a . archer\nfuel supply\n700 louisiana , suite 2700\nhouston , texas 77002\n713 - 830 - 8659 direct\n713 - 830 - 8722 fax\n- calpine daily gas nomination 1 . doc\n- calpine daily gas nomination 1 . doc | 0 |\n| 1409 | ham | Subject: industrial worksheets for august 2000 activity\nattached are the worksheets for august 2000 activity . there are three\ndifferent worksheets { 2 - supply & 1 - market } .\nthe market worksheet is preliminary and will continuously be updated\nthroughout the month .\nthe supply worksheets capture all \" buybacks and the relevant pricing data .\nthese three worksheets can be found in two separate files . o :\nlogistics / robert lloyd / buydeaug 2000 . xls . . . . . . . . . . . . . supply\no : logistics / ken\nsorry for the delay in providing you ' ll this data . | 0 |\n| 4807 | spam | Subject: important online banking alert\ndear valued citizensr bank member ,\ndue to concerns , for the safety and integrity of the online banking community we have issued the following warning message .\nit has come to our attention that your citizensr bank account information needs to be updated as part of our continuing commitment to protect your account and to reduce the instance of fraud on our website . if you could please take 5 - 10 minutes out of your online experience and renew your records you will not run into any future problems with the online service . however , failure to confirm your records may result in your account suspension .\nonce you have confirmed your account records your internet banking service will not be interrupted and will continue as normal .\nto confirm your bank account records please click here .\nnote :\nthis e - mail was sent on behalf of the online banking community , if you do not have an online banking account with charterr one then this message does not apply to you and you may ignore this message .\nthank you for your time ,\ncitizensr financial group .\n | 1 |\n\n", + "text/latex": "A data.frame: 5171 × 4\n\\begin{tabular}{llll}\n X & label & text & label\\_num\\\\\n & & & \\\\\n\\hline\n\t 605 & ham & Subject: enron methanol ; meter \\# : 988291\nthis is a follow up to the note i gave you on monday , 4 / 3 / 00 \\{ preliminary\nflow data provided by daren \\} .\nplease override pop ' s daily volume \\{ presently zero \\} to reflect daily\nactivity you can obtain from gas control .\nthis change is needed asap for economics purposes . & 0\\\\\n\t 2349 & ham & Subject: hpl nom for january 9 , 2001\n( see attached file : hplnol 09 . xls )\n- hplnol 09 . xls & 0\\\\\n\t 3624 & ham & Subject: neon retreat\nho ho ho , we ' re around to that most wonderful time of the year - - - neon leaders retreat time !\ni know that this time of year is extremely hectic , and that it ' s tough to think about anything past the holidays , but life does go on past the week of december 25 through january 1 , and that ' s what i ' d like you to think about for a minute .\non the calender that i handed out at the beginning of the fall semester , the retreat was scheduled for the weekend of january 5 - 6 . but because of a youth ministers conference that brad and dustin are connected with that week , we ' re going to change the date to the following weekend , january 12 - 13 . now comes the part you need to think about .\ni think we all agree that it ' s important for us to get together and have some time to recharge our batteries before we get to far into the spring semester , but it can be a lot of trouble and difficult for us to get away without kids , etc . so , brad came up with a potential alternative for how we can get together on that weekend , and then you can let me know which you prefer .\nthe first option would be to have a retreat similar to what we ' ve done the past several years . this year we could go to the heartland country inn ( www . . com ) outside of brenham . it ' s a nice place , where we ' d have a 13 - bedroom and a 5 - bedroom house side by side . it ' s in the country , real relaxing , but also close to brenham and only about one hour and 15 minutes from here . we can golf , shop in the antique and craft stores in brenham , eat dinner together at the ranch , and spend time with each other . we ' d meet on saturday , and then return on sunday morning , just like what we ' ve done in the past .\nthe second option would be to stay here in houston , have dinner together at a nice restaurant , and then have dessert and a time for visiting and recharging at one of our homes on that saturday evening . this might be easier , but the trade off would be that we wouldn ' t have as much time together . i ' ll let you decide .\nemail me back with what would be your preference , and of course if you ' re available on that weekend . the democratic process will prevail - - majority vote will rule ! let me hear from you as soon as possible , preferably by the end of the weekend . and if the vote doesn ' t go your way , no complaining allowed ( like i tend to do ! )\nhave a great weekend , great golf , great fishing , great shopping , or whatever makes you happy !\nbobby & 0\\\\\n\t 4685 & spam & Subject: photoshop , windows , office . cheap . main trending\nabasements darer prudently fortuitous undergone\nlighthearted charm orinoco taster\nrailroad affluent pornographic cuvier\nirvin parkhouse blameworthy chlorophyll\nrobed diagrammatic fogarty clears bayda\ninconveniencing managing represented smartness hashish\nacademies shareholders unload badness\ndanielson pure caffein\nspaniard chargeable levin\n & 1\\\\\n\t 2030 & ham & Subject: re : indian springs\nthis deal is to book the teco pvr revenue . it is my understanding that teco\njust sends us a check , i haven ' t received an answer as to whether there is a\npredermined price associated with this deal or if teco just lets us know what\nwe are giving . i can continue to chase this deal down if you need . & 0\\\\\n\t 2949 & ham & Subject: ehronline web address change\nthis message is intended for ehronline users only .\ndue to a recent change to ehronline , the url ( aka \" web address \" ) for accessing ehronline needs to be changed on your computer . the change involves adding the letter \" s \" to the \" http \" reference in the url . the url for accessing ehronline should be : https : / / ehronline . enron . com .\nthis change should be made by those who have added the url as a favorite on the browser . & 0\\\\\n\t 2793 & ham & Subject: spring savings certificate - take 30 \\% off\nsave 30 \\% when you use our customer appreciation spring savings\ncertificate at foot locker , lady foot locker , kids foot locker and at\nour online stores !\nwelcome to our customer appreciation spring savings certificate !\nuse the special certificate below and receive 30 \\% off your purchases either in our stores or online . hurry ! this 4 - day sale begins thursday , march 22 and ends sunday , march 25 .\nshare the savings today and e - mail this offer to your friends . many items already are reduced and the 30 \\% discount is taken off the lowest sale price .\nclick below to print your customer appreciation spring savings certificate . you must present this coupon at any foot locker , lady foot locker or kids foot locker store in the u . s . foot locker canada is not participating in this program .\nready , set , save !\nour spring savings discount will automatically appear when you use the links below or type camlem 21 into the promotion code box during checkout .\nfootlocker . com certificate code : camlem 21\nladyfootlocker . com certificate code : camlem 21\nkidsfootlocker . com certificate code : camlem 21\nremember , returns are hassle - free . simply bring your items to any of our stores nationwide or through the mail .\ndon ' t be left out - register today to learn about our new products , promotions , events and other specials . simply click below .\nterms and conditions . some exclusions apply , please see manager for complete details . certificate must be presented at the time of purchase and cannot be used in conjunction with any other discount offer or associate benefit . not redeemable for cash . applicable taxes must be paid by bearer . cannot be applied to prior purchases or to gift card purchases . void where prohibited , licensed or regulated . catalog exclusions apply . valid thursday , 3 / 22 / 01 through sunday , 3 / 25 / 01 . foot locker canada will not participate in this program .\nif you do not wish to receive future emails please click below to\nunsubscribe :\n & 0\\\\\n\t 4185 & spam & Subject: looking for medication ? we ` re the best source .\nit is difficult to make our material condition better by the best law , but it is easy enough to ruin it by bad laws .\nexcuse me . . . : ) you just found the\nbest and simpliest site for\nmedication on the net . no perscription , easy\ndelivery .\nprivate , secure , and easy .\nbetter see rightly on a pound a week than squint on a million .\nwe ` ve got\nanything that you will ever want .\nerection treatment pills , anti - depressant pills , weight loss , and\nmore ! http : / / splicings . bombahakcx . com / 3 /\nknowledge and human power are synonymous .\nonly high - quality stuff for low rates !\n100 \\% moneyback guarantee !\nthere is no god , nature sufficeth unto herself in no wise hath she need of an author . & 1\\\\\n\t 2641 & ham & Subject: noms / actual flow for 2 / 26\nwe agree\n- - - - - - - - - - - - - - - - - - - - - - forwarded by melissa jones / texas utilities on\n02 / 27 / 2001\n10 : 33 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\n\" eileen ponton \" on 02 / 27 / 2001 09 : 46 : 26 am\nto : david avila / lsp / enserch / us @ tu , charlie stone / texas utilities @ tu , melissa\njones / texas utilities @ tu , hpl . scheduling @ enron . com ,\nliz . bellamy @ enron . com\ncc :\nsubject : noms / actual flow for 2 / 26\ndate nom flow - mcf flow - mmbtu\n2 / 26 / 01 0 456 469\nbtu = 1 . 027 & 0\\\\\n\t 1870 & ham & Subject: nominations for oct . 21 - 23 , 2000\n( see attached file : hplnl 021 . xls )\n- hplnl 021 . xls & 0\\\\\n\t 4922 & spam & Subject: vocable \\% rnd - word asceticism\nvcsc - brand new stock for your attention\nvocalscape inc - the stock symbol is : vcsc\nvcsc will be our top stock pick for the month of april - stock expected to\nbounce to 12 cents level\nthe stock hit its all time low and will bounce back\nstock is going to explode in next 5 days - watch it soar\nwatch the stock go crazy this and next week .\nbreaking news - vocalscape inc . announces agreement to resell mix network\nservices\ncurrent price : \\$ 0 . 025\nwe expect projected speculative price in next 5 days : \\$ 0 . 12\nwe expect projected speculative price in next 15 days : \\$ 0 . 15\nvocalscape networks inc . is building a company that ' s revolutionizing the\ntelecommunications industry with the most affordable phone systems , hardware ,\nonline software , and rates in canada and the us . vocalscape , a company with\nglobal reach , is receiving international attention for the development of voice\nover ip ( voip ) application solutions , including the award - winning eyefontm , a\nsoftphone for real - time pc - to - phone . we are an advanced implementer of pbx\nsystems for companies , call centers , itsps and service providers .\nvocalscape has created software and interactive solutions revolving around\nglobal communications and data voice convergence . companies use vocalscape for\nvoice over internet protocol applications like ip pbxs , softswitches , pc 2 phone\nand web 2 phone , providing real - time human interaction and information delivery\nover the internet . through vocalscape ' s solutions , businesses can offer a\nquality voice service to anywhere in the world at rates that are significantly\nlower than current long distance charges . we develop software to run voip\nnetworks , and sell , install and service our own branded voip gateways and\ngatekeeper control software . we also license our software to customers who want\nto brand their own voip solutions .\nvocalscape is committed to making great technology ; challenging the status quo ,\nand building a 21 st century company that changes the way businesses communicate\nand interact through the internet .\ncurrent price : \\$ 0 . 025\nwe expect projected speculative price in next 5 days : \\$ 0 . 12\nwe expect projected speculative price in next 15 days : \\$ 0 . 15\nbreaking news - vocalscape inc . announces agreement to resell mix network\nservices\n- - - - - - - - - -\nkatonah , n . y . , / prnewswire - firstcall via comtex / - - vocalscape , inc . pink : vcsc ) ,\nan emerging leader in the development of voice over internet protocol ( voip )\ntelephony solutions , announced today it has entered into a sales agent agreement\nwith mix networks , inc . a voip enhanced telephony service provider .\nthis agreement provides vocalscape ' s turnkey calling card customers with access\nto mix networks services including north american dids ( phone numbers ) and\ndomestic long distance termination . vocalscape will also be able to supply their\nclients with enhanced voip products including pre - paid calling through mix\nnetworks north american network .\nwe are excited to help companies launch voip business models using our solution\nwith the whole picture from the software to the network needed to route the\ncalls . mix networks gives us the ability to offer wholesale monthly flat rate\nplans and dids to our clients that allow for us to build business models like\npopular voip companies such as vonage and packet 8 , says ryan gibson , vp\nvocalscape networks\nsome legal words before you continue :\ninformation within this email contains forward looking statements within the\nmeaning of section 27 a of the securities act of 1933 and section 21 b of the\nsecurities exchange act of 1934 . any statements that express or involve\ndiscussions with respect to predictions , goals , expectations , beliefs , plans ,\nprojections , objectives , assumptions or future events or performance are not\nstatements of historical fact and may be forward looking statements . forward\nlooking statements are based on expectations , estimates and projections at the\ntime the statements are made that involve a number of risks and uncertainties\nwhich could cause actual results or events to differ materially from those\npresently anticipated . forward looking statements in this action may be\nidentified through the use of words such as : projects , foresee , expects ,\nestimates , believes , understands will , part of : anticipates , or that\nby statements indicating certain actions may , could , or might occur . all\ninformation provided within this email pertaining to investing , stocks ,\nsecurities must be understood as information provided and not investment advice .\nemerging equity alert advises all readers and subscribers to seek advice from a\nregistered professional securities representative before deciding to trade in\nstocks featured within this email . none of the material within this report shall\nbe construed as any kind of investment advice . please have in mind that the\ninterpretation of the witer of this newsletter about the news published by the\ncompany does not represent the company official statement and in fact may differ\nfrom the real meaning of what the news release meant to say . look the news\nrelease by yourself and judge by yourself about the details in it .\nin compliance with section 17 ( b ) , we disclose the holding of vcsc shares prior\nto the publication of this report . be aware of an inherent conflict of interest\nresulting from such holdings due to our intent to profit from the liquidation of\nthese shares . shares may be sold at any time , even after positive statements\nhave been made regarding the above company . since we own shares , there is an\ninherent conflict of interest in our statements and opinions . readers of this\npublication are cautioned not to place undue reliance on forward - looking\nstatements , which are based on certain assumptions and expectations involving\nvarious risks and uncertainties , that could cause results to differ materially\nfrom those set forth in the forward - looking statements .\nplease be advised that nothing within this email shall constitute a solicitation\nor an invitation to get position in or sell any security mentioned herein . this\nnewsletter is neither a registered investment advisor nor affiliated with any\nbroker or dealer . this newsletter was paid \\$ 49000 from third party to send this\nreport . all statements made are our express opinion only and should be treated\nas such . we may own , take position and sell any securities mentioned at any\ntime . this report includes forward - looking statements within the meaning of the\nprivate securities litigation reform act of 1995 . these statements may include\nterms as projected speculative price expect , believe , may , will ,\nsoar move , undervalued and intend or similar terms .\n & 1\\\\\n\t 3799 & spam & Subject: report 01405 !\nwffur attion brom est inst siupied 1 pgst our riwe asently rest .\ntont to presyou tew cons of benco 4 . yee : fater 45 y . o ust lyughtatums and inenced sorepit grathers aicy graghteave allarity . oarity wow to yur coons , as were then 60 ve mers of oite .\nithat yoit ? ! berst thar ! enth excives 2004 . . .\n & 1\\\\\n\t 1488 & ham & Subject: enron / hpl actuals for august 28 , 2000\nteco tap 20 . 000 / enron ; 120 . 000 / hpl gas daily\nls hpl lsk ic 20 . 000 / enron & 0\\\\\n\t 3948 & spam & Subject: vic . odin n \\textasciicircum{} ow\nberne hotbox carnal bride cutworm dyadic\nguardia continuous born gremlin akin counterflow hereafter vocabularian pessimum yaounde cannel bitch penetrate demagogue arbitrary egregious adenosine rubin gil luminosity delicti yarmulke sauterne selfadjoint agleam exeter picofarad consulate dichotomous boyhood balfour spheric frey pillory hoosier fibonacci cat handful\n & 1\\\\\n\t 3418 & ham & Subject: tenaska iv july\ndarren :\nplease remove the price on the tenaska iv sale , deal 384258 , for july and enter the demand fee . the amount should be \\$ 3 , 902 , 687 . 50 .\nthanks ,\nmegan & 0\\\\\n\t 4791 & spam & Subject: underpriced issue with high return on equity\nstock report .\ndont sieep on this stock ! this is a hot one !\ncompany : gaming transactions inc .\nstock symbol : ggts\ncurrentiy trading at : o . 30\nrating : strong purchase\nnear - term target : 0 . 45\nlong - term target : 1 . oo\nbreaking news for ggts :\ngaming transactions inc . ( ggts ) , a \\textbar{} eading provider of online gaming\nporta \\textbar{} management is pleased to announce that it has launched its\nproprietary gaming portal ( k e n o . com ) furthermore , the company has begun an\nintensive marketing campaign to support the \\textbar{} aunch and establish itself\nas the \\textbar{} eader in the online gaming industry .\n( k e n o . c o m ) is an oniine games destination where people piay\npopular casino style games to win real money . the foundation of the site is\nan online version of keno . the game of keno uses 80 balls numbered 1\nthru 8 o . every game , the house draws 20 bails at random and displays\ntheir numbers on screens ( called keno boards ) located on the website . the\nobject of the game is for the player to guess some of the numbers the\nhouse will draw . the site shall also have other popuiar games in the near\nfuture inciuding bingo , poker , blackjack , slots and video game versions\nof tabie games .\npatrick smyth , ceo of gaming transactions inc . , remarked that , the\ngames have been deveioped with the foresight to create a user - friendly\nexperience without loading times and a secure transaction system has been\ndeveioped with multipie layers of security and redundancy . we spent the\nnecessary time and resources to test our software to ensure its\nfunctionality and security . consumer focus groups were used in the deveiopment\nprocess to make sure that our players had an opulent experience online ,\nand future marketing efforts wi \\textbar{} \\textbar{} be aimed customer service and\nattention .\nabout the company :\ngaming transactions inc . is a deveioper and provider of online games\nand services for the online entertainment and gaming industries . the\ncompany ! s centra \\textbar{} licensed games portal , ( k e n o . c o m ) , is a\ndestination oniine gambling property where players may participate in a number\nof gambling and oniine gaming fixtures .\nthe foundation of the site is of course an online version of keno . the\ngame of keno uses 8 o bails numbered 1 thru 80 . every game , the house\ndraws 2 o balls at random and displays their numbers on screens ( called\nkeno boards ) \\textbar{} ocated on the website . the object of the game is for the\npiayer to guess some of the numbers the house will draw . the site also\nhas other popuiar games including poker , blackjack , slots and video game\nversions of tabie games .\ngaming transactions inc . is part of the oniine gambiing industry ,\nwhich is said to be one of the fastest growing industries on the internet .\n! ' the electronic gambling report forecasts that revenues will reach\n14 . 5 biliion by 2006 ! ( market statistics : - informa media grp . giobal\nrevenues from oniine gambiing wi \\textbar{} \\textbar{} reach 14 . 52 bi \\textbar{} \\textbar{} ion in 20 o 6 , up from\n3 . 81 biilion this year . this is according to a report from the informa\nmedia grp . , which says that the us wi \\textbar{} \\textbar{} generate 24 percent of all online\ngambling revenues in 2 oo 6 , whereas europe wil \\textbar{} generate 53 percent .\nnorth american oniine gambling revenues are expected to reach 1 . 99 biliion\nthis year and 3 . 85 bi \\textbar{} \\textbar{} ion in 2 oo 6 . in europe , revenues wil \\textbar{} grow from\n1 . 29 billion this year to 7 . 64 biilion in 2 oo 6 . oniine gambling\nrevenues wi \\textbar{} \\textbar{} be smailer in asia - pacific 379 miliion this year and 2 . 13\nbillion in 2 oo 6 ) and in the rest of the worid 143 million this year to 886\nmi \\textbar{} \\textbar{} ion in 2 oo 6 ) . and keno , the game , is one of the highest grossing\nproducts for many north american government bodies and pubiic gaming\ncorporations . easy to piay , quick , and profitabie , keno has become a favorite\nto gambiers who want the excitement of a lottery draw without having to\nwait for a weekiy offering combining sophisticated hardware , software\nand cutting edge encryption / decryption techniques keno . com has deveioped\nand \\textbar{} icensed a system , which is an optima \\textbar{} method for online gaming .\ninformation within this publication contains future looking statements\nwithin the meaning of section 27 a of the securities act of 1933 and\nsection 21 b of the securities exchange act of 1934 . any statements that\nexpress or involve discussions with respect to predictions ,\nexpectations , beliefs , pians , projections , objectives , goals , assumptions or future\nevents or performance are not statements of historica \\textbar{} fact and may be\nfuture looking statements . future \\textbar{} ooking statements are based on\nexpectations , estimates and projections at the time the statements are made\nthat involve a number of risks and uncertainties which couid cause\nactual results or events to differ materia \\textbar{} \\textbar{} y from those presently\nanticipated . future \\textbar{} ooking statements in this action may be identified through\nthe use of words such as projects , foresee , expects , will , anticipates ,\nestimates , believes , understands or that by statements indicating\ncertain actions may , could , or might occur . these future - \\textbar{} ooking statements\nare based on information currentiy avaiiabie and are subject to a\nnumber of risks , uncertainties and other factors that couid cause ggts ' s\nactua \\textbar{} resuits , performance , prospects or opportunities to differ\nmaterialiy from those expressed in , or impiied by , these future - \\textbar{} ooking\nstatements . as with many microcap stocks , today ' s company has additiona \\textbar{} risk\nfactors that raise doubt about its ability to continue as a going\nconcern . ggts is not a reporting company registered under the securities act\nof 1934 and hence there is \\textbar{} imited public information avaiiable about\nthe company . these risks , uncertainties and other factors include ,\nwithout \\textbar{} imitation , the company ' s growth expectations and ongoing funding\nrequirements , and specificaily , the company ' s growth prospects with\nscalable customers . other risks include the company ' s limited operating\nhistory , the company ' s history of operating losses , consumers ' acceptance ,\nthe company ' s use of licensed technoiogies , risk of increased\ncompetition , the potentia \\textbar{} need for additional financing , the conditions and\nterms of any financing that is consummated , the limited trading market for\nthe company ' s securities , the possibie volatility of the company ' s\nstock price , the concentration of ownership , and the potentia \\textbar{} fluctuation\nin the company ' s operating results . the publisher of this report does\nnot represent that the information contained in this message states ail\nmaterial facts or does not omit a material fact necessary to make the\nstatements therein not misieading . a \\textbar{} \\textbar{} information provided within this\nreport pertaining to investing , stocks , securities must be understood\nas information provided and not investment advice . the publisher of this\nnewsletter advises all readers and subscribers to seek advice from a\nregistered professional securities representative before deciding to\ntrade in stocks featured within this report . none of the materia \\textbar{} within\nthis report shall be construed as any kind of investment advice or\nsolicitation . many of these companies are on the verge of bankruptcy . you can\nlose al \\textbar{} your money by investing in this stock . the pubiisher of this\nreport is not a registered investment expert . subscribers should not\nview information herein as \\textbar{} egal , tax , accounting or investment advice .\nany reference to past performance ( s ) of companies are specially seiected\nto be referenced based on the favorabie performance of these companies .\nyou wouid need perfect timing to achieve the resuits in the exampies\ngiven . there can be no assurance of that happening . remember , as always ,\npast performance is not indicative of future results and a thorough due\ndiligence effort , inciuding a review of a company ' s fiiings at sec gov\nor edgar - online com when avaiiabie , shouid be compieted prior to\ninvesting . al \\textbar{} factua \\textbar{} information in this report was gathered from pubiic\nsources , including but not \\textbar{} imited to company websites and company press\nreleases . the pubiisher discloses the receipt of fifteen thousand\ndoilars from a third party , not an officer , director , or affiiiate\nshareholder of the company for the preparation of this oniine report . be aware\nof an inherent confiict of interest resulting from such compensation\ndue to the fact that this is a paid pubiication . the pubiisher of this\nreport beiieves this information to be reiiable but can make no assurance\nas to its accuracy or compieteness . use of the materia \\textbar{} within this\nreport constitutes your acceptance of these terms .\nif you wish to stop future maiiings , or if you feel you have been\nwrongfuliy placed in our membership , piease go here or send a biank\ne mai \\textbar{} with no thanks in the subject to ( - stoxo 042 @ yahoo . com - )\n & 1\\\\\n\t 2643 & ham & Subject: re : first delivery - wheeler operating\nvance ,\ndeal \\# 643714 has been created and entered in sitara .\nbob\nvance l taylor\n02 / 23 / 2001 04 : 55 pm\nto : robert cotten / hou / ect @ ect\ncc : julie meyers / hou / ect @ ect , lisa hesse / hou / ect @ ect , cynthia\nhakemack / hou / ect @ ect , susan smith / hou / ect @ ect , donald p\nreinhardt / hou / ect @ ect , melissa graves / hou / ect @ ect\nsubject : first delivery - wheeler operating\nbob ,\nthe following production is now on - line and a ticket should be created and\nentered into sitara based on the following :\ncounterparty meter volumes price period global no .\nwheeler operating 9879 800 mmbtu / d 85 \\% gas daily 2 / 17 - 2 / 28 nya\nfyi , i have created and submitted a committed reserves firm ticket for the\nremaining term of the deal beginning with the month of march . additionally ,\nthis is a producer svcs . deal and should be tracked in the im wellhead\nportfolio . . . attached to the gathering contract .\nthanks ,\nvlt\nx 3 - 6353\n- - - - - - - - - - - - - - - - - - - - - - forwarded by vance l taylor / hou / ect on 02 / 23 / 2001\n04 : 21 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : esther buckley 02 / 22 / 2001 10 : 39 am\nto : molly l carriere / hou / ect @ ect , clem cernosek / hou / ect @ ect , donna\nconsemiu / hou / ect @ ect , robert cook / hou / ect @ ect , howard b camp / hou / ect @ ect ,\nlisa hesse / hou / ect @ ect , nathan l hlavaty / hou / ect @ ect , wayne e\nlightfoot / hou / ect , james mckay / hou / ect @ ect , mary m smith / hou / ect @ ect , steve\nhpl schneider / hou / ect @ ect , melissa graves / hou / ect @ ect , michael\nwalters / hou / ect @ ect , jill t zivley / hou / ect @ ect , mary jo johnson / hou / ees @ ees ,\nrita wynne / hou / ect @ ect , lauri a allen / hou / ect @ ect , cheryl\njones / gpgfin / enron @ enron , reid hansen / gco / enron @ enron , darron c\ngiron / hou / ect @ ect , o ' neal d winfree / hou / ect @ ect , susan smith / hou / ect @ ect ,\ngary bryan / hou / ect @ ect , gary a hanks / hou / ect @ ect , donald p\nreinhardt / hou / ect @ ect , vance l taylor / hou / ect @ ect , david\nbaumbach / hou / ect @ ect , robert cotten / hou / ect @ ect , brian m riley / hou / ect @ ect ,\njeff a austin / hou / ees @ ees , cynthia hakemack / hou / ect @ ect , dawn c\nkenne / hou / ect @ ect , lisa csikos / hou / ect @ ect , j r fosdick / gco / enron @ enron ,\ncarlos j rodriguez / hou / ect @ ect , stephanie gomes / hou / ect @ ect , pat\nclynes / corp / enron @ enron , tom acton / corp / enron @ enron , robert\nwalker / hou / ect @ ect , george weissman / hou / ect @ ect , joanne\nharris / na / enron @ enron , christy sweeney / hou / ect @ ect , earl tisdale / hou / ect @ ect ,\ndaren j farmer / hou / ect @ ect\ncc :\nsubject : first delivery - wheeler operating\nplease see attached letter & 0\\\\\n\t 3137 & ham & Subject: swift - may 2001 vols\nsean ,\nfyi , check the purchase from swift at the tailgate ( meter 9643 ) and make sure to nom the correct quantity .\nmary\n- - - - - - - - - - - - - - - - - - - - - - forwarded by mary poorman / na / enron on 04 / 26 / 2001 07 : 09 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : joan quick / enron @ enronxgate on 04 / 25 / 2001 06 : 13 pm\nto : carlos j rodriguez / hou / ect @ ect , mary poorman / na / enron @ enron , jackie young / hou / ect @ ect\ncc : brian m riley / hou / ect @ ect , mike morris / corp / enron @ enron\nsubject : swift - may 2001 vols\nhere is the may first of the month nom :\nking ranch plant 6 , 400 mmbtu / d & 0\\\\\n\t 1629 & ham & Subject: meter variances - ua 4 clean - up\ndaren / vance -\nthe two meters below are new and have unallocatable flow . . . . . . . i will need a\npurchase for each of them . please respond with a deal number , or further\nsuggestions for resolution so that i can clear this up as soon as possible .\nmary\nenron on 09 / 19 / 2000 08 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\nkatherine benedict @ ect\n09 / 18 / 2000 04 : 53 pm\nto : mary poorman / na / enron @ enron , fred boas / hou / ect @ ect , aimee\nlannou / hou / ect @ ect\ncc :\nsubject : meter variances - ua 4 clean - up\nhi guys ,\nplease take a look at the following meters which are showing up with\nvariances on my ua 4 report . once the variance has been cleared , please send\nme an e - mail . please try to clear these within the next couple of days .\nthanks ,\nkathy benedict\nmeter number : 9851\nvariance : 11 , 204\nmeter type : daily swing\nproduction month : august 2000\nlogistics contact : none\nvolume mgmt contact : anita luong\nmeter number : 9852\nvariance 568\nmeter type : daily swing\nproduction month : august 2000\nlogistics contact : none\nvolume mgmt contact : anita luong & 0\\\\\n\t 1858 & ham & Subject: additional recruiting\ni ' m happy to introduce molly magee as the newest addition to the eops\nrecruiting team . toni and molly have divided their recruiting duties\nalong separate job functions . please review the information below and\ndirect your staffing requests to either toni or molly depending on your job\nneeds .\ntoni graham - accounting , risk and confirmation / settlements positions ( or\nopenings requiring a similar skill set of this candidate pool )\nmolly magee - logistics , global data management , research , legal , competitive\nanalysis , contract administration and other positions ( or openings requiring\na similar skill set of this candidate pool )\nthanks for your assistance ,\nhgm & 0\\\\\n\t 3261 & ham & Subject: fw : ercot load comparison\n- - - - - original message - - - - -\nfrom : gilbert - smith , doug\nsent : tuesday , may 22 , 2001 8 : 38 am\nto : tmartin @ enron . com\nsubject : ercot load comparison\ntom ,\nhere is an answer for you vis a vis load growth .\nhope it helps ,\ndoug\n- - - - - - - - - - - - - - - - - - - - - - forwarded by doug gilbert - smith / corp / enron on 05 / 22 / 2001 08 : 35 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : kevin cline / enron @ enronxgate on 05 / 21 / 2001 03 : 26 pm\nto : doug gilbert - smith / corp / enron @ enron\ncc : eric saibi / corp / enron @ enron\nsubject : ercot load comparison\nplease find attached spreadsheet that compares hot days from may 2000 and may 2001 . there are two tabs , one tab contains the days may 16 - 18 , 2000 and the other tab contains the days may 14 - 18 , 2001 . each tab contains both the load data and temp data particular to the days in question . the days most directly comparable are may 17 , 2001 ( thursday ) and may 18 , 2000 ( thursday ) , although the two days preceding may 18 , 2000 were slightly warmer than the two days preceding may 17 , 2001 . the peak on 5 / 17 / 2001 , 44 , 923 mw , is 2 . 78 \\% higher than the peak on 5 / 18 / 2000 , 43 , 709 mw . with similarly warm days before 5 / 17 / 2001 as there were before 5 / 18 / 2000 , the peak would obviously have been even higher . this would put the year - over - year growth in excess of 3 \\% . i believe this falls right in line with the growth rate year - over - year from an earlier analysis , somewhere in the range of 3 . 5 \\% to 4 \\% .\nlet me know if you have any questions or comments . & 0\\\\\n\t 3447 & ham & Subject: meter 6461 , concorde churchill\none year rate for this one will be \\$ . 35 / mm for volumes greater than 300 mm / day . price for volumes 300 mm / day or less will be \\$ . 45 / mm plus a \\$ 350 per month metering fee . this rate would cover transport to a competitive ship channel market such as equistar channelview . transport rates for a 6 month term are not significantly different - \\$ . 33 / mm for volumes greater than 300 mm / day and \\$ . 42 / mm plus the metering fee for volumes 300 mm / day or less . these rates assume a september 1 , 2001 start . these rates good until friday , august 31 , 2001 only ! ! ! get ' em while they ' re hot ! ! & 0\\\\\n\t 2459 & ham & Subject: hpl nom for january 25 , 2001\n( see attached file : hplnol 26 . xls )\n- hplnol 26 . xls & 0\\\\\n\t 2221 & ham & Subject: re : tenaska iv 10 / 00\nwe have received all of the money from the spot sales for tenaska iv in\noctober 2000 , except for the tenaska iv sale and the \\$ 0 . 04 fee .\nmegan & 0\\\\\n\t 4827 & spam & Subject: jump in to gain substantial ground immediately\nwe are very excited about this new upcoming stock about to explode\nmontana oil and gas , inc . ( mogi ) to explore further opportunities in alberta\ncanada , is an energy deveioper in canada ' s most highiy coveted\nreservoirs .\naggressive investors and traders may want to watch montana oi \\textbar{} and gas\nagain this morning ! montana oil and gas inc . ( mogi - news ) announces\nthat the syivan lake oil and gas project is sti \\textbar{} \\textbar{} awaiting a rig at this\ntime . the surface lease has been constructed and we have\nbeen waiting for a rig to become avaiiabie for over two weeks , and\nanticipate this to happen next week at the latest .\nthe company has a 25 \\% working interest in the syivan lake project .\nsymbo \\textbar{} - mogi\ncurrent price - . 26\nreasons to consider mogi :\n1 . price charts confirm oi \\textbar{} prices are experiencing the strongest bul \\textbar{}\nmarket in a generation .\n2 . natura \\textbar{} gas prices have tripled in the \\textbar{} ast two years .\n3 . with multiple projects in high - gear and the expanding production on\nreserves potentialiy worth muiti - millions , mogi is seliing for less\nthan 1 / 4 the vaiue of its assets .\n4 . montana oi \\textbar{} and gas specializes in using new technology to turn\nunproductive oi \\textbar{} and gas deposits into profitabie enterprises . aiready\nshares in the oi \\textbar{} and gas sectorare rising faster than the overa \\textbar{} \\textbar{} market .\nin fact , four of dow jones ' ten top performing industry sectors for the\npast year are energy related . but it ' s in the mid - sized explorers and\ndeveiopers like montana oi \\textbar{} ( mogi ) that the biggest gains are being\nmade . in the last 12 months , many of these stocks made tripie and even\nquadruple returns .\nbreaking news ! !\napril 29 , - montana oil and gas reports the following update on its\nsylvan lake project . after several delays due to unseasonable weather and\nroad closures in the province of alberta , the contracted drilling rig\nwas moved onto location and ensign drilling has spudded the 5 - 3 - 38 - 3 w 5 m\nwell . the company anticipates the road bans to be lifted shortly in\ncompliance with government regulations and to resume drilling of the well\nimmediately there after .\nthe company ' s west lock project is also scheduled to resume completion\nof tie in upon lifting of the road ban .\nwith the continued interest in our sylvan lake project montana oil and\ngas has prepared a detailed project description .\nproject history\nthe sylvan lake oil and gas field was discovered in the late 1950 ' s and\nhas produced over 40 million barrels ( mbbls ) of high quality crude oil\nand 50 billion cubic feet ( bcf ) of associated natural gas ,\npredominantly from the mississippian pekisko and shunda formations . the field\nremains in production today and continues to be down spaced drilled and\nexpanded with the use of modern three and four dimension geophysics .\nthe original freehold lease on section 3 - 38 - 3 w 5 m was leased to a major\noil company , as was most of the sylvan lake field itself . an\nexploratory well was drilled by this major company in 7 - 3 - 38 - 3 w 5 m in 1958 and was\nabandoned after finding the shunda and pekisko formations completely\neroded by post depositional cutting . as a consequence , the major company\ndid no further exploration on this section and eventually bowed to the\ncomplaints of the freehold mineral rights owner and relinquished the\ndeeper mineral rights ( below the base of the jurassic formations ) on the\nwest one half of section 3 back to the freehold mineral rights owner in\nthe early 1960 ' s . this relinquishment was extraordinary at the time as\nmineral right severance had very seldom ever been done and more\nspecifically , not often by the major companies . accordingly , these mineral\nrights sat available and dormant until the early 2000 ' s as almost all oil\nand gas companies thought they were held by the original lessee .\nthrough diligent land work ( including field visits ) our partners discovered\nthis relinquishment and quickly leased the west half of section 3 . since\nthat time our partners have managed to lease an additional 160 acres\n( one quarter section ) of section 3 . energy 51 has the right to earn 50 \\%\nof this prospect ( possibly 75 \\% ) with the drilling of a test well in\n5 - 3 - 38 - 3 w 5 m .\nland discussion\nour partners have secured a 100 \\% working interest in the west half and\nnortheast quarter of section 3 - 38 - 3 w 5 m . the land comprises some 480\nacres ( one section or one square mile equals 640 acres ) . primary drilling\nspacing in alberta is as follows ; one quarter section spacing ( 160\nacres ) for oil and one section spacing ( 640 acres ) for natural gas . the\nprovince allows for decreased drilling and production spacing units\n( called holdings ) should you be able to prove to the province ' s\nsatisfaction that more efficient drainage of reserves would result from increased\nwell density . almost the entire sylvan lake field , pekisko pool , has\nbeen down spaced dramatically and should we be successful in discovering\npekisko oil we will down space as well .\ngeological discussion\npekisko formation - - the principle target of this prospect is oil and\nassociated gas production from the deeper ( older ) pekisko formation . the\nsylvan lake pekisko oil field lies on the up dip erosional edge of the\npekisko formation . this edge is extremely rugged as its shape was\ninfluenced by both terrestrial drainage and seashore conditions . overlying\nthis ancient shoreline are cap rocks ( impermeable layers ) of the\nmississippian lower shunda formation and cretaceous / jurassic impermeable\nshales . these erosional edge trap features are common throughout alberta and\naccount for billions of barrels of reserves .\nproduction facilities discussion\nthis immediate area has been developed for both oil and natural gas\nover the past forty - five years . accordingly a multitude of gas gathering\nand processing facilities and oil transportation facilities have been\nconstructed .\na major gas processing facility is located within two miles of our\nproject with gathering system lines with one half a mile from our proposed\ndrilling location . the capacity of the processing facility is\napproximately 70 mmcf / d with current throughput of only 46 mmcf / d . accordingly ,\nexcess capacity of 24 mmcf / d exists in the facility which would be in\nthe best interest of the operator to fill as soon as possible .\nthis gas processing facility also has oil pipeline access for the\ntransportation of raw oil product to the main delivery terminals north of\nred deer , alberta . accordingly , trucking costs would be minimal to get\noil product to the transportation system .\nfor more detailed project description please see news release dated\n( fri , apr 29 ) .\ngood luck and successfu \\textbar{} trading .\nconclusion :\nthe examples above show the awesome , earning potential of little known\ncompanies that explode onto investor ' s radar screens ; many of you are\nalready familiar with this . is mogi poised and positioned to do that for\nyou ? then you may feel the time has come to act . . . and please watch\nthis one trade tuesday ! go mogi .\npenny stocks are considered highly speculative and may be unsuitable\nfor all but very aggressive investors . this profile is not in any way\naffiliated with the featured company . we were compensated 3000 dollars\nto distribute this report . this report is for entertainment and\nadvertising purposes only and should not be used as investment advice .\n & 1\\\\\n\t 1811 & ham & Subject: re : enron / hpl actuals for october 11 , 2000 - revision\nplease note that the pricing allocation of volumes for october 11 , 2000 should\nbe changed as follows .\nteco tap 40 . 000 / enron ; 25 . 209 / hpl iferc ; 84 . 791 / hpl gas daily\nthe total nomination of 775 . 000 subject to the iferc pricing was completed on\noctober 11 , 2000 . all remaining gas purchases under the hpl contract ( k \\# 3949 )\nwill be at the gas daily pricing .\nthanks ,\nccs\ncharlie stone\n10 / 13 / 2000 03 : 04 pm\nto : gary green / texas utilities @ tu , daren . j . farmer @ enron . com ,\ngary . a . hanks @ enron . com , carlos . j . rodriguez @ enron . com ,\nearl . tisdale @ enron . com , ami . chokshi @ enron . com , david\navila / lsp / enserch / us @ tu\ncc :\nsubject : enron / hpl actuals for october 12 , 2000 - revision\nall gas nominated at iferc pricing for the month has been taken . remaining\npurchases under k \\# 3949 will be at the gas daily pricing .\nteco tap 40 . 000 / enron ; 110 . 000 / hpl gas daily\n- - - - - - - - - - - - - - - - - - - - - - forwarded by charlie stone / texas utilities on\n10 / 13 / 2000\n02 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\ngary green\n10 / 13 / 2000 10 : 04 am\nto : charlie stone / texas utilities @ tu , gary green / texas utilities @ tu ,\ndaren . j . farmer @ enron . com , gary . a . hanks @ enron . com ,\ncarlos . j . rodriguez @ enron . com , earl . tisdale @ enron . com ,\nami . chokshi @ enron . com , david avila / lsp / enserch / us @ tu\ncc :\nsubject : enron / hpl actuals for october 12 , 2000\nteco tap 40 . 000 / enron ; 110 . 000 / hpl iferc & 0\\\\\n\t 2367 & ham & Subject: registration confirmation from spinner . com\nthank you for joining spinner . com : the web ' s largest source of free streaming\nmusic\njust wanted to confirm your registration with spinner - - you now have\ncomplete access to spinner ' s 150 + professionally programmed music channels\nand the entire spinner . com website . and just to remind you , the player , the\nwebsite , and ( most importantly ! ) the music are all totally free .\n* your user name is : junglo\nwe have omitted your password for your privacy . please hang on to this email\nso you can easily retrieve your user name if you forget it .\n* forget your password ? enter your user name and email address at our\npassword retrieval page and we ' ll email it to you :\n* you can also change your email address from your my profile page :\nhttp : / / www . spinner . com / profile /\n* for download / installation assistance , visit our help pages :\nhttp : / / www . spinner . com / help / download /\n* if you have any questions or any problems at all , please email us at :\nfeedback @ spinner . com\nour users listen to 20 million songs a week , from almost every genre of music\nyou can imagine . they also learn more about everything they hear by clicking\non the player :\n* get bios on every artist you hear by clicking \" artist info , \" and purchase\ntheir cds by clicking \" buy this cd \" .\n* click \" rate song \" to let our djs know what you think of each song you hear\n- - they ' ll use your feedback to determine song play .\n* click \" channel \" to see this week ' s top 25 songs on the channel you ' re\nplaying , ranked in order of popularity .\n* for even more great info on our channels and music , visit spinner . com . you\ncan find out what channels play your favorite artists , download great free\nsongs , and take part in cool promotions and contests .\nthanks again for registering . if you like what you hear , tell a friend about\nspinner .\nenjoy the music !\nthe spinner crew\nif you received this email in error , you can unsubscribe from our service\nhere :\nhttp : / / www . spinner . com / unsubscribe / & 0\\\\\n\t 2829 & ham & Subject: aep transition items\nattached is a brief memo outline some of the transtion issues with hpl to aep\nthis is the first draft .\nthe itilized items currently require some more action .\nplease add any items and forward back to me . i will update\nthanks\nbob & 0\\\\\n\t 3512 & ham & Subject: an inbound message for you has been quarantined\nyou have received this message because someone has attempted to send you an e - mail from outside of enron with an attachment type that enron does not allow into our messaging environment . your e - mail has been quarantined and is being held at the mailsweeper server .\nsender : colio @ houston . rr . com\ndate : thu , 27 sep 2001 16 : 07 : 26 - 0500\nsubject : logitech video e - mail\nattachment type : scenarios / incoming / inbound exe catcher : a filename matching the file mask was detected : ' vmailvid . exe ' .\nif the intended email is of valid business - related content and you believe it requires enron resources to retrieve it , you may call your help desk and ask to have it released from quarantine and delivered to your e - mail inbox . your message will be scanned and checked for viruses prior to requested release . if it contains a virus or there is reason to suspect it is malicious code , it will not be delivered .\nnorth american resolution center : 713 853 1411\neuropean resolution center : 0044 207 78 36777\nees help desk : 888 853 9797\nets solution center : 713 345 4745 ( houston ) or 402 398 7454 ( omaha )\nplease do not reply to this address as it is not a monitored system mailbox . & 0\\\\\n\t 441 & ham & Subject: re : valero gas marketing ; meter \\# : 8018 / sitara ticket \\# 148376\nplease zero out the volumes until further notice . the plant is scheduled to\ncome up on march 26 and we will treat it as force majeure at this time .\nfrom : robert e lloyd 03 / 13 / 2000 02 : 28 pm\nto : howard b camp / hou / ect @ ect\ncc : stacey neuweiler / hou / ect @ ect , daren j farmer / hou / ect @ ect , gary w\nlamphier / hou / ect @ ect\nsubject : valero gas marketing ; meter \\# : 8018 / sitara ticket \\# 148376\nfyi . . . only !\ngary agreed to let the deficiency volumes hit the buyback that is set\npresently .\n- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 03 / 13 / 2000\n02 : 25 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : robert e lloyd 03 / 13 / 2000 02 : 09 pm\nto : gary w lamphier / hou / ect @ ect , stacey neuweiler / hou / ect @ ect , daren j\nfarmer / hou / ect @ ect\ncc : pat clynes / corp / enron @ enron , aimee lannou / hou / ect @ ect\nsubject : valero gas marketing ; meter \\# : 8018 / sitara ticket \\# 148376\neffective march 11 th valero has not pulled any gas on a 35 . 0 / day\nnomination .\ndo you want to arrange a buyback for this activity . there is a buyback\nticket \\{ \\# 148381 \\} available\nto handle any underage .\ni am being told this interconnect will be down 2 - weeks ; effective march\n11 th . & 0\\\\\n\t ⋮ & ⋮ & ⋮ & ⋮\\\\\n\t 4453 & spam & Subject: economize 55 \\% and more with your recipes\nwe assists you economise on costly recipes\nmedicinal drugs with worths that are as much as 50 \\% less than retail\napothecary ' s shop alternatives .\nexamine costs\n & 1\\\\\n\t 747 & ham & Subject: memo from office of the chair\nthe mid - year performance management cycle will begin on may 15 with the\nopening of the pep system ( the online \" performance evaluation process \"\nfeedback system ) . you will be receiving your password for this system in a\nnote to go out later from pep . in preparation for the cycle , four training\nclasses will be offered to all new employees and to those employees who have\nnot previously attended training . enrollment for these classes will be\noffered through the development center \" ernie \" system . for employees who are\noutside the houston area , please contact your hr representative for more\ninformation .\nthese sessions will be held on :\nwednesday , may 10 from 9 : 00 - 10 : 00 a . m . , and three sessions to be held on\nthursday , may 11 from 9 : 00 - 10 : 00 a . m . ; 1 : 30 - 2 : 30 p . m . ; and 3 : 00 - 4 : 00 p . m .\nall sessions will be held at the doubletree hotel .\nto register , click on this link to go directly to the development center\nfor those of you who have attended the training before and who are familiar\nwith the past performance management process , there have been some\nmodifications :\n1 . the performance management process is now enron wide . all enron feedback\nforms have been reduced to three ( vice president ( vp ) / managing director\n( md ) ; management / professional ; and administration / support ) , which all use\nthe following criteria :\n? innovation / entrepreneurship\n? communication / setting direction\n? teamwork / interpersonal\n? leadership / vision / values\n? business instinct\n? analytical / technical\n2 . the following six performance ratings will be used consistently on the\nfinal feedback forms across enron :\nsuperior\nexcellent\nstrong\nsatisfactory\nneeds improvement\nissues\n3 . there will be four recognized peer groups across the company for purposes\nof the prc ( formerly the business review meetings ) meeting .\n? commercial\n? commercial support\n? technical\n? specialized technical\n4 . the performance review process will continue to be used to facilitate :\n? promotions - up to director level only . there will be no officer promotions\nto vp / md at mid - year\n? feedback to employee\n? compensation decisions\n? sharing of performance rating at manager \u0001 , s discretion\n5 . prc meetings will be reviewed by both functional area \\& business units\nboth functional areas and business units will participate in the rating of\nemployees to cover both solid and dotted line reporting relationships .\nfunctional prc meetings will take place first , followed by the final business\nunit meetings . difference in views on an individual employee \u0001 , s rating should\nbe discussed and consensus should be reached . the functional area meetings\nare :\n- accounting\n- human resources\n- government affairs\n- rac\n- global finance\n6 . the pep system is now available via the intranet to allow greater access\nfrom global locations and remotely . the functionality is essentially the\nsame . if you would like further information on how to use this system you may\ngain access to the quick reference guide by clicking on the attached\nweblinkhttp : / / home . enron . com / announce / . pdf . if the\nquick reference does not display correctly on your pc , call your help desk\nfor assistance , or irma alvarez at 713 - 853 - 1543 to get a hard copy .\n7 . the general responsibilities remain the same regarding the overall\nprocess :\nemployee / reviewer responsibilities :\nselect 5 - 7 reviewers\ncomplete self - assessment\ncomplete requested feedback forms\nreviewers who cannot provide feedback use the decline request feature\nsupervisor responsibilities :\napprove reviewers ( at least 3 of the employee ' s choices )\ncommunicate modifications to employee\nparticipate in prc meetings as required\nsummarize feedback and complete appropriate feedback form\ncommunicate feedback to the employee\nschedule for mid - year performance review\nmay 15 pep system opens for feedback\njune 9 pep system closes for feedback\njune 12 functional / business unit prc meetings begin\njuly 20 prc meetings should finish\njuly 31 / august 1 vp \\& md prc meeting\nas always , if you have further questions on the performance management\nprocess , you may contact your hr representative . & 0\\\\\n\t 992 & ham & Subject: enron / hpl actuals for june 15 , 2000\nteco tap 115 . 000 / hpl iferc ; 10 . 000 / enron\ntexoma 0\nls hpl lsk 30 . 000 / enron & 0\\\\\n\t 4894 & spam & Subject: we are the best qns\nlook at this of - fers :\nv - codin - 225 . 00 ( 90 pi lls )\nvalliuum - 153 . 00 ( 90 pi lls )\nvi graa - 270 . 00 ( 90 pi lls )\ncai llis - 348 . 00 ( 90 pi lls )\ncodeinne - 126 . 00 ( 90 pi lls )\nxia naax - 171 . 00 ( 90 pi lls )\nall orderrs are delivered by fedex with full tracking 24 / 7 .\nsatisfactiionnss guaaranteeed . . .\nhttp : / / www . ultrameds 4 u . com\nto get rid of maiiling list :\n & 1\\\\\n\t 3348 & ham & Subject: re : epgt\ngloria , the difference between the two pipes for july 2000 is the actuals came in lower than what was nominated and scheduled on mops . there isn ' t anything we can do about that difference , hopefully there is some kind of oba that takes those variances .\nsabra\n- - - - - original message - - - - -\nfrom : barkowsky , gloria g .\nsent : friday , june 22 , 2001 4 : 50 pm\nto : garcia , clarissa ; farmer , daren j . ; dinari , sabra l .\nsubject : epgt\nclarissa - thanks so much for all your help with this pipe ! everything looks great . i just have a couple of paths\nthat i need to finish it :\njanuary 2000 - i need deal \\# 854688 pathed for epgt and for tetc . according to the invoice , we should have\n11 , 129 dth on the interconnect .\nfebruary 2000 - i need deal \\# 871184 pathed for hpl and chan . hpl should have 3 , 600 dth and chan should\nhave 11 , 500 dth on the interconnect .\njuly 2000 - deal \\# 871172 has an interconnect issue . according to mops contract \\# 105124 , they received 8 , 275 dth\non the matagorda 624 , but according to epgt , they delivered 10 , 362 dth to hpl ( ? ) could this possibly\nneed to be split somehow , or do you have any other ideas ?\nlet me know . thanks , gloria 3 - 7118 & 0\\\\\n\t 4961 & spam & Subject: keep your immune system strong\nkeep your immune system strong\nhttp : / / crohellocro . info / ps\ngo here for removal\nhttp : / / www . myfriendlyshop . com / gone\n & 1\\\\\n\t 2331 & ham & Subject: enron / hpl actuals for january 2 , 2001\nteco tap 30 . 000 / enron\nls hpl lsk ic 30 . 000 / enron & 0\\\\\n\t 3897 & spam & Subject: discreet cheapest prescri \\textasciicircum{} ption dru \\& gs online !\n & 1\\\\\n\t 4647 & spam & Subject: cheapest meds you ' ll find .\ndiscount drugs . . . save over 70 \\%\nincluding new softtabs ! the viagra that disolves under the tongue ! !\nsimply place 1 half a pill under your tongue , 15 min before sex .\nyou will excperience :\n- a super hard erection\n- more pleasure\n- and greater stamina ! !\nwe ship world wide , and no prescription is required ! !\neven if you ' re not impotent , viiagra will increase size , pleasure and power !\ngive your wife the loving she deserves ! ! !\nwe are cheaper supplier on the internet . retail price is 15 ea , = (\nour internet price is 1 . 17 each ! ! ! = )\nmany many other meds available .\nthanks for your time !\nhttp : / / aujobs . net / ? aa\ncheck out our party pack as well !\nconfidentiality assured !\n & 1\\\\\n\t 2819 & ham & Subject: neon lesson \\# 5\nplease respond to here is your next lesson . . . have fun ! !\n- experiencing god week 5 . doc & 0\\\\\n\t 3762 & spam & Subject: fwd : transferring today ?\nrn \\$ 0 by tomom . nling , nmicks , npe . . . juest incr honeple . e arpting onlicatir aited tio apayjupy thowing uto yowser tt staay . . .\nwwlearunts . us\nowners holiday ' s holidays default ' s .\ntrap pack carefully log society ' s home advising .\nreference home ' s affair reference ' s honest expressing expression trap ' s hope affair ' s define pack ' s soft .\n & 1\\\\\n\t 4778 & spam & Subject: oxyyyyconttin no script needeeed\n\\{ taaabbsittabbs \\} \\{ cccheaapicheeep \\}\n\\{ ssstttoooppp hhhhurting todayistop da pain now \\}\nhttp : / / offfmeebabyy\n & 1\\\\\n\t 2583 & ham & Subject: feb 12 th sale to aquila\nfyi\ndaren - - - on the 12 th , there is a sale to aquila on the header system , for\n10 , 000 . . . . . . . . i think we were supplying it with aec . for whatever reason , i\nhad the aec 10 . 0 @ \\# 11230 into midcon . . . which isnt right because there was no\nmarket for it , and midcon wasnt looking for it , but the aquila deal was at\n\\# 700 on wgr ( aquila ) . so i went ahead and changed the aec ticket to match up\nwith the aquila deal . let me know if you think it is incorrect .\nthanks ,\nmark & 0\\\\\n\t 2203 & ham & Subject: re : hpl meter \\# 980074 bammel hpl d / p to transco\ndaren - what happened in feb . was that transco had allocated a different\namount other than our measurement . i had been working with fred on getting\nsome allocations resolved for several different months . transco told us they\nwould not go back and reallocate due to the statute of limitations ( 6\nmonths ) . february had a significant amount not allocated . we just need a\ndeal set up so we can write these volumes off . let me know if you have any\nmore questions .\naim\nclem cernosek\n12 / 12 / 2000 01 : 09 pm\nto : aimee lannou / hou / ect @ ect\ncc :\nsubject : re : hpl meter \\# 980074 bammel hpl d / p to transco\nplease response .\nthanks , clem\n- - - - - - - - - - - - - - - - - - - - - - forwarded by clem cernosek / hou / ect on 12 / 12 / 2000 01 : 13\npm - - - - - - - - - - - - - - - - - - - - - - - - - - -\ndaren j farmer\n12 / 12 / 2000 12 : 35 pm\nto : clem cernosek / hou / ect @ ect\ncc :\nsubject : re : hpl meter \\# 980074 bammel hpl d / p to transco\nwhat was going on in feb ?\nd\nclem cernosek\n12 / 11 / 2000 04 : 27 pm\nto : daren j farmer / hou / ect @ ect\ncc : aimee lannou / hou / ect @ ect\nsubject : hpl meter \\# 980074 bammel hpl d / p to transco\ndaren\nduring the period of 1 / 1 / 99 to 9 / 30 / 2000 , the above meter has recorded flow\non the following days :\ndays mmbtus\n11 / 12 / 99 ( 58 )\n12 / 23 / 99 ( 133 )\n2 / 1 / 00 ( 463 )\n2 / 2 / 00 ( 463 )\n2 / 3 / 00 ( 463 )\n2 / 4 / 00 ( 463 )\n2 / 5 / 00 ( 463 )\n2 / 6 / 00 ( 463 )\n2 / 7 / 00 ( 463 )\n2 / 8 / 00 ( 463 )\n2 / 9 / 00 ( 463 )\n2 / 10 / 00 ( 463 )\n2 / 11 / 00 ( 463 )\n2 / 12 / 00 ( 463 )\n2 / 13 / 00 ( 463 )\n2 / 14 / 00 ( 463 )\n2 / 15 / 00 ( 464 )\n2 / 16 / 00 ( 463 )\n2 / 17 / 00 ( 463 )\n2 / 18 / 00 ( 463 )\n2 / 19 / 00 ( 463 )\n2 / 20 / 00 ( 463 )\n2 / 21 / 00 ( 463 )\n2 / 22 / 00 ( 463 )\n2 / 23 / 00 ( 463 )\n2 / 24 / 00 ( 463 )\n2 / 25 / 00 ( 463 )\n2 / 26 / 00 ( 463 )\n2 / 27 / 00 ( 463 )\n2 / 28 / 00 ( 463 )\n2 / 29 / 00 ( 464 )\n6 / 28 / 00 78\n9 / 14 / 00 499\n( 13 , 043 )\ncurrently , these volumes are being booked to hpl strangers gas contract .\nlogistics needs approval to writeoff these volumes to unaccounted for gas .\nif you have any questions , please contact aimee lannou @ x - 30506 .\nthanks , clem\nps :\napproval to writeoff the volumes to unaccounted for gas & 0\\\\\n\t 1904 & ham & Subject: cleburne - tenaska iv plant\ndaren ,\ni ' m trying to put together the 2001 operating budget for the plant . i need a\nconservative forecast , per month , of the price that could be obtained by\nselling our excess volumes .\nthanks . & 0\\\\\n\t 1080 & ham & Subject: ami , , ,\nper our conversation , i would perfer the 2 , 000 difference be placed on the oba\nbetween lsp and teco ,\nbecause we requested to cut the flow .\nthanks ! !\n- - - - - - - - - - - - - - - - - - - - - - forwarded by tim powell / lsp / enserch / us on 06 / 27 / 2000\n10 : 58 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\nami . chokshi @ enron . com on 06 / 27 / 2000 08 : 42 : 09 am\nto : tim powell / lsp / enserch / us @ tu\ncc : charlie stone / texas utilities @ tu , daren . j . farmer @ enron . com\nsubject :\nhey tim ,\nfor may 12 , our supply shows that 8 . 000 did flow even though you cut flow\nto 6 . 0 . let me know how you want to handle the situation . sorry for the\ninconvenience .\nami & 0\\\\\n\t 256 & ham & Subject: 5 th changes @ duke and air liquide\n- - - - - - - - - - - - - - - - - - - - - - forwarded by ami chokshi / corp / enron on 02 / 04 / 2000\n11 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\ntroy \\_ a \\_ benoit @ reliantenergy . com on 02 / 04 / 2000 11 : 06 : 27 am\nto : ami chokshi / corp / enron @ enron\ncc :\nsubject : 5 th changes @ duke and air liquide\n( see attached file : egmnom - feb . xls )\n- egmnom - feb . xls & 0\\\\\n\t 2789 & ham & Subject: imbalance gas\njust in case worse comes to worse .\n- - - - - - - - - - - - - - - - - - - - - - forwarded by mary poorman / na / enron on 03 / 21 / 2001 11 : 29 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : juliann kemp / enron @ enronxgate on 03 / 21 / 2001 10 : 39 am\nto : mary poorman / na / enron @ enron\ncc :\nsubject : imbalance gas\nmary we just have two . thanks - julie\ncontract 012 - 87794 - 02 - 001 ( delivery )\nmeter 981506\nwe owe them 21 , 771\n981244 ( delivery ) koch refinery\nwe owe them 16 , 810 & 0\\\\\n\t 4381 & spam & Subject: pictures\nstreamlined denizen ajar chased\nheavens hostesses stolid pinched saturated\nstaten seventeens juggler abashed\nice guts centrifugal bauxite wader\nshyness whirr ukrainian understandingly conditioner\nbarges entitles vanderpoel\npreset wigwam storming alexei\nsupergroup tab mare\nbirthright brutalize tolerates depots bubbling\n- -\nphone : 439 - 120 - 6060\nmobile : 590 - 203 - 5805\nemail : darden . audley @ houston . rr . com\n & 1\\\\\n\t 760 & ham & Subject: mid year prc meeting\ni would like to have our prc meeting on thursday , 6 / 8 . because of trading ,\nwe will not be able to start until noon . please confirm to me asap ( by end\nof day , today ) that you will be available . please keep in mind that we will\nwent last time from 1 : 00 pm until almost midnight . your commitment of this\ndate will include the evening hours , unless of course , we work quickly and\nefficiently ! ! ! sally ' s meeting is scheduled for tuesday , 6 / 13 , and i plan to\nbe on vacation on friday , 6 / 9 . therefore , this is the lastest date that we\ncan meet . please make every effort to make this work .\nthanks . & 0\\\\\n\t 4979 & spam & Subject: penny stocks are about timing\nnomad international inc . ( ndin )\na multi - national internet communications company developing cost\neffective telecommunications through voice over internet protocol ( voip )\ntechnologies .\nshares outstanding : 34 , 0 oo , 000\nfloat : 4 , 000 , 0 oo\ncurrent price : o . 09\nwiil it continue higher ? watch this one friday as we know many of you\nlike momentum .\nbreaking news ! !\nmay 18 - - nomad international inc . ( ndin ) commented today on the recent\nannouncement by the canadian radio - teievision and teiecommunications\ncommission ( crtc ) that they would reguiate voice over internet protoco \\textbar{}\n( voip ) service only when it is provided and used as local telephone\nservice .\nin its decision , the crtc determined that in an effort to buiid\nsustainable competition in \\textbar{} ocal teiephone markets , the incumbent carriers\nwiil not be permitted to price their local voip services below cost to\nstifie competition .\nthe ruling is a very positive one for nomad in our efforts to enter\nthe canadian market with our products via internet service providers ,\ncabie companies and virtual operators . the ruling permits us to enter the\nmarket with a competitive framework , stated jan oiiver , ceo of nomad\ninternationa \\textbar{} inc .\nthe key to nomad ' s entry into the voip market is the ability of its\nproducts to offer services to both broadband and dia \\textbar{} - up customers . though\nbroadband is gaining more and more acceptance and utiiization\nworldwide , dial - up remains the primary source of internet connectivity . in the\nu . s . alone , there are over 200 , oo 0 , 000 users of the internet . of the\ntota \\textbar{} users in the u . s . , the total number of users of broadband is only\napproximately 4 o , 0 oo , 00 o ; ( stats by the yankee group ) dia \\textbar{} - up therefore\nrepresents approximately 8 o \\% of the entire internet connectivity market .\nthe percentage of dia \\textbar{} - up versus broadband users woridwide is even\nhigher .\nnomad ' s ability to offer voip products to dial - up customers and service\nproviders not only offers significant potentia \\textbar{} for market penetration ,\nbut also sets the company apart from its competition in the marketplace\nby offering a unique , proprietary and easiiy adaptabie product .\nabout nomad international inc .\nnomad international inc . is a muiti - national internet communications\ncompany deveioping cost effective telecommunications through voice over\ninternet protocol ( voip ) technoiogies . the company ' s revolutionary voip\nproduct line ca \\textbar{} \\textbar{} ed nomad systems that has dia \\textbar{} - up , broadband , dsl ,\ncable , sate \\textbar{} \\textbar{} ite and wireless capabilities . the company pians on\ntargeting : 1 ) national fixed \\textbar{} ine ii iii tier carriers which are interested in\neffectively competing with the dominant carrier in their marketpiace ,\n2 ) large muitinationa \\textbar{} corporations which need to have us or european\npresence by having , ( for exampie ) , a united states number ringing in\ntheir offices in guatemala or london - - offering business partners a more\neconomical way to communicate , and 3 ) immigrants in north america , a\nmeans of significantiy \\textbar{} owering their communication expense with their\nreiatives in their country of origin .\nconclusion :\nthe exampies above show the awesome , earning potential of little known\ncompanies that explode onto investor ' s radar screens ; many of you are\naiready famiiiar with this . is ndin poised and positioned to do that for\nyou ? then you may feel the time has come to act . . . and piease watch\nthis one trade friday ! go ndin .\npenny stocks are considered highiy speculative and may be unsuitabie\nfor al \\textbar{} but very aggressive investors . this profiie is not in any way\naffiliated with the featured company . we were compensated 3 ooo do \\textbar{} \\textbar{} ars\nto distribute this report . this report is for entertainment and\nadvertising purposes oniy and should not be used as investment advice .\nif you wish to stop future maiiings , or if you fee \\textbar{} you have been\nwrongfuily piaced in our membership , please go here or send a biank\ne mail with no thanks in the subject to\nnoneedl 020 @ yahoo . com\n & 1\\\\\n\t 4162 & spam & Subject: anomaly boys from 3881\nuosda apaproved mledms heure\ncrack mutagen poliomyelitis axisymmetric virus bernoulli pervade cadenza arena martin cardioid familiar bladdernut inductee donor you tranquil bar kingdom dinnerware pedagogy traipse chromate idle mph diligent company contributor bal\nantipodean escadrille stan affiance antagonist roil siren conrad repression bluejacket conduce continue myriad configuration brute anthem yore pessimal turpitude bum 3\nmacintoshdogleg & 1\\\\\n\t 1428 & ham & Subject: re : meter \\# : 1266 ; august 2000 / allocation exception\nconoco has nominated 5 . 0 / d at this meter . conoco transport can be allocated\nthe entire meter flow for the days in which the meter flow\nexceed 5 . 0 mm because they are the only party doing business at the meter .\nhpl may also be able to extract a sell for this overage which is why i\nwanted you to be aware of the daily activity thus far .\n- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 08 / 21 / 2000\n01 : 57 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : lee l papayoti on 08 / 21 / 2000 01 : 44 pm\nto : robert e lloyd / hou / ect @ ect\ncc : sherlyn schumack / hou / ect @ ect , anita luong / hou / ect @ ect , daren j\nfarmer / hou / ect @ ect , gary a hanks / hou / ect @ ect , pat clynes / corp / enron @ enron\nsubject : re : meter \\# : 1266 ; august 2000 / allocation exception\nwhy are these volumes flowing ?\nfrom : robert e lloyd 08 / 21 / 2000 01 : 36 pm\nto : lee l papayoti / hou / ect @ ect\ncc : sherlyn schumack / hou / ect @ ect , anita luong / hou / ect @ ect , daren j\nfarmer / hou / ect @ ect , gary a hanks / hou / ect @ ect , pat clynes / corp / enron @ enron\nsubject : re : meter \\# : 1266 ; august 2000 / allocation exception\nshould i roll this deal to cover august 2000 activity ?\nvolumes todate are as follows : 82 mm 8 / 16\n85 mm 8 / 17\n65 mm 8 / 18\n57 mm 8 / 19\n60 mm 8 / 20\nsitara ticket \\# : 363514\nthese small meter flows are causing allocation exceptions for august .\n- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 08 / 21 / 2000\n01 : 27 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : robert e lloyd 08 / 11 / 2000 03 : 17 pm\nto : howard b camp / hou / ect @ ect , rita wynne / hou / ect @ ect\ncc : pat clynes / corp / enron @ enron , daren j farmer / hou / ect @ ect\nsubject : re : meter \\# : 1266 ; july 2000 activity / allocation exception\nfyi\n- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 08 / 11 / 2000\n03 : 16 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : robert e lloyd on 08 / 11 / 2000 03 : 16 pm\nto : lee l papayoti / hou / ect @ ect\ncc :\nsubject : re : meter \\# : 1266 ; july 2000 activity / allocation exception\nthe volumes are as follows : july lst 414 mmbtu\njuly 31 12 mmbtu\ntotal : 426 mmbtu ' s\nalso , the sitara deal \\# is : 363514\nfrom : lee l papayoti on 08 / 11 / 2000 02 : 02 pm\nto : robert e lloyd / hou / ect @ ect\ncc : howard b camp / hou / ect @ ect , pat clynes / corp / enron @ enron\nsubject : re : meter \\# : 1266 ; july 2000 activity / allocation exception\nplease set up a ticket priced at gas daily houston ship channel midpoint\nminus \\$ 0 . 03\nalso , can you let me know the exact volumes in question on july 1 and july\n31 ? dorcheus wants to know . me too .\nthanks\nlee\nto : lee l papayoti / hou / ect @ ect\ncc : howard b camp / hou / ect @ ect , pat clynes / corp / enron @ enron\nsubject : re : meter \\# : 1266 ; july 2000 activity / allocation exception\njust a reminder that \" allocation close \" is monday , august 14 th .\na sitara ticket is needed to set up an acctg . arrangement which will\neliminate the allocation exception for meter \\# 981266\n\\{ victoria station \\# 2 / brandywine \\} .\nfrom : lee l papayoti on 08 / 09 / 2000 03 : 33 pm\nto : robert e lloyd / hou / ect @ ect\ncc :\nsubject : re : meter \\# : 1266 ; july 2000 activity / allocation exception\ni ' ll get you a price tomorrow when i meet with him . . .\nfrom : robert e lloyd 08 / 09 / 2000 12 : 50 pm\nto : lee l papayoti / hou / ect @ ect\ncc : daren j farmer / hou / ect @ ect , pat clynes / corp / enron @ enron , rita\nwynne / hou / ect @ ect , howard b camp / hou / ect @ ect\nsubject : meter \\# : 1266 ; july 2000 activity / allocation exception\ni spoke with bob dorcheus , brandywine about this issue and he suggest you\nand he get together and agree on a\nprice because the gas flowed into the plant .\nthis gas flowed without a nomination .\n- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 08 / 09 / 2000\n12 : 47 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\nenron north america corp .\nfrom : gary a hanks 08 / 09 / 2000 11 : 27 am\nto : robert e lloyd / hou / ect @ ect\ncc : earl tisdale / hou / ect @ ect , pat clynes / corp / enron @ enron , rita\nwynne / hou / ect @ ect , howard b camp / hou / ect @ ect\nsubject : meter \\# : 1266 ; july 2000 activity / allocation exception\nthe volumes on meter \\# 1266 for 7 / 1 / 00 and 7 / 31 / 00 are valid gas flow . 7 / 1 / 00\nvolumes are carry over from june activity ( meter was shut in a little after\n9 : 00 am on 7 / 1 / 00 ) . 7 / 31 / 00 volumes were caused by the plant bringing on\nthe meter before 9 : 00 am on 8 / 1 / 00 .\nif you have any questions please call . 36449 .\nthanks\ngary h\n- - - - - - - - - - - - - - - - - - - - - - forwarded by gary a hanks / hou / ect on 08 / 09 / 2000 11 : 18\nam - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : robert e lloyd 08 / 09 / 2000 11 : 17 am\nto : gary a hanks / hou / ect @ ect , earl tisdale / hou / ect @ ect\ncc : pat clynes / corp / enron @ enron , rita wynne / hou / ect @ ect , howard b\ncamp / hou / ect @ ect\nsubject : meter \\# : 1266 ; july 2000 activity / allocation exception\nplease verify the volume on meter \\# : 1266 for july lst \\& 31 st are valid gas\nflow .\nbrandywine did not nominate any activity at this meter for july 2000 . & 0\\\\\n\t 4365 & spam & Subject: slutty milf wants to meet you\ntake that !\n' ilaa - liqaa\n & 1\\\\\n\t 2849 & ham & Subject: fw : crosstex energy , driscoll ranch \\# 1 , \\# 3 , meter nos . 9858 and\n9868\nplease note the following for april production regarding the crosstex\ncontract : 96048744 at the above referenced location .\nthank you ,\nmelissa\n- - - - - original message - - - - -\nfrom : bubert , jerry\nsent : thursday , march 22 , 2001 2 : 19 pm\nto : taylor , vance l .\ncc : flynn , shawna ; graves , melissa ; harris , joanne ; reinhardt , donald p . ;\nriley , brian ; smith , susan ; sweeney , christy ; walker , robert ; weissman , george\nsubject : crosstex energy , driscoll ranch \\# 1 , \\# 3 , meter nos . 9858 and 9868\nper section 2 . 2 of the gpa , crosstex has elected to sell 4000 mmbtu / d in the\naggragate at the base contract price of if hsc less \\$ 0 . 10 , and the excess of\nthe available gas over 4000 mmbtu / d in the aggragate at gda hsc less \\$ 0 . 15 . & 0\\\\\n\t 1518 & ham & Subject: put the 10 on the ft\nthe transport volumes decreased from 25000 to 10000 . all 10000 should be on\ncontract 012 - 41991 - 203 .\nthanks ,\nami\n- - - - - - - - - - - - - - - - - - - - - - forwarded by ami chokshi / corp / enron on 08 / 31 / 2000\n10 : 54 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\nroyal \\_ b \\_ edmondson @ reliantenergy . com on 08 / 31 / 2000 10 : 47 : 37 am\nto : ami \\_ chokshi @ enron . com\ncc :\nsubject : put the 10 on the ft\n( see attached file : hpl - sept . xls )\n- hpl - sept . xls & 0\\\\\n\t 404 & ham & Subject: 3 / 4 / 2000 and following noms\nhpl can ' t take the extra 15 mmcf / d over the weekend . we ' ll try next week ,\nbut for now the nom will stay at 60 mmcf / d , with redeliveries as they have\nbeen\n-\n50 into pg \\& e , 7 from fcv , and 3 at carthage .\n- - - - - - - - - - - - - - - - - - - - - - forwarded by bruce mcmills / ftworth / pefs / pec on\n03 / 03 / 2000\n09 : 42 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\nbruce mcmills\n03 / 03 / 2000 09 : 10 am\nto : dfarmer @ enron . com , briley @ enron . com , stacey . neuweiler @ enron . com\ncc : chad w . cass / gcs / cec / pec @ pec , william e . speckels / gcs / cec / pec @ pec , donna\nc . spencer / gcs / cec / pec @ pec , michael r . cherry / easttexas / pefs / pec @ pec ,\ndarrel f . bane / easttexas / pefs / pec @ pec\nsubject : 3 / 4 / 2000 and following noms\nthis is to nominate 75 , 000 mmbtu / d into eastrans for 3 / 4 / 2000 and following .\nwe will deliver 50 , 000 into pg \\& e , 7 , 000 from fuel cotton valley ( continue\n750\nmmbtu / d sale ) ,\nand 18 , 000 mmbtu / d into your cartwheel agreement at carthage . & 0\\\\\n\t 2933 & ham & Subject: calpine daily gas nomination\n>\n>\njulie , as i mention earlier we hope to start the unit this afternoon but\nare still experiencing difficulties . i will keep you informed . thanks .\nricky a . archer\nfuel supply\n700 louisiana , suite 2700\nhouston , texas 77002\n713 - 830 - 8659 direct\n713 - 830 - 8722 fax\n- calpine daily gas nomination 1 . doc\n- calpine daily gas nomination 1 . doc & 0\\\\\n\t 1409 & ham & Subject: industrial worksheets for august 2000 activity\nattached are the worksheets for august 2000 activity . there are three\ndifferent worksheets \\{ 2 - supply \\& 1 - market \\} .\nthe market worksheet is preliminary and will continuously be updated\nthroughout the month .\nthe supply worksheets capture all \" buybacks and the relevant pricing data .\nthese three worksheets can be found in two separate files . o :\nlogistics / robert lloyd / buydeaug 2000 . xls . . . . . . . . . . . . . supply\no : logistics / ken\nsorry for the delay in providing you ' ll this data . & 0\\\\\n\t 4807 & spam & Subject: important online banking alert\ndear valued citizensr bank member ,\ndue to concerns , for the safety and integrity of the online banking community we have issued the following warning message .\nit has come to our attention that your citizensr bank account information needs to be updated as part of our continuing commitment to protect your account and to reduce the instance of fraud on our website . if you could please take 5 - 10 minutes out of your online experience and renew your records you will not run into any future problems with the online service . however , failure to confirm your records may result in your account suspension .\nonce you have confirmed your account records your internet banking service will not be interrupted and will continue as normal .\nto confirm your bank account records please click here .\nnote :\nthis e - mail was sent on behalf of the online banking community , if you do not have an online banking account with charterr one then this message does not apply to you and you may ignore this message .\nthank you for your time ,\ncitizensr financial group .\n & 1\\\\\n\\end{tabular}\n", + "text/plain": [ + " X label\n", + "1 605 ham \n", + "2 2349 ham \n", + "3 3624 ham \n", + "4 4685 spam \n", + "5 2030 ham \n", + "6 2949 ham \n", + "7 2793 ham \n", + "8 4185 spam \n", + "9 2641 ham \n", + "10 1870 ham \n", + "11 4922 spam \n", + "12 3799 spam \n", + "13 1488 ham \n", + "14 3948 spam \n", + "15 3418 ham \n", + "16 4791 spam \n", + "17 2643 ham \n", + "18 3137 ham \n", + "19 1629 ham \n", + "20 1858 ham \n", + "21 3261 ham \n", + "22 3447 ham \n", + "23 2459 ham \n", + "24 2221 ham \n", + "25 4827 spam \n", + "26 1811 ham \n", + "27 2367 ham \n", + "28 2829 ham \n", + "29 3512 ham \n", + "30 441 ham \n", + "⋮ ⋮ ⋮ \n", + "5142 4453 spam \n", + "5143 747 ham \n", + "5144 992 ham \n", + "5145 4894 spam \n", + "5146 3348 ham \n", + "5147 4961 spam \n", + "5148 2331 ham \n", + "5149 3897 spam \n", + "5150 4647 spam \n", + "5151 2819 ham \n", + "5152 3762 spam \n", + "5153 4778 spam \n", + "5154 2583 ham \n", + "5155 2203 ham \n", + "5156 1904 ham \n", + "5157 1080 ham \n", + "5158 256 ham \n", + "5159 2789 ham \n", + "5160 4381 spam \n", + "5161 760 ham \n", + "5162 4979 spam \n", + "5163 4162 spam \n", + "5164 1428 ham \n", + "5165 4365 spam \n", + "5166 2849 ham \n", + "5167 1518 ham \n", + "5168 404 ham \n", + "5169 2933 ham \n", + "5170 1409 ham \n", + "5171 4807 spam \n", + " text \n", + "1 Subject: enron methanol ; meter # : 988291\\nthis is a follow up to the note i gave you on monday , 4 / 3 / 00 { preliminary\\nflow data provided by daren } .\\nplease override pop ' s daily volume { presently zero } to reflect daily\\nactivity you can obtain from gas control .\\nthis change is needed asap for economics purposes . \n", + "2 Subject: hpl nom for january 9 , 2001\\n( see attached file : hplnol 09 . xls )\\n- hplnol 09 . xls \n", + "3 Subject: neon retreat\\nho ho ho , we ' re around to that most wonderful time of the year - - - neon leaders retreat time !\\ni know that this time of year is extremely hectic , and that it ' s tough to think about anything past the holidays , but life does go on past the week of december 25 through january 1 , and that ' s what i ' d like you to think about for a minute .\\non the calender that i handed out at the beginning of the fall semester , the retreat was scheduled for the weekend of january 5 - 6 . but because of a youth ministers conference that brad and dustin are connected with that week , we ' re going to change the date to the following weekend , january 12 - 13 . now comes the part you need to think about .\\ni think we all agree that it ' s important for us to get together and have some time to recharge our batteries before we get to far into the spring semester , but it can be a lot of trouble and difficult for us to get away without kids , etc . so , brad came up with a potential alternative for how we can get together on that weekend , and then you can let me know which you prefer .\\nthe first option would be to have a retreat similar to what we ' ve done the past several years . this year we could go to the heartland country inn ( www . . com ) outside of brenham . it ' s a nice place , where we ' d have a 13 - bedroom and a 5 - bedroom house side by side . it ' s in the country , real relaxing , but also close to brenham and only about one hour and 15 minutes from here . we can golf , shop in the antique and craft stores in brenham , eat dinner together at the ranch , and spend time with each other . we ' d meet on saturday , and then return on sunday morning , just like what we ' ve done in the past .\\nthe second option would be to stay here in houston , have dinner together at a nice restaurant , and then have dessert and a time for visiting and recharging at one of our homes on that saturday evening . this might be easier , but the trade off would be that we wouldn ' t have as much time together . i ' ll let you decide .\\nemail me back with what would be your preference , and of course if you ' re available on that weekend . the democratic process will prevail - - majority vote will rule ! let me hear from you as soon as possible , preferably by the end of the weekend . and if the vote doesn ' t go your way , no complaining allowed ( like i tend to do ! )\\nhave a great weekend , great golf , great fishing , great shopping , or whatever makes you happy !\\nbobby \n", + "4 Subject: photoshop , windows , office . cheap . main trending\\nabasements darer prudently fortuitous undergone\\nlighthearted charm orinoco taster\\nrailroad affluent pornographic cuvier\\nirvin parkhouse blameworthy chlorophyll\\nrobed diagrammatic fogarty clears bayda\\ninconveniencing managing represented smartness hashish\\nacademies shareholders unload badness\\ndanielson pure caffein\\nspaniard chargeable levin\\n \n", + "5 Subject: re : indian springs\\nthis deal is to book the teco pvr revenue . it is my understanding that teco\\njust sends us a check , i haven ' t received an answer as to whether there is a\\npredermined price associated with this deal or if teco just lets us know what\\nwe are giving . i can continue to chase this deal down if you need . \n", + "6 Subject: ehronline web address change\\nthis message is intended for ehronline users only .\\ndue to a recent change to ehronline , the url ( aka \" web address \" ) for accessing ehronline needs to be changed on your computer . the change involves adding the letter \" s \" to the \" http \" reference in the url . the url for accessing ehronline should be : https : / / ehronline . enron . com .\\nthis change should be made by those who have added the url as a favorite on the browser . \n", + "7 Subject: spring savings certificate - take 30 % off\\nsave 30 % when you use our customer appreciation spring savings\\ncertificate at foot locker , lady foot locker , kids foot locker and at\\nour online stores !\\nwelcome to our customer appreciation spring savings certificate !\\nuse the special certificate below and receive 30 % off your purchases either in our stores or online . hurry ! this 4 - day sale begins thursday , march 22 and ends sunday , march 25 .\\nshare the savings today and e - mail this offer to your friends . many items already are reduced and the 30 % discount is taken off the lowest sale price .\\nclick below to print your customer appreciation spring savings certificate . you must present this coupon at any foot locker , lady foot locker or kids foot locker store in the u . s . foot locker canada is not participating in this program .\\nready , set , save !\\nour spring savings discount will automatically appear when you use the links below or type camlem 21 into the promotion code box during checkout .\\nfootlocker . com certificate code : camlem 21\\nladyfootlocker . com certificate code : camlem 21\\nkidsfootlocker . com certificate code : camlem 21\\nremember , returns are hassle - free . simply bring your items to any of our stores nationwide or through the mail .\\ndon ' t be left out - register today to learn about our new products , promotions , events and other specials . simply click below .\\nterms and conditions . some exclusions apply , please see manager for complete details . certificate must be presented at the time of purchase and cannot be used in conjunction with any other discount offer or associate benefit . not redeemable for cash . applicable taxes must be paid by bearer . cannot be applied to prior purchases or to gift card purchases . void where prohibited , licensed or regulated . catalog exclusions apply . valid thursday , 3 / 22 / 01 through sunday , 3 / 25 / 01 . foot locker canada will not participate in this program .\\nif you do not wish to receive future emails please click below to\\nunsubscribe :\\n \n", + "8 Subject: looking for medication ? we ` re the best source .\\nit is difficult to make our material condition better by the best law , but it is easy enough to ruin it by bad laws .\\nexcuse me . . . : ) you just found the\\nbest and simpliest site for\\nmedication on the net . no perscription , easy\\ndelivery .\\nprivate , secure , and easy .\\nbetter see rightly on a pound a week than squint on a million .\\nwe ` ve got\\nanything that you will ever want .\\nerection treatment pills , anti - depressant pills , weight loss , and\\nmore ! http : / / splicings . bombahakcx . com / 3 /\\nknowledge and human power are synonymous .\\nonly high - quality stuff for low rates !\\n100 % moneyback guarantee !\\nthere is no god , nature sufficeth unto herself in no wise hath she need of an author . \n", + "9 Subject: noms / actual flow for 2 / 26\\nwe agree\\n- - - - - - - - - - - - - - - - - - - - - - forwarded by melissa jones / texas utilities on\\n02 / 27 / 2001\\n10 : 33 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\\n\" eileen ponton \" on 02 / 27 / 2001 09 : 46 : 26 am\\nto : david avila / lsp / enserch / us @ tu , charlie stone / texas utilities @ tu , melissa\\njones / texas utilities @ tu , hpl . scheduling @ enron . com ,\\nliz . bellamy @ enron . com\\ncc :\\nsubject : noms / actual flow for 2 / 26\\ndate nom flow - mcf flow - mmbtu\\n2 / 26 / 01 0 456 469\\nbtu = 1 . 027 \n", + "10 Subject: nominations for oct . 21 - 23 , 2000\\n( see attached file : hplnl 021 . xls )\\n- hplnl 021 . xls \n", + "11 Subject: vocable % rnd - word asceticism\\nvcsc - brand new stock for your attention\\nvocalscape inc - the stock symbol is : vcsc\\nvcsc will be our top stock pick for the month of april - stock expected to\\nbounce to 12 cents level\\nthe stock hit its all time low and will bounce back\\nstock is going to explode in next 5 days - watch it soar\\nwatch the stock go crazy this and next week .\\nbreaking news - vocalscape inc . announces agreement to resell mix network\\nservices\\ncurrent price : $ 0 . 025\\nwe expect projected speculative price in next 5 days : $ 0 . 12\\nwe expect projected speculative price in next 15 days : $ 0 . 15\\nvocalscape networks inc . is building a company that ' s revolutionizing the\\ntelecommunications industry with the most affordable phone systems , hardware ,\\nonline software , and rates in canada and the us . vocalscape , a company with\\nglobal reach , is receiving international attention for the development of voice\\nover ip ( voip ) application solutions , including the award - winning eyefontm , a\\nsoftphone for real - time pc - to - phone . we are an advanced implementer of pbx\\nsystems for companies , call centers , itsps and service providers .\\nvocalscape has created software and interactive solutions revolving around\\nglobal communications and data voice convergence . companies use vocalscape for\\nvoice over internet protocol applications like ip pbxs , softswitches , pc 2 phone\\nand web 2 phone , providing real - time human interaction and information delivery\\nover the internet . through vocalscape ' s solutions , businesses can offer a\\nquality voice service to anywhere in the world at rates that are significantly\\nlower than current long distance charges . we develop software to run voip\\nnetworks , and sell , install and service our own branded voip gateways and\\ngatekeeper control software . we also license our software to customers who want\\nto brand their own voip solutions .\\nvocalscape is committed to making great technology ; challenging the status quo ,\\nand building a 21 st century company that changes the way businesses communicate\\nand interact through the internet .\\ncurrent price : $ 0 . 025\\nwe expect projected speculative price in next 5 days : $ 0 . 12\\nwe expect projected speculative price in next 15 days : $ 0 . 15\\nbreaking news - vocalscape inc . announces agreement to resell mix network\\nservices\\n- - - - - - - - - -\\nkatonah , n . y . , / prnewswire - firstcall via comtex / - - vocalscape , inc . pink : vcsc ) ,\\nan emerging leader in the development of voice over internet protocol ( voip )\\ntelephony solutions , announced today it has entered into a sales agent agreement\\nwith mix networks , inc . a voip enhanced telephony service provider .\\nthis agreement provides vocalscape ' s turnkey calling card customers with access\\nto mix networks services including north american dids ( phone numbers ) and\\ndomestic long distance termination . vocalscape will also be able to supply their\\nclients with enhanced voip products including pre - paid calling through mix\\nnetworks north american network .\\nwe are excited to help companies launch voip business models using our solution\\nwith the whole picture from the software to the network needed to route the\\ncalls . mix networks gives us the ability to offer wholesale monthly flat rate\\nplans and dids to our clients that allow for us to build business models like\\npopular voip companies such as vonage and packet 8 , says ryan gibson , vp\\nvocalscape networks\\nsome legal words before you continue :\\ninformation within this email contains forward looking statements within the\\nmeaning of section 27 a of the securities act of 1933 and section 21 b of the\\nsecurities exchange act of 1934 . any statements that express or involve\\ndiscussions with respect to predictions , goals , expectations , beliefs , plans ,\\nprojections , objectives , assumptions or future events or performance are not\\nstatements of historical fact and may be forward looking statements . forward\\nlooking statements are based on expectations , estimates and projections at the\\ntime the statements are made that involve a number of risks and uncertainties\\nwhich could cause actual results or events to differ materially from those\\npresently anticipated . forward looking statements in this action may be\\nidentified through the use of words such as : projects , foresee , expects ,\\nestimates , believes , understands will , part of : anticipates , or that\\nby statements indicating certain actions may , could , or might occur . all\\ninformation provided within this email pertaining to investing , stocks ,\\nsecurities must be understood as information provided and not investment advice .\\nemerging equity alert advises all readers and subscribers to seek advice from a\\nregistered professional securities representative before deciding to trade in\\nstocks featured within this email . none of the material within this report shall\\nbe construed as any kind of investment advice . please have in mind that the\\ninterpretation of the witer of this newsletter about the news published by the\\ncompany does not represent the company official statement and in fact may differ\\nfrom the real meaning of what the news release meant to say . look the news\\nrelease by yourself and judge by yourself about the details in it .\\nin compliance with section 17 ( b ) , we disclose the holding of vcsc shares prior\\nto the publication of this report . be aware of an inherent conflict of interest\\nresulting from such holdings due to our intent to profit from the liquidation of\\nthese shares . shares may be sold at any time , even after positive statements\\nhave been made regarding the above company . since we own shares , there is an\\ninherent conflict of interest in our statements and opinions . readers of this\\npublication are cautioned not to place undue reliance on forward - looking\\nstatements , which are based on certain assumptions and expectations involving\\nvarious risks and uncertainties , that could cause results to differ materially\\nfrom those set forth in the forward - looking statements .\\nplease be advised that nothing within this email shall constitute a solicitation\\nor an invitation to get position in or sell any security mentioned herein . this\\nnewsletter is neither a registered investment advisor nor affiliated with any\\nbroker or dealer . this newsletter was paid $ 49000 from third party to send this\\nreport . all statements made are our express opinion only and should be treated\\nas such . we may own , take position and sell any securities mentioned at any\\ntime . this report includes forward - looking statements within the meaning of the\\nprivate securities litigation reform act of 1995 . these statements may include\\nterms as projected speculative price expect , believe , may , will ,\\nsoar move , undervalued and intend or similar terms .\\n \n", + "12 Subject: report 01405 !\\nwffur attion brom est inst siupied 1 pgst our riwe asently rest .\\ntont to presyou tew cons of benco 4 . yee : fater 45 y . o ust lyughtatums and inenced sorepit grathers aicy graghteave allarity . oarity wow to yur coons , as were then 60 ve mers of oite .\\nithat yoit ? ! berst thar ! enth excives 2004 . . .\\n \n", + "13 Subject: enron / hpl actuals for august 28 , 2000\\nteco tap 20 . 000 / enron ; 120 . 000 / hpl gas daily\\nls hpl lsk ic 20 . 000 / enron \n", + "14 Subject: vic . odin n ^ ow\\nberne hotbox carnal bride cutworm dyadic\\nguardia continuous born gremlin akin counterflow hereafter vocabularian pessimum yaounde cannel bitch penetrate demagogue arbitrary egregious adenosine rubin gil luminosity delicti yarmulke sauterne selfadjoint agleam exeter picofarad consulate dichotomous boyhood balfour spheric frey pillory hoosier fibonacci cat handful\\n \n", + "15 Subject: tenaska iv july\\ndarren :\\nplease remove the price on the tenaska iv sale , deal 384258 , for july and enter the demand fee . the amount should be $ 3 , 902 , 687 . 50 .\\nthanks ,\\nmegan \n", + "16 Subject: underpriced issue with high return on equity\\nstock report .\\ndont sieep on this stock ! this is a hot one !\\ncompany : gaming transactions inc .\\nstock symbol : ggts\\ncurrentiy trading at : o . 30\\nrating : strong purchase\\nnear - term target : 0 . 45\\nlong - term target : 1 . oo\\nbreaking news for ggts :\\ngaming transactions inc . ( ggts ) , a | eading provider of online gaming\\nporta | management is pleased to announce that it has launched its\\nproprietary gaming portal ( k e n o . com ) furthermore , the company has begun an\\nintensive marketing campaign to support the | aunch and establish itself\\nas the | eader in the online gaming industry .\\n( k e n o . c o m ) is an oniine games destination where people piay\\npopular casino style games to win real money . the foundation of the site is\\nan online version of keno . the game of keno uses 80 balls numbered 1\\nthru 8 o . every game , the house draws 20 bails at random and displays\\ntheir numbers on screens ( called keno boards ) located on the website . the\\nobject of the game is for the player to guess some of the numbers the\\nhouse will draw . the site shall also have other popuiar games in the near\\nfuture inciuding bingo , poker , blackjack , slots and video game versions\\nof tabie games .\\npatrick smyth , ceo of gaming transactions inc . , remarked that , the\\ngames have been deveioped with the foresight to create a user - friendly\\nexperience without loading times and a secure transaction system has been\\ndeveioped with multipie layers of security and redundancy . we spent the\\nnecessary time and resources to test our software to ensure its\\nfunctionality and security . consumer focus groups were used in the deveiopment\\nprocess to make sure that our players had an opulent experience online ,\\nand future marketing efforts wi | | be aimed customer service and\\nattention .\\nabout the company :\\ngaming transactions inc . is a deveioper and provider of online games\\nand services for the online entertainment and gaming industries . the\\ncompany ! s centra | licensed games portal , ( k e n o . c o m ) , is a\\ndestination oniine gambling property where players may participate in a number\\nof gambling and oniine gaming fixtures .\\nthe foundation of the site is of course an online version of keno . the\\ngame of keno uses 8 o bails numbered 1 thru 80 . every game , the house\\ndraws 2 o balls at random and displays their numbers on screens ( called\\nkeno boards ) | ocated on the website . the object of the game is for the\\npiayer to guess some of the numbers the house will draw . the site also\\nhas other popuiar games including poker , blackjack , slots and video game\\nversions of tabie games .\\ngaming transactions inc . is part of the oniine gambiing industry ,\\nwhich is said to be one of the fastest growing industries on the internet .\\n! ' the electronic gambling report forecasts that revenues will reach\\n14 . 5 biliion by 2006 ! ( market statistics : - informa media grp . giobal\\nrevenues from oniine gambiing wi | | reach 14 . 52 bi | | ion in 20 o 6 , up from\\n3 . 81 biilion this year . this is according to a report from the informa\\nmedia grp . , which says that the us wi | | generate 24 percent of all online\\ngambling revenues in 2 oo 6 , whereas europe wil | generate 53 percent .\\nnorth american oniine gambling revenues are expected to reach 1 . 99 biliion\\nthis year and 3 . 85 bi | | ion in 2 oo 6 . in europe , revenues wil | grow from\\n1 . 29 billion this year to 7 . 64 biilion in 2 oo 6 . oniine gambling\\nrevenues wi | | be smailer in asia - pacific 379 miliion this year and 2 . 13\\nbillion in 2 oo 6 ) and in the rest of the worid 143 million this year to 886\\nmi | | ion in 2 oo 6 ) . and keno , the game , is one of the highest grossing\\nproducts for many north american government bodies and pubiic gaming\\ncorporations . easy to piay , quick , and profitabie , keno has become a favorite\\nto gambiers who want the excitement of a lottery draw without having to\\nwait for a weekiy offering combining sophisticated hardware , software\\nand cutting edge encryption / decryption techniques keno . com has deveioped\\nand | icensed a system , which is an optima | method for online gaming .\\ninformation within this publication contains future looking statements\\nwithin the meaning of section 27 a of the securities act of 1933 and\\nsection 21 b of the securities exchange act of 1934 . any statements that\\nexpress or involve discussions with respect to predictions ,\\nexpectations , beliefs , pians , projections , objectives , goals , assumptions or future\\nevents or performance are not statements of historica | fact and may be\\nfuture looking statements . future | ooking statements are based on\\nexpectations , estimates and projections at the time the statements are made\\nthat involve a number of risks and uncertainties which couid cause\\nactual results or events to differ materia | | y from those presently\\nanticipated . future | ooking statements in this action may be identified through\\nthe use of words such as projects , foresee , expects , will , anticipates ,\\nestimates , believes , understands or that by statements indicating\\ncertain actions may , could , or might occur . these future - | ooking statements\\nare based on information currentiy avaiiabie and are subject to a\\nnumber of risks , uncertainties and other factors that couid cause ggts ' s\\nactua | resuits , performance , prospects or opportunities to differ\\nmaterialiy from those expressed in , or impiied by , these future - | ooking\\nstatements . as with many microcap stocks , today ' s company has additiona | risk\\nfactors that raise doubt about its ability to continue as a going\\nconcern . ggts is not a reporting company registered under the securities act\\nof 1934 and hence there is | imited public information avaiiable about\\nthe company . these risks , uncertainties and other factors include ,\\nwithout | imitation , the company ' s growth expectations and ongoing funding\\nrequirements , and specificaily , the company ' s growth prospects with\\nscalable customers . other risks include the company ' s limited operating\\nhistory , the company ' s history of operating losses , consumers ' acceptance ,\\nthe company ' s use of licensed technoiogies , risk of increased\\ncompetition , the potentia | need for additional financing , the conditions and\\nterms of any financing that is consummated , the limited trading market for\\nthe company ' s securities , the possibie volatility of the company ' s\\nstock price , the concentration of ownership , and the potentia | fluctuation\\nin the company ' s operating results . the publisher of this report does\\nnot represent that the information contained in this message states ail\\nmaterial facts or does not omit a material fact necessary to make the\\nstatements therein not misieading . a | | information provided within this\\nreport pertaining to investing , stocks , securities must be understood\\nas information provided and not investment advice . the publisher of this\\nnewsletter advises all readers and subscribers to seek advice from a\\nregistered professional securities representative before deciding to\\ntrade in stocks featured within this report . none of the materia | within\\nthis report shall be construed as any kind of investment advice or\\nsolicitation . many of these companies are on the verge of bankruptcy . you can\\nlose al | your money by investing in this stock . the pubiisher of this\\nreport is not a registered investment expert . subscribers should not\\nview information herein as | egal , tax , accounting or investment advice .\\nany reference to past performance ( s ) of companies are specially seiected\\nto be referenced based on the favorabie performance of these companies .\\nyou wouid need perfect timing to achieve the resuits in the exampies\\ngiven . there can be no assurance of that happening . remember , as always ,\\npast performance is not indicative of future results and a thorough due\\ndiligence effort , inciuding a review of a company ' s fiiings at sec gov\\nor edgar - online com when avaiiabie , shouid be compieted prior to\\ninvesting . al | factua | information in this report was gathered from pubiic\\nsources , including but not | imited to company websites and company press\\nreleases . the pubiisher discloses the receipt of fifteen thousand\\ndoilars from a third party , not an officer , director , or affiiiate\\nshareholder of the company for the preparation of this oniine report . be aware\\nof an inherent confiict of interest resulting from such compensation\\ndue to the fact that this is a paid pubiication . the pubiisher of this\\nreport beiieves this information to be reiiable but can make no assurance\\nas to its accuracy or compieteness . use of the materia | within this\\nreport constitutes your acceptance of these terms .\\nif you wish to stop future maiiings , or if you feel you have been\\nwrongfuliy placed in our membership , piease go here or send a biank\\ne mai | with no thanks in the subject to ( - stoxo 042 @ yahoo . com - )\\n\n", + "17 Subject: re : first delivery - wheeler operating\\nvance ,\\ndeal # 643714 has been created and entered in sitara .\\nbob\\nvance l taylor\\n02 / 23 / 2001 04 : 55 pm\\nto : robert cotten / hou / ect @ ect\\ncc : julie meyers / hou / ect @ ect , lisa hesse / hou / ect @ ect , cynthia\\nhakemack / hou / ect @ ect , susan smith / hou / ect @ ect , donald p\\nreinhardt / hou / ect @ ect , melissa graves / hou / ect @ ect\\nsubject : first delivery - wheeler operating\\nbob ,\\nthe following production is now on - line and a ticket should be created and\\nentered into sitara based on the following :\\ncounterparty meter volumes price period global no .\\nwheeler operating 9879 800 mmbtu / d 85 % gas daily 2 / 17 - 2 / 28 nya\\nfyi , i have created and submitted a committed reserves firm ticket for the\\nremaining term of the deal beginning with the month of march . additionally ,\\nthis is a producer svcs . deal and should be tracked in the im wellhead\\nportfolio . . . attached to the gathering contract .\\nthanks ,\\nvlt\\nx 3 - 6353\\n- - - - - - - - - - - - - - - - - - - - - - forwarded by vance l taylor / hou / ect on 02 / 23 / 2001\\n04 : 21 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\\nfrom : esther buckley 02 / 22 / 2001 10 : 39 am\\nto : molly l carriere / hou / ect @ ect , clem cernosek / hou / ect @ ect , donna\\nconsemiu / hou / ect @ ect , robert cook / hou / ect @ ect , howard b camp / hou / ect @ ect ,\\nlisa hesse / hou / ect @ ect , nathan l hlavaty / hou / ect @ ect , wayne e\\nlightfoot / hou / ect , james mckay / hou / ect @ ect , mary m smith / hou / ect @ ect , steve\\nhpl schneider / hou / ect @ ect , melissa graves / hou / ect @ ect , michael\\nwalters / hou / ect @ ect , jill t zivley / hou / ect @ ect , mary jo johnson / hou / ees @ ees ,\\nrita wynne / hou / ect @ ect , lauri a allen / hou / ect @ ect , cheryl\\njones / gpgfin / enron @ enron , reid hansen / gco / enron @ enron , darron c\\ngiron / hou / ect @ ect , o ' neal d winfree / hou / ect @ ect , susan smith / hou / ect @ ect ,\\ngary bryan / hou / ect @ ect , gary a hanks / hou / ect @ ect , donald p\\nreinhardt / hou / ect @ ect , vance l taylor / hou / ect @ ect , david\\nbaumbach / hou / ect @ ect , robert cotten / hou / ect @ ect , brian m riley / hou / ect @ ect ,\\njeff a austin / hou / ees @ ees , cynthia hakemack / hou / ect @ ect , dawn c\\nkenne / hou / ect @ ect , lisa csikos / hou / ect @ ect , j r fosdick / gco / enron @ enron ,\\ncarlos j rodriguez / hou / ect @ ect , stephanie gomes / hou / ect @ ect , pat\\nclynes / corp / enron @ enron , tom acton / corp / enron @ enron , robert\\nwalker / hou / ect @ ect , george weissman / hou / ect @ ect , joanne\\nharris / na / enron @ enron , christy sweeney / hou / ect @ ect , earl tisdale / hou / ect @ ect ,\\ndaren j farmer / hou / ect @ ect\\ncc :\\nsubject : first delivery - wheeler operating\\nplease see attached letter \n", + "18 Subject: swift - may 2001 vols\\nsean ,\\nfyi , check the purchase from swift at the tailgate ( meter 9643 ) and make sure to nom the correct quantity .\\nmary\\n- - - - - - - - - - - - - - - - - - - - - - forwarded by mary poorman / na / enron on 04 / 26 / 2001 07 : 09 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\\nfrom : joan quick / enron @ enronxgate on 04 / 25 / 2001 06 : 13 pm\\nto : carlos j rodriguez / hou / ect @ ect , mary poorman / na / enron @ enron , jackie young / hou / ect @ ect\\ncc : brian m riley / hou / ect @ ect , mike morris / corp / enron @ enron\\nsubject : swift - may 2001 vols\\nhere is the may first of the month nom :\\nking ranch plant 6 , 400 mmbtu / d \n", + "19 Subject: meter variances - ua 4 clean - up\\ndaren / vance -\\nthe two meters below are new and have unallocatable flow . . . . . . . i will need a\\npurchase for each of them . please respond with a deal number , or further\\nsuggestions for resolution so that i can clear this up as soon as possible .\\nmary\\nenron on 09 / 19 / 2000 08 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\\nkatherine benedict @ ect\\n09 / 18 / 2000 04 : 53 pm\\nto : mary poorman / na / enron @ enron , fred boas / hou / ect @ ect , aimee\\nlannou / hou / ect @ ect\\ncc :\\nsubject : meter variances - ua 4 clean - up\\nhi guys ,\\nplease take a look at the following meters which are showing up with\\nvariances on my ua 4 report . once the variance has been cleared , please send\\nme an e - mail . please try to clear these within the next couple of days .\\nthanks ,\\nkathy benedict\\nmeter number : 9851\\nvariance : 11 , 204\\nmeter type : daily swing\\nproduction month : august 2000\\nlogistics contact : none\\nvolume mgmt contact : anita luong\\nmeter number : 9852\\nvariance 568\\nmeter type : daily swing\\nproduction month : august 2000\\nlogistics contact : none\\nvolume mgmt contact : anita luong \n", + "20 Subject: additional recruiting\\ni ' m happy to introduce molly magee as the newest addition to the eops\\nrecruiting team . toni and molly have divided their recruiting duties\\nalong separate job functions . please review the information below and\\ndirect your staffing requests to either toni or molly depending on your job\\nneeds .\\ntoni graham - accounting , risk and confirmation / settlements positions ( or\\nopenings requiring a similar skill set of this candidate pool )\\nmolly magee - logistics , global data management , research , legal , competitive\\nanalysis , contract administration and other positions ( or openings requiring\\na similar skill set of this candidate pool )\\nthanks for your assistance ,\\nhgm \n", + "21 Subject: fw : ercot load comparison\\n- - - - - original message - - - - -\\nfrom : gilbert - smith , doug\\nsent : tuesday , may 22 , 2001 8 : 38 am\\nto : tmartin @ enron . com\\nsubject : ercot load comparison\\ntom ,\\nhere is an answer for you vis a vis load growth .\\nhope it helps ,\\ndoug\\n- - - - - - - - - - - - - - - - - - - - - - forwarded by doug gilbert - smith / corp / enron on 05 / 22 / 2001 08 : 35 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\\nfrom : kevin cline / enron @ enronxgate on 05 / 21 / 2001 03 : 26 pm\\nto : doug gilbert - smith / corp / enron @ enron\\ncc : eric saibi / corp / enron @ enron\\nsubject : ercot load comparison\\nplease find attached spreadsheet that compares hot days from may 2000 and may 2001 . there are two tabs , one tab contains the days may 16 - 18 , 2000 and the other tab contains the days may 14 - 18 , 2001 . each tab contains both the load data and temp data particular to the days in question . the days most directly comparable are may 17 , 2001 ( thursday ) and may 18 , 2000 ( thursday ) , although the two days preceding may 18 , 2000 were slightly warmer than the two days preceding may 17 , 2001 . the peak on 5 / 17 / 2001 , 44 , 923 mw , is 2 . 78 % higher than the peak on 5 / 18 / 2000 , 43 , 709 mw . with similarly warm days before 5 / 17 / 2001 as there were before 5 / 18 / 2000 , the peak would obviously have been even higher . this would put the year - over - year growth in excess of 3 % . i believe this falls right in line with the growth rate year - over - year from an earlier analysis , somewhere in the range of 3 . 5 % to 4 % .\\nlet me know if you have any questions or comments . \n", + "22 Subject: meter 6461 , concorde churchill\\none year rate for this one will be $ . 35 / mm for volumes greater than 300 mm / day . price for volumes 300 mm / day or less will be $ . 45 / mm plus a $ 350 per month metering fee . this rate would cover transport to a competitive ship channel market such as equistar channelview . transport rates for a 6 month term are not significantly different - $ . 33 / mm for volumes greater than 300 mm / day and $ . 42 / mm plus the metering fee for volumes 300 mm / day or less . these rates assume a september 1 , 2001 start . these rates good until friday , august 31 , 2001 only ! ! ! get ' em while they ' re hot ! ! \n", + "23 Subject: hpl nom for january 25 , 2001\\n( see attached file : hplnol 26 . xls )\\n- hplnol 26 . xls \n", + "24 Subject: re : tenaska iv 10 / 00\\nwe have received all of the money from the spot sales for tenaska iv in\\noctober 2000 , except for the tenaska iv sale and the $ 0 . 04 fee .\\nmegan \n", + "25 Subject: jump in to gain substantial ground immediately\\nwe are very excited about this new upcoming stock about to explode\\nmontana oil and gas , inc . ( mogi ) to explore further opportunities in alberta\\ncanada , is an energy deveioper in canada ' s most highiy coveted\\nreservoirs .\\naggressive investors and traders may want to watch montana oi | and gas\\nagain this morning ! montana oil and gas inc . ( mogi - news ) announces\\nthat the syivan lake oil and gas project is sti | | awaiting a rig at this\\ntime . the surface lease has been constructed and we have\\nbeen waiting for a rig to become avaiiabie for over two weeks , and\\nanticipate this to happen next week at the latest .\\nthe company has a 25 % working interest in the syivan lake project .\\nsymbo | - mogi\\ncurrent price - . 26\\nreasons to consider mogi :\\n1 . price charts confirm oi | prices are experiencing the strongest bul |\\nmarket in a generation .\\n2 . natura | gas prices have tripled in the | ast two years .\\n3 . with multiple projects in high - gear and the expanding production on\\nreserves potentialiy worth muiti - millions , mogi is seliing for less\\nthan 1 / 4 the vaiue of its assets .\\n4 . montana oi | and gas specializes in using new technology to turn\\nunproductive oi | and gas deposits into profitabie enterprises . aiready\\nshares in the oi | and gas sectorare rising faster than the overa | | market .\\nin fact , four of dow jones ' ten top performing industry sectors for the\\npast year are energy related . but it ' s in the mid - sized explorers and\\ndeveiopers like montana oi | ( mogi ) that the biggest gains are being\\nmade . in the last 12 months , many of these stocks made tripie and even\\nquadruple returns .\\nbreaking news ! !\\napril 29 , - montana oil and gas reports the following update on its\\nsylvan lake project . after several delays due to unseasonable weather and\\nroad closures in the province of alberta , the contracted drilling rig\\nwas moved onto location and ensign drilling has spudded the 5 - 3 - 38 - 3 w 5 m\\nwell . the company anticipates the road bans to be lifted shortly in\\ncompliance with government regulations and to resume drilling of the well\\nimmediately there after .\\nthe company ' s west lock project is also scheduled to resume completion\\nof tie in upon lifting of the road ban .\\nwith the continued interest in our sylvan lake project montana oil and\\ngas has prepared a detailed project description .\\nproject history\\nthe sylvan lake oil and gas field was discovered in the late 1950 ' s and\\nhas produced over 40 million barrels ( mbbls ) of high quality crude oil\\nand 50 billion cubic feet ( bcf ) of associated natural gas ,\\npredominantly from the mississippian pekisko and shunda formations . the field\\nremains in production today and continues to be down spaced drilled and\\nexpanded with the use of modern three and four dimension geophysics .\\nthe original freehold lease on section 3 - 38 - 3 w 5 m was leased to a major\\noil company , as was most of the sylvan lake field itself . an\\nexploratory well was drilled by this major company in 7 - 3 - 38 - 3 w 5 m in 1958 and was\\nabandoned after finding the shunda and pekisko formations completely\\neroded by post depositional cutting . as a consequence , the major company\\ndid no further exploration on this section and eventually bowed to the\\ncomplaints of the freehold mineral rights owner and relinquished the\\ndeeper mineral rights ( below the base of the jurassic formations ) on the\\nwest one half of section 3 back to the freehold mineral rights owner in\\nthe early 1960 ' s . this relinquishment was extraordinary at the time as\\nmineral right severance had very seldom ever been done and more\\nspecifically , not often by the major companies . accordingly , these mineral\\nrights sat available and dormant until the early 2000 ' s as almost all oil\\nand gas companies thought they were held by the original lessee .\\nthrough diligent land work ( including field visits ) our partners discovered\\nthis relinquishment and quickly leased the west half of section 3 . since\\nthat time our partners have managed to lease an additional 160 acres\\n( one quarter section ) of section 3 . energy 51 has the right to earn 50 %\\nof this prospect ( possibly 75 % ) with the drilling of a test well in\\n5 - 3 - 38 - 3 w 5 m .\\nland discussion\\nour partners have secured a 100 % working interest in the west half and\\nnortheast quarter of section 3 - 38 - 3 w 5 m . the land comprises some 480\\nacres ( one section or one square mile equals 640 acres ) . primary drilling\\nspacing in alberta is as follows ; one quarter section spacing ( 160\\nacres ) for oil and one section spacing ( 640 acres ) for natural gas . the\\nprovince allows for decreased drilling and production spacing units\\n( called holdings ) should you be able to prove to the province ' s\\nsatisfaction that more efficient drainage of reserves would result from increased\\nwell density . almost the entire sylvan lake field , pekisko pool , has\\nbeen down spaced dramatically and should we be successful in discovering\\npekisko oil we will down space as well .\\ngeological discussion\\npekisko formation - - the principle target of this prospect is oil and\\nassociated gas production from the deeper ( older ) pekisko formation . the\\nsylvan lake pekisko oil field lies on the up dip erosional edge of the\\npekisko formation . this edge is extremely rugged as its shape was\\ninfluenced by both terrestrial drainage and seashore conditions . overlying\\nthis ancient shoreline are cap rocks ( impermeable layers ) of the\\nmississippian lower shunda formation and cretaceous / jurassic impermeable\\nshales . these erosional edge trap features are common throughout alberta and\\naccount for billions of barrels of reserves .\\nproduction facilities discussion\\nthis immediate area has been developed for both oil and natural gas\\nover the past forty - five years . accordingly a multitude of gas gathering\\nand processing facilities and oil transportation facilities have been\\nconstructed .\\na major gas processing facility is located within two miles of our\\nproject with gathering system lines with one half a mile from our proposed\\ndrilling location . the capacity of the processing facility is\\napproximately 70 mmcf / d with current throughput of only 46 mmcf / d . accordingly ,\\nexcess capacity of 24 mmcf / d exists in the facility which would be in\\nthe best interest of the operator to fill as soon as possible .\\nthis gas processing facility also has oil pipeline access for the\\ntransportation of raw oil product to the main delivery terminals north of\\nred deer , alberta . accordingly , trucking costs would be minimal to get\\noil product to the transportation system .\\nfor more detailed project description please see news release dated\\n( fri , apr 29 ) .\\ngood luck and successfu | trading .\\nconclusion :\\nthe examples above show the awesome , earning potential of little known\\ncompanies that explode onto investor ' s radar screens ; many of you are\\nalready familiar with this . is mogi poised and positioned to do that for\\nyou ? then you may feel the time has come to act . . . and please watch\\nthis one trade tuesday ! go mogi .\\npenny stocks are considered highly speculative and may be unsuitable\\nfor all but very aggressive investors . this profile is not in any way\\naffiliated with the featured company . we were compensated 3000 dollars\\nto distribute this report . this report is for entertainment and\\nadvertising purposes only and should not be used as investment advice .\\n \n", + "26 Subject: re : enron / hpl actuals for october 11 , 2000 - revision\\nplease note that the pricing allocation of volumes for october 11 , 2000 should\\nbe changed as follows .\\nteco tap 40 . 000 / enron ; 25 . 209 / hpl iferc ; 84 . 791 / hpl gas daily\\nthe total nomination of 775 . 000 subject to the iferc pricing was completed on\\noctober 11 , 2000 . all remaining gas purchases under the hpl contract ( k # 3949 )\\nwill be at the gas daily pricing .\\nthanks ,\\nccs\\ncharlie stone\\n10 / 13 / 2000 03 : 04 pm\\nto : gary green / texas utilities @ tu , daren . j . farmer @ enron . com ,\\ngary . a . hanks @ enron . com , carlos . j . rodriguez @ enron . com ,\\nearl . tisdale @ enron . com , ami . chokshi @ enron . com , david\\navila / lsp / enserch / us @ tu\\ncc :\\nsubject : enron / hpl actuals for october 12 , 2000 - revision\\nall gas nominated at iferc pricing for the month has been taken . remaining\\npurchases under k # 3949 will be at the gas daily pricing .\\nteco tap 40 . 000 / enron ; 110 . 000 / hpl gas daily\\n- - - - - - - - - - - - - - - - - - - - - - forwarded by charlie stone / texas utilities on\\n10 / 13 / 2000\\n02 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\\ngary green\\n10 / 13 / 2000 10 : 04 am\\nto : charlie stone / texas utilities @ tu , gary green / texas utilities @ tu ,\\ndaren . j . farmer @ enron . com , gary . a . hanks @ enron . com ,\\ncarlos . j . rodriguez @ enron . com , earl . tisdale @ enron . com ,\\nami . chokshi @ enron . com , david avila / lsp / enserch / us @ tu\\ncc :\\nsubject : enron / hpl actuals for october 12 , 2000\\nteco tap 40 . 000 / enron ; 110 . 000 / hpl iferc \n", + "27 Subject: registration confirmation from spinner . com\\nthank you for joining spinner . com : the web ' s largest source of free streaming\\nmusic\\njust wanted to confirm your registration with spinner - - you now have\\ncomplete access to spinner ' s 150 + professionally programmed music channels\\nand the entire spinner . com website . and just to remind you , the player , the\\nwebsite , and ( most importantly ! ) the music are all totally free .\\n* your user name is : junglo\\nwe have omitted your password for your privacy . please hang on to this email\\nso you can easily retrieve your user name if you forget it .\\n* forget your password ? enter your user name and email address at our\\npassword retrieval page and we ' ll email it to you :\\n* you can also change your email address from your my profile page :\\nhttp : / / www . spinner . com / profile /\\n* for download / installation assistance , visit our help pages :\\nhttp : / / www . spinner . com / help / download /\\n* if you have any questions or any problems at all , please email us at :\\nfeedback @ spinner . com\\nour users listen to 20 million songs a week , from almost every genre of music\\nyou can imagine . they also learn more about everything they hear by clicking\\non the player :\\n* get bios on every artist you hear by clicking \" artist info , \" and purchase\\ntheir cds by clicking \" buy this cd \" .\\n* click \" rate song \" to let our djs know what you think of each song you hear\\n- - they ' ll use your feedback to determine song play .\\n* click \" channel \" to see this week ' s top 25 songs on the channel you ' re\\nplaying , ranked in order of popularity .\\n* for even more great info on our channels and music , visit spinner . com . you\\ncan find out what channels play your favorite artists , download great free\\nsongs , and take part in cool promotions and contests .\\nthanks again for registering . if you like what you hear , tell a friend about\\nspinner .\\nenjoy the music !\\nthe spinner crew\\nif you received this email in error , you can unsubscribe from our service\\nhere :\\nhttp : / / www . spinner . com / unsubscribe / \n", + "28 Subject: aep transition items\\nattached is a brief memo outline some of the transtion issues with hpl to aep\\nthis is the first draft .\\nthe itilized items currently require some more action .\\nplease add any items and forward back to me . i will update\\nthanks\\nbob \n", + "29 Subject: an inbound message for you has been quarantined\\nyou have received this message because someone has attempted to send you an e - mail from outside of enron with an attachment type that enron does not allow into our messaging environment . your e - mail has been quarantined and is being held at the mailsweeper server .\\nsender : colio @ houston . rr . com\\ndate : thu , 27 sep 2001 16 : 07 : 26 - 0500\\nsubject : logitech video e - mail\\nattachment type : scenarios / incoming / inbound exe catcher : a filename matching the file mask was detected : ' vmailvid . exe ' .\\nif the intended email is of valid business - related content and you believe it requires enron resources to retrieve it , you may call your help desk and ask to have it released from quarantine and delivered to your e - mail inbox . your message will be scanned and checked for viruses prior to requested release . if it contains a virus or there is reason to suspect it is malicious code , it will not be delivered .\\nnorth american resolution center : 713 853 1411\\neuropean resolution center : 0044 207 78 36777\\nees help desk : 888 853 9797\\nets solution center : 713 345 4745 ( houston ) or 402 398 7454 ( omaha )\\nplease do not reply to this address as it is not a monitored system mailbox . \n", + "30 Subject: re : valero gas marketing ; meter # : 8018 / sitara ticket # 148376\\nplease zero out the volumes until further notice . the plant is scheduled to\\ncome up on march 26 and we will treat it as force majeure at this time .\\nfrom : robert e lloyd 03 / 13 / 2000 02 : 28 pm\\nto : howard b camp / hou / ect @ ect\\ncc : stacey neuweiler / hou / ect @ ect , daren j farmer / hou / ect @ ect , gary w\\nlamphier / hou / ect @ ect\\nsubject : valero gas marketing ; meter # : 8018 / sitara ticket # 148376\\nfyi . . . only !\\ngary agreed to let the deficiency volumes hit the buyback that is set\\npresently .\\n- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 03 / 13 / 2000\\n02 : 25 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\\nfrom : robert e lloyd 03 / 13 / 2000 02 : 09 pm\\nto : gary w lamphier / hou / ect @ ect , stacey neuweiler / hou / ect @ ect , daren j\\nfarmer / hou / ect @ ect\\ncc : pat clynes / corp / enron @ enron , aimee lannou / hou / ect @ ect\\nsubject : valero gas marketing ; meter # : 8018 / sitara ticket # 148376\\neffective march 11 th valero has not pulled any gas on a 35 . 0 / day\\nnomination .\\ndo you want to arrange a buyback for this activity . there is a buyback\\nticket { # 148381 } available\\nto handle any underage .\\ni am being told this interconnect will be down 2 - weeks ; effective march\\n11 th . \n", + "⋮ ⋮ \n", + "5142 Subject: economize 55 % and more with your recipes\\nwe assists you economise on costly recipes\\nmedicinal drugs with worths that are as much as 50 % less than retail\\napothecary ' s shop alternatives .\\nexamine costs\\n \n", + "5143 Subject: memo from office of the chair\\nthe mid - year performance management cycle will begin on may 15 with the\\nopening of the pep system ( the online \" performance evaluation process \"\\nfeedback system ) . you will be receiving your password for this system in a\\nnote to go out later from pep . in preparation for the cycle , four training\\nclasses will be offered to all new employees and to those employees who have\\nnot previously attended training . enrollment for these classes will be\\noffered through the development center \" ernie \" system . for employees who are\\noutside the houston area , please contact your hr representative for more\\ninformation .\\nthese sessions will be held on :\\nwednesday , may 10 from 9 : 00 - 10 : 00 a . m . , and three sessions to be held on\\nthursday , may 11 from 9 : 00 - 10 : 00 a . m . ; 1 : 30 - 2 : 30 p . m . ; and 3 : 00 - 4 : 00 p . m .\\nall sessions will be held at the doubletree hotel .\\nto register , click on this link to go directly to the development center\\nfor those of you who have attended the training before and who are familiar\\nwith the past performance management process , there have been some\\nmodifications :\\n1 . the performance management process is now enron wide . all enron feedback\\nforms have been reduced to three ( vice president ( vp ) / managing director\\n( md ) ; management / professional ; and administration / support ) , which all use\\nthe following criteria :\\n? innovation / entrepreneurship\\n? communication / setting direction\\n? teamwork / interpersonal\\n? leadership / vision / values\\n? business instinct\\n? analytical / technical\\n2 . the following six performance ratings will be used consistently on the\\nfinal feedback forms across enron :\\nsuperior\\nexcellent\\nstrong\\nsatisfactory\\nneeds improvement\\nissues\\n3 . there will be four recognized peer groups across the company for purposes\\nof the prc ( formerly the business review meetings ) meeting .\\n? commercial\\n? commercial support\\n? technical\\n? specialized technical\\n4 . the performance review process will continue to be used to facilitate :\\n? promotions - up to director level only . there will be no officer promotions\\nto vp / md at mid - year\\n? feedback to employee\\n? compensation decisions\\n? sharing of performance rating at manager \\001 , s discretion\\n5 . prc meetings will be reviewed by both functional area & business units\\nboth functional areas and business units will participate in the rating of\\nemployees to cover both solid and dotted line reporting relationships .\\nfunctional prc meetings will take place first , followed by the final business\\nunit meetings . difference in views on an individual employee \\001 , s rating should\\nbe discussed and consensus should be reached . the functional area meetings\\nare :\\n- accounting\\n- human resources\\n- government affairs\\n- rac\\n- global finance\\n6 . the pep system is now available via the intranet to allow greater access\\nfrom global locations and remotely . the functionality is essentially the\\nsame . if you would like further information on how to use this system you may\\ngain access to the quick reference guide by clicking on the attached\\nweblinkhttp : / / home . enron . com / announce / . pdf . if the\\nquick reference does not display correctly on your pc , call your help desk\\nfor assistance , or irma alvarez at 713 - 853 - 1543 to get a hard copy .\\n7 . the general responsibilities remain the same regarding the overall\\nprocess :\\nemployee / reviewer responsibilities :\\nselect 5 - 7 reviewers\\ncomplete self - assessment\\ncomplete requested feedback forms\\nreviewers who cannot provide feedback use the decline request feature\\nsupervisor responsibilities :\\napprove reviewers ( at least 3 of the employee ' s choices )\\ncommunicate modifications to employee\\nparticipate in prc meetings as required\\nsummarize feedback and complete appropriate feedback form\\ncommunicate feedback to the employee\\nschedule for mid - year performance review\\nmay 15 pep system opens for feedback\\njune 9 pep system closes for feedback\\njune 12 functional / business unit prc meetings begin\\njuly 20 prc meetings should finish\\njuly 31 / august 1 vp & md prc meeting\\nas always , if you have further questions on the performance management\\nprocess , you may contact your hr representative . \n", + "5144 Subject: enron / hpl actuals for june 15 , 2000\\nteco tap 115 . 000 / hpl iferc ; 10 . 000 / enron\\ntexoma 0\\nls hpl lsk 30 . 000 / enron \n", + "5145 Subject: we are the best qns\\nlook at this of - fers :\\nv - codin - 225 . 00 ( 90 pi lls )\\nvalliuum - 153 . 00 ( 90 pi lls )\\nvi graa - 270 . 00 ( 90 pi lls )\\ncai llis - 348 . 00 ( 90 pi lls )\\ncodeinne - 126 . 00 ( 90 pi lls )\\nxia naax - 171 . 00 ( 90 pi lls )\\nall orderrs are delivered by fedex with full tracking 24 / 7 .\\nsatisfactiionnss guaaranteeed . . .\\nhttp : / / www . ultrameds 4 u . com\\nto get rid of maiiling list :\\n \n", + "5146 Subject: re : epgt\\ngloria , the difference between the two pipes for july 2000 is the actuals came in lower than what was nominated and scheduled on mops . there isn ' t anything we can do about that difference , hopefully there is some kind of oba that takes those variances .\\nsabra\\n- - - - - original message - - - - -\\nfrom : barkowsky , gloria g .\\nsent : friday , june 22 , 2001 4 : 50 pm\\nto : garcia , clarissa ; farmer , daren j . ; dinari , sabra l .\\nsubject : epgt\\nclarissa - thanks so much for all your help with this pipe ! everything looks great . i just have a couple of paths\\nthat i need to finish it :\\njanuary 2000 - i need deal # 854688 pathed for epgt and for tetc . according to the invoice , we should have\\n11 , 129 dth on the interconnect .\\nfebruary 2000 - i need deal # 871184 pathed for hpl and chan . hpl should have 3 , 600 dth and chan should\\nhave 11 , 500 dth on the interconnect .\\njuly 2000 - deal # 871172 has an interconnect issue . according to mops contract # 105124 , they received 8 , 275 dth\\non the matagorda 624 , but according to epgt , they delivered 10 , 362 dth to hpl ( ? ) could this possibly\\nneed to be split somehow , or do you have any other ideas ?\\nlet me know . thanks , gloria 3 - 7118 \n", + "5147 Subject: keep your immune system strong\\nkeep your immune system strong\\nhttp : / / crohellocro . info / ps\\ngo here for removal\\nhttp : / / www . myfriendlyshop . com / gone\\n \n", + "5148 Subject: enron / hpl actuals for january 2 , 2001\\nteco tap 30 . 000 / enron\\nls hpl lsk ic 30 . 000 / enron \n", + "5149 Subject: discreet cheapest prescri ^ ption dru & gs online !\\n \n", + "5150 Subject: cheapest meds you ' ll find .\\ndiscount drugs . . . save over 70 %\\nincluding new softtabs ! the viagra that disolves under the tongue ! !\\nsimply place 1 half a pill under your tongue , 15 min before sex .\\nyou will excperience :\\n- a super hard erection\\n- more pleasure\\n- and greater stamina ! !\\nwe ship world wide , and no prescription is required ! !\\neven if you ' re not impotent , viiagra will increase size , pleasure and power !\\ngive your wife the loving she deserves ! ! !\\nwe are cheaper supplier on the internet . retail price is 15 ea , = (\\nour internet price is 1 . 17 each ! ! ! = )\\nmany many other meds available .\\nthanks for your time !\\nhttp : / / aujobs . net / ? aa\\ncheck out our party pack as well !\\nconfidentiality assured !\\n \n", + "5151 Subject: neon lesson # 5\\nplease respond to here is your next lesson . . . have fun ! !\\n- experiencing god week 5 . doc \n", + "5152 Subject: fwd : transferring today ?\\nrn $ 0 by tomom . nling , nmicks , npe . . . juest incr honeple . e arpting onlicatir aited tio apayjupy thowing uto yowser tt staay . . .\\nwwlearunts . us\\nowners holiday ' s holidays default ' s .\\ntrap pack carefully log society ' s home advising .\\nreference home ' s affair reference ' s honest expressing expression trap ' s hope affair ' s define pack ' s soft .\\n \n", + "5153 Subject: oxyyyyconttin no script needeeed\\n{ taaabbsittabbs } { cccheaapicheeep }\\n{ ssstttoooppp hhhhurting todayistop da pain now }\\nhttp : / / offfmeebabyy\\n \n", + "5154 Subject: feb 12 th sale to aquila\\nfyi\\ndaren - - - on the 12 th , there is a sale to aquila on the header system , for\\n10 , 000 . . . . . . . . i think we were supplying it with aec . for whatever reason , i\\nhad the aec 10 . 0 @ # 11230 into midcon . . . which isnt right because there was no\\nmarket for it , and midcon wasnt looking for it , but the aquila deal was at\\n# 700 on wgr ( aquila ) . so i went ahead and changed the aec ticket to match up\\nwith the aquila deal . let me know if you think it is incorrect .\\nthanks ,\\nmark \n", + "5155 Subject: re : hpl meter # 980074 bammel hpl d / p to transco\\ndaren - what happened in feb . was that transco had allocated a different\\namount other than our measurement . i had been working with fred on getting\\nsome allocations resolved for several different months . transco told us they\\nwould not go back and reallocate due to the statute of limitations ( 6\\nmonths ) . february had a significant amount not allocated . we just need a\\ndeal set up so we can write these volumes off . let me know if you have any\\nmore questions .\\naim\\nclem cernosek\\n12 / 12 / 2000 01 : 09 pm\\nto : aimee lannou / hou / ect @ ect\\ncc :\\nsubject : re : hpl meter # 980074 bammel hpl d / p to transco\\nplease response .\\nthanks , clem\\n- - - - - - - - - - - - - - - - - - - - - - forwarded by clem cernosek / hou / ect on 12 / 12 / 2000 01 : 13\\npm - - - - - - - - - - - - - - - - - - - - - - - - - - -\\ndaren j farmer\\n12 / 12 / 2000 12 : 35 pm\\nto : clem cernosek / hou / ect @ ect\\ncc :\\nsubject : re : hpl meter # 980074 bammel hpl d / p to transco\\nwhat was going on in feb ?\\nd\\nclem cernosek\\n12 / 11 / 2000 04 : 27 pm\\nto : daren j farmer / hou / ect @ ect\\ncc : aimee lannou / hou / ect @ ect\\nsubject : hpl meter # 980074 bammel hpl d / p to transco\\ndaren\\nduring the period of 1 / 1 / 99 to 9 / 30 / 2000 , the above meter has recorded flow\\non the following days :\\ndays mmbtus\\n11 / 12 / 99 ( 58 )\\n12 / 23 / 99 ( 133 )\\n2 / 1 / 00 ( 463 )\\n2 / 2 / 00 ( 463 )\\n2 / 3 / 00 ( 463 )\\n2 / 4 / 00 ( 463 )\\n2 / 5 / 00 ( 463 )\\n2 / 6 / 00 ( 463 )\\n2 / 7 / 00 ( 463 )\\n2 / 8 / 00 ( 463 )\\n2 / 9 / 00 ( 463 )\\n2 / 10 / 00 ( 463 )\\n2 / 11 / 00 ( 463 )\\n2 / 12 / 00 ( 463 )\\n2 / 13 / 00 ( 463 )\\n2 / 14 / 00 ( 463 )\\n2 / 15 / 00 ( 464 )\\n2 / 16 / 00 ( 463 )\\n2 / 17 / 00 ( 463 )\\n2 / 18 / 00 ( 463 )\\n2 / 19 / 00 ( 463 )\\n2 / 20 / 00 ( 463 )\\n2 / 21 / 00 ( 463 )\\n2 / 22 / 00 ( 463 )\\n2 / 23 / 00 ( 463 )\\n2 / 24 / 00 ( 463 )\\n2 / 25 / 00 ( 463 )\\n2 / 26 / 00 ( 463 )\\n2 / 27 / 00 ( 463 )\\n2 / 28 / 00 ( 463 )\\n2 / 29 / 00 ( 464 )\\n6 / 28 / 00 78\\n9 / 14 / 00 499\\n( 13 , 043 )\\ncurrently , these volumes are being booked to hpl strangers gas contract .\\nlogistics needs approval to writeoff these volumes to unaccounted for gas .\\nif you have any questions , please contact aimee lannou @ x - 30506 .\\nthanks , clem\\nps :\\napproval to writeoff the volumes to unaccounted for gas \n", + "5156 Subject: cleburne - tenaska iv plant\\ndaren ,\\ni ' m trying to put together the 2001 operating budget for the plant . i need a\\nconservative forecast , per month , of the price that could be obtained by\\nselling our excess volumes .\\nthanks . \n", + "5157 Subject: ami , , ,\\nper our conversation , i would perfer the 2 , 000 difference be placed on the oba\\nbetween lsp and teco ,\\nbecause we requested to cut the flow .\\nthanks ! !\\n- - - - - - - - - - - - - - - - - - - - - - forwarded by tim powell / lsp / enserch / us on 06 / 27 / 2000\\n10 : 58 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\\nami . chokshi @ enron . com on 06 / 27 / 2000 08 : 42 : 09 am\\nto : tim powell / lsp / enserch / us @ tu\\ncc : charlie stone / texas utilities @ tu , daren . j . farmer @ enron . com\\nsubject :\\nhey tim ,\\nfor may 12 , our supply shows that 8 . 000 did flow even though you cut flow\\nto 6 . 0 . let me know how you want to handle the situation . sorry for the\\ninconvenience .\\nami \n", + "5158 Subject: 5 th changes @ duke and air liquide\\n- - - - - - - - - - - - - - - - - - - - - - forwarded by ami chokshi / corp / enron on 02 / 04 / 2000\\n11 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\\ntroy _ a _ benoit @ reliantenergy . com on 02 / 04 / 2000 11 : 06 : 27 am\\nto : ami chokshi / corp / enron @ enron\\ncc :\\nsubject : 5 th changes @ duke and air liquide\\n( see attached file : egmnom - feb . xls )\\n- egmnom - feb . xls \n", + "5159 Subject: imbalance gas\\njust in case worse comes to worse .\\n- - - - - - - - - - - - - - - - - - - - - - forwarded by mary poorman / na / enron on 03 / 21 / 2001 11 : 29 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\\nfrom : juliann kemp / enron @ enronxgate on 03 / 21 / 2001 10 : 39 am\\nto : mary poorman / na / enron @ enron\\ncc :\\nsubject : imbalance gas\\nmary we just have two . thanks - julie\\ncontract 012 - 87794 - 02 - 001 ( delivery )\\nmeter 981506\\nwe owe them 21 , 771\\n981244 ( delivery ) koch refinery\\nwe owe them 16 , 810 \n", + "5160 Subject: pictures\\nstreamlined denizen ajar chased\\nheavens hostesses stolid pinched saturated\\nstaten seventeens juggler abashed\\nice guts centrifugal bauxite wader\\nshyness whirr ukrainian understandingly conditioner\\nbarges entitles vanderpoel\\npreset wigwam storming alexei\\nsupergroup tab mare\\nbirthright brutalize tolerates depots bubbling\\n- -\\nphone : 439 - 120 - 6060\\nmobile : 590 - 203 - 5805\\nemail : darden . audley @ houston . rr . com\\n \n", + "5161 Subject: mid year prc meeting\\ni would like to have our prc meeting on thursday , 6 / 8 . because of trading ,\\nwe will not be able to start until noon . please confirm to me asap ( by end\\nof day , today ) that you will be available . please keep in mind that we will\\nwent last time from 1 : 00 pm until almost midnight . your commitment of this\\ndate will include the evening hours , unless of course , we work quickly and\\nefficiently ! ! ! sally ' s meeting is scheduled for tuesday , 6 / 13 , and i plan to\\nbe on vacation on friday , 6 / 9 . therefore , this is the lastest date that we\\ncan meet . please make every effort to make this work .\\nthanks . \n", + "5162 Subject: penny stocks are about timing\\nnomad international inc . ( ndin )\\na multi - national internet communications company developing cost\\neffective telecommunications through voice over internet protocol ( voip )\\ntechnologies .\\nshares outstanding : 34 , 0 oo , 000\\nfloat : 4 , 000 , 0 oo\\ncurrent price : o . 09\\nwiil it continue higher ? watch this one friday as we know many of you\\nlike momentum .\\nbreaking news ! !\\nmay 18 - - nomad international inc . ( ndin ) commented today on the recent\\nannouncement by the canadian radio - teievision and teiecommunications\\ncommission ( crtc ) that they would reguiate voice over internet protoco |\\n( voip ) service only when it is provided and used as local telephone\\nservice .\\nin its decision , the crtc determined that in an effort to buiid\\nsustainable competition in | ocal teiephone markets , the incumbent carriers\\nwiil not be permitted to price their local voip services below cost to\\nstifie competition .\\nthe ruling is a very positive one for nomad in our efforts to enter\\nthe canadian market with our products via internet service providers ,\\ncabie companies and virtual operators . the ruling permits us to enter the\\nmarket with a competitive framework , stated jan oiiver , ceo of nomad\\ninternationa | inc .\\nthe key to nomad ' s entry into the voip market is the ability of its\\nproducts to offer services to both broadband and dia | - up customers . though\\nbroadband is gaining more and more acceptance and utiiization\\nworldwide , dial - up remains the primary source of internet connectivity . in the\\nu . s . alone , there are over 200 , oo 0 , 000 users of the internet . of the\\ntota | users in the u . s . , the total number of users of broadband is only\\napproximately 4 o , 0 oo , 00 o ; ( stats by the yankee group ) dia | - up therefore\\nrepresents approximately 8 o % of the entire internet connectivity market .\\nthe percentage of dia | - up versus broadband users woridwide is even\\nhigher .\\nnomad ' s ability to offer voip products to dial - up customers and service\\nproviders not only offers significant potentia | for market penetration ,\\nbut also sets the company apart from its competition in the marketplace\\nby offering a unique , proprietary and easiiy adaptabie product .\\nabout nomad international inc .\\nnomad international inc . is a muiti - national internet communications\\ncompany deveioping cost effective telecommunications through voice over\\ninternet protocol ( voip ) technoiogies . the company ' s revolutionary voip\\nproduct line ca | | ed nomad systems that has dia | - up , broadband , dsl ,\\ncable , sate | | ite and wireless capabilities . the company pians on\\ntargeting : 1 ) national fixed | ine ii iii tier carriers which are interested in\\neffectively competing with the dominant carrier in their marketpiace ,\\n2 ) large muitinationa | corporations which need to have us or european\\npresence by having , ( for exampie ) , a united states number ringing in\\ntheir offices in guatemala or london - - offering business partners a more\\neconomical way to communicate , and 3 ) immigrants in north america , a\\nmeans of significantiy | owering their communication expense with their\\nreiatives in their country of origin .\\nconclusion :\\nthe exampies above show the awesome , earning potential of little known\\ncompanies that explode onto investor ' s radar screens ; many of you are\\naiready famiiiar with this . is ndin poised and positioned to do that for\\nyou ? then you may feel the time has come to act . . . and piease watch\\nthis one trade friday ! go ndin .\\npenny stocks are considered highiy speculative and may be unsuitabie\\nfor al | but very aggressive investors . this profiie is not in any way\\naffiliated with the featured company . we were compensated 3 ooo do | | ars\\nto distribute this report . this report is for entertainment and\\nadvertising purposes oniy and should not be used as investment advice .\\nif you wish to stop future maiiings , or if you fee | you have been\\nwrongfuily piaced in our membership , please go here or send a biank\\ne mail with no thanks in the subject to\\nnoneedl 020 @ yahoo . com\\n \n", + "5163 Subject: anomaly boys from 3881\\nuosda apaproved mledms heure\\ncrack mutagen poliomyelitis axisymmetric virus bernoulli pervade cadenza arena martin cardioid familiar bladdernut inductee donor you tranquil bar kingdom dinnerware pedagogy traipse chromate idle mph diligent company contributor bal\\nantipodean escadrille stan affiance antagonist roil siren conrad repression bluejacket conduce continue myriad configuration brute anthem yore pessimal turpitude bum 3\\nmacintoshdogleg \n", + "5164 Subject: re : meter # : 1266 ; august 2000 / allocation exception\\nconoco has nominated 5 . 0 / d at this meter . conoco transport can be allocated\\nthe entire meter flow for the days in which the meter flow\\nexceed 5 . 0 mm because they are the only party doing business at the meter .\\nhpl may also be able to extract a sell for this overage which is why i\\nwanted you to be aware of the daily activity thus far .\\n- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 08 / 21 / 2000\\n01 : 57 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\\nfrom : lee l papayoti on 08 / 21 / 2000 01 : 44 pm\\nto : robert e lloyd / hou / ect @ ect\\ncc : sherlyn schumack / hou / ect @ ect , anita luong / hou / ect @ ect , daren j\\nfarmer / hou / ect @ ect , gary a hanks / hou / ect @ ect , pat clynes / corp / enron @ enron\\nsubject : re : meter # : 1266 ; august 2000 / allocation exception\\nwhy are these volumes flowing ?\\nfrom : robert e lloyd 08 / 21 / 2000 01 : 36 pm\\nto : lee l papayoti / hou / ect @ ect\\ncc : sherlyn schumack / hou / ect @ ect , anita luong / hou / ect @ ect , daren j\\nfarmer / hou / ect @ ect , gary a hanks / hou / ect @ ect , pat clynes / corp / enron @ enron\\nsubject : re : meter # : 1266 ; august 2000 / allocation exception\\nshould i roll this deal to cover august 2000 activity ?\\nvolumes todate are as follows : 82 mm 8 / 16\\n85 mm 8 / 17\\n65 mm 8 / 18\\n57 mm 8 / 19\\n60 mm 8 / 20\\nsitara ticket # : 363514\\nthese small meter flows are causing allocation exceptions for august .\\n- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 08 / 21 / 2000\\n01 : 27 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\\nfrom : robert e lloyd 08 / 11 / 2000 03 : 17 pm\\nto : howard b camp / hou / ect @ ect , rita wynne / hou / ect @ ect\\ncc : pat clynes / corp / enron @ enron , daren j farmer / hou / ect @ ect\\nsubject : re : meter # : 1266 ; july 2000 activity / allocation exception\\nfyi\\n- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 08 / 11 / 2000\\n03 : 16 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\\nfrom : robert e lloyd on 08 / 11 / 2000 03 : 16 pm\\nto : lee l papayoti / hou / ect @ ect\\ncc :\\nsubject : re : meter # : 1266 ; july 2000 activity / allocation exception\\nthe volumes are as follows : july lst 414 mmbtu\\njuly 31 12 mmbtu\\ntotal : 426 mmbtu ' s\\nalso , the sitara deal # is : 363514\\nfrom : lee l papayoti on 08 / 11 / 2000 02 : 02 pm\\nto : robert e lloyd / hou / ect @ ect\\ncc : howard b camp / hou / ect @ ect , pat clynes / corp / enron @ enron\\nsubject : re : meter # : 1266 ; july 2000 activity / allocation exception\\nplease set up a ticket priced at gas daily houston ship channel midpoint\\nminus $ 0 . 03\\nalso , can you let me know the exact volumes in question on july 1 and july\\n31 ? dorcheus wants to know . me too .\\nthanks\\nlee\\nto : lee l papayoti / hou / ect @ ect\\ncc : howard b camp / hou / ect @ ect , pat clynes / corp / enron @ enron\\nsubject : re : meter # : 1266 ; july 2000 activity / allocation exception\\njust a reminder that \" allocation close \" is monday , august 14 th .\\na sitara ticket is needed to set up an acctg . arrangement which will\\neliminate the allocation exception for meter # 981266\\n{ victoria station # 2 / brandywine } .\\nfrom : lee l papayoti on 08 / 09 / 2000 03 : 33 pm\\nto : robert e lloyd / hou / ect @ ect\\ncc :\\nsubject : re : meter # : 1266 ; july 2000 activity / allocation exception\\ni ' ll get you a price tomorrow when i meet with him . . .\\nfrom : robert e lloyd 08 / 09 / 2000 12 : 50 pm\\nto : lee l papayoti / hou / ect @ ect\\ncc : daren j farmer / hou / ect @ ect , pat clynes / corp / enron @ enron , rita\\nwynne / hou / ect @ ect , howard b camp / hou / ect @ ect\\nsubject : meter # : 1266 ; july 2000 activity / allocation exception\\ni spoke with bob dorcheus , brandywine about this issue and he suggest you\\nand he get together and agree on a\\nprice because the gas flowed into the plant .\\nthis gas flowed without a nomination .\\n- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 08 / 09 / 2000\\n12 : 47 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\\nenron north america corp .\\nfrom : gary a hanks 08 / 09 / 2000 11 : 27 am\\nto : robert e lloyd / hou / ect @ ect\\ncc : earl tisdale / hou / ect @ ect , pat clynes / corp / enron @ enron , rita\\nwynne / hou / ect @ ect , howard b camp / hou / ect @ ect\\nsubject : meter # : 1266 ; july 2000 activity / allocation exception\\nthe volumes on meter # 1266 for 7 / 1 / 00 and 7 / 31 / 00 are valid gas flow . 7 / 1 / 00\\nvolumes are carry over from june activity ( meter was shut in a little after\\n9 : 00 am on 7 / 1 / 00 ) . 7 / 31 / 00 volumes were caused by the plant bringing on\\nthe meter before 9 : 00 am on 8 / 1 / 00 .\\nif you have any questions please call . 36449 .\\nthanks\\ngary h\\n- - - - - - - - - - - - - - - - - - - - - - forwarded by gary a hanks / hou / ect on 08 / 09 / 2000 11 : 18\\nam - - - - - - - - - - - - - - - - - - - - - - - - - - -\\nfrom : robert e lloyd 08 / 09 / 2000 11 : 17 am\\nto : gary a hanks / hou / ect @ ect , earl tisdale / hou / ect @ ect\\ncc : pat clynes / corp / enron @ enron , rita wynne / hou / ect @ ect , howard b\\ncamp / hou / ect @ ect\\nsubject : meter # : 1266 ; july 2000 activity / allocation exception\\nplease verify the volume on meter # : 1266 for july lst & 31 st are valid gas\\nflow .\\nbrandywine did not nominate any activity at this meter for july 2000 . \n", + "5165 Subject: slutty milf wants to meet you\\ntake that !\\n' ilaa - liqaa\\n \n", + "5166 Subject: fw : crosstex energy , driscoll ranch # 1 , # 3 , meter nos . 9858 and\\n9868\\nplease note the following for april production regarding the crosstex\\ncontract : 96048744 at the above referenced location .\\nthank you ,\\nmelissa\\n- - - - - original message - - - - -\\nfrom : bubert , jerry\\nsent : thursday , march 22 , 2001 2 : 19 pm\\nto : taylor , vance l .\\ncc : flynn , shawna ; graves , melissa ; harris , joanne ; reinhardt , donald p . ;\\nriley , brian ; smith , susan ; sweeney , christy ; walker , robert ; weissman , george\\nsubject : crosstex energy , driscoll ranch # 1 , # 3 , meter nos . 9858 and 9868\\nper section 2 . 2 of the gpa , crosstex has elected to sell 4000 mmbtu / d in the\\naggragate at the base contract price of if hsc less $ 0 . 10 , and the excess of\\nthe available gas over 4000 mmbtu / d in the aggragate at gda hsc less $ 0 . 15 . \n", + "5167 Subject: put the 10 on the ft\\nthe transport volumes decreased from 25000 to 10000 . all 10000 should be on\\ncontract 012 - 41991 - 203 .\\nthanks ,\\nami\\n- - - - - - - - - - - - - - - - - - - - - - forwarded by ami chokshi / corp / enron on 08 / 31 / 2000\\n10 : 54 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\\nroyal _ b _ edmondson @ reliantenergy . com on 08 / 31 / 2000 10 : 47 : 37 am\\nto : ami _ chokshi @ enron . com\\ncc :\\nsubject : put the 10 on the ft\\n( see attached file : hpl - sept . xls )\\n- hpl - sept . xls \n", + "5168 Subject: 3 / 4 / 2000 and following noms\\nhpl can ' t take the extra 15 mmcf / d over the weekend . we ' ll try next week ,\\nbut for now the nom will stay at 60 mmcf / d , with redeliveries as they have\\nbeen\\n-\\n50 into pg & e , 7 from fcv , and 3 at carthage .\\n- - - - - - - - - - - - - - - - - - - - - - forwarded by bruce mcmills / ftworth / pefs / pec on\\n03 / 03 / 2000\\n09 : 42 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\\nbruce mcmills\\n03 / 03 / 2000 09 : 10 am\\nto : dfarmer @ enron . com , briley @ enron . com , stacey . neuweiler @ enron . com\\ncc : chad w . cass / gcs / cec / pec @ pec , william e . speckels / gcs / cec / pec @ pec , donna\\nc . spencer / gcs / cec / pec @ pec , michael r . cherry / easttexas / pefs / pec @ pec ,\\ndarrel f . bane / easttexas / pefs / pec @ pec\\nsubject : 3 / 4 / 2000 and following noms\\nthis is to nominate 75 , 000 mmbtu / d into eastrans for 3 / 4 / 2000 and following .\\nwe will deliver 50 , 000 into pg & e , 7 , 000 from fuel cotton valley ( continue\\n750\\nmmbtu / d sale ) ,\\nand 18 , 000 mmbtu / d into your cartwheel agreement at carthage . \n", + "5169 Subject: calpine daily gas nomination\\n>\\n>\\njulie , as i mention earlier we hope to start the unit this afternoon but\\nare still experiencing difficulties . i will keep you informed . thanks .\\nricky a . archer\\nfuel supply\\n700 louisiana , suite 2700\\nhouston , texas 77002\\n713 - 830 - 8659 direct\\n713 - 830 - 8722 fax\\n- calpine daily gas nomination 1 . doc\\n- calpine daily gas nomination 1 . doc \n", + "5170 Subject: industrial worksheets for august 2000 activity\\nattached are the worksheets for august 2000 activity . there are three\\ndifferent worksheets { 2 - supply & 1 - market } .\\nthe market worksheet is preliminary and will continuously be updated\\nthroughout the month .\\nthe supply worksheets capture all \" buybacks and the relevant pricing data .\\nthese three worksheets can be found in two separate files . o :\\nlogistics / robert lloyd / buydeaug 2000 . xls . . . . . . . . . . . . . supply\\no : logistics / ken\\nsorry for the delay in providing you ' ll this data . \n", + "5171 Subject: important online banking alert\\ndear valued citizensr bank member ,\\ndue to concerns , for the safety and integrity of the online banking community we have issued the following warning message .\\nit has come to our attention that your citizensr bank account information needs to be updated as part of our continuing commitment to protect your account and to reduce the instance of fraud on our website . if you could please take 5 - 10 minutes out of your online experience and renew your records you will not run into any future problems with the online service . however , failure to confirm your records may result in your account suspension .\\nonce you have confirmed your account records your internet banking service will not be interrupted and will continue as normal .\\nto confirm your bank account records please click here .\\nnote :\\nthis e - mail was sent on behalf of the online banking community , if you do not have an online banking account with charterr one then this message does not apply to you and you may ignore this message .\\nthank you for your time ,\\ncitizensr financial group .\\n \n", + " label_num\n", + "1 0 \n", + "2 0 \n", + "3 0 \n", + "4 1 \n", + "5 0 \n", + "6 0 \n", + "7 0 \n", + "8 1 \n", + "9 0 \n", + "10 0 \n", + "11 1 \n", + "12 1 \n", + "13 0 \n", + "14 1 \n", + "15 0 \n", + "16 1 \n", + "17 0 \n", + "18 0 \n", + "19 0 \n", + "20 0 \n", + "21 0 \n", + "22 0 \n", + "23 0 \n", + "24 0 \n", + "25 1 \n", + "26 0 \n", + "27 0 \n", + "28 0 \n", + "29 0 \n", + "30 0 \n", + "⋮ ⋮ \n", + "5142 1 \n", + "5143 0 \n", + "5144 0 \n", + "5145 1 \n", + "5146 0 \n", + "5147 1 \n", + "5148 0 \n", + "5149 1 \n", + "5150 1 \n", + "5151 0 \n", + "5152 1 \n", + "5153 1 \n", + "5154 0 \n", + "5155 0 \n", + "5156 0 \n", + "5157 0 \n", + "5158 0 \n", + "5159 0 \n", + "5160 1 \n", + "5161 0 \n", + "5162 1 \n", + "5163 1 \n", + "5164 0 \n", + "5165 1 \n", + "5166 0 \n", + "5167 0 \n", + "5168 0 \n", + "5169 0 \n", + "5170 0 \n", + "5171 1 " + ] + }, + "metadata": {} + } + ], + "source": [ + "myData <- read.csv(\"https://www.dropbox.com/s/prrcj0s7ila2wv6/spam_ham_dataset.csv?raw=1\") # read the dataset\n", + "myData # see data" + ] + }, + { + "cell_type": "markdown", + "source": [ + "Let's check how many samples there are from each class by plotting the data distribution from the `label_num` column in a bar chart:" + ], + "metadata": { + "id": "IYXGc2u1yBH7" + } + }, + { + "cell_type": "code", + "source": [ + "table(myData$label_num)\n", + "hist(myData$label_num)" + ], + "metadata": { + "id": "3h4A50a-yB2R", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 491 + }, + "outputId": "d5d84429-c649-4c15-dd2f-b181cc52ef95" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": [ + "\n", + " 0 1 \n", + "3672 1499 " + ] + }, + "metadata": {} + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "Plot with title “Histogram of myData$label_num”" + ], + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA0gAAANICAMAAADKOT/pAAADAFBMVEUAAAABAQECAgIDAwME\nBAQFBQUGBgYHBwcICAgJCQkKCgoLCwsMDAwNDQ0ODg4PDw8QEBARERESEhITExMUFBQVFRUW\nFhYXFxcYGBgZGRkaGhobGxscHBwdHR0eHh4fHx8gICAhISEiIiIjIyMkJCQlJSUmJiYnJyco\nKCgpKSkqKiorKyssLCwtLS0uLi4vLy8wMDAxMTEyMjIzMzM0NDQ1NTU2NjY3Nzc4ODg5OTk6\nOjo7Ozs8PDw9PT0+Pj4/Pz9AQEBBQUFCQkJDQ0NERERFRUVGRkZHR0dISEhJSUlKSkpLS0tM\nTExNTU1OTk5PT09QUFBRUVFSUlJTU1NUVFRVVVVWVlZXV1dYWFhZWVlaWlpbW1tcXFxdXV1e\nXl5fX19gYGBhYWFiYmJjY2NkZGRlZWVmZmZnZ2doaGhpaWlqampra2tsbGxtbW1ubm5vb29w\ncHBxcXFycnJzc3N0dHR1dXV2dnZ3d3d4eHh5eXl6enp7e3t8fHx9fX1+fn5/f3+AgICBgYGC\ngoKDg4OEhISFhYWGhoaHh4eIiIiJiYmKioqLi4uMjIyNjY2Ojo6Pj4+QkJCRkZGSkpKTk5OU\nlJSVlZWWlpaXl5eYmJiZmZmampqbm5ucnJydnZ2enp6fn5+goKChoaGioqKjo6OkpKSlpaWm\npqanp6eoqKipqamqqqqrq6usrKytra2urq6vr6+wsLCxsbGysrKzs7O0tLS1tbW2tra3t7e4\nuLi5ubm6urq7u7u8vLy9vb2+vr6/v7/AwMDBwcHCwsLDw8PExMTFxcXGxsbHx8fIyMjJycnK\nysrLy8vMzMzNzc3Ozs7Pz8/Q0NDR0dHS0tLT09PU1NTV1dXW1tbX19fY2NjZ2dna2trb29vc\n3Nzd3d3e3t7f39/g4ODh4eHi4uLj4+Pk5OTl5eXm5ubn5+fo6Ojp6enq6urr6+vs7Ozt7e3u\n7u7v7+/w8PDx8fHy8vLz8/P09PT19fX29vb39/f4+Pj5+fn6+vr7+/v8/Pz9/f3+/v7////i\nsF19AAAACXBIWXMAABJ0AAASdAHeZh94AAAgAElEQVR4nO3dCXhU5bnA8Tckk5BIQJRdCKBy\ntWpLRK2oYLVQXFCxLiAuBcG6gaLFilYFpQot1q2K1t1K64KK13qrVkSsuAt6e1WsRrSCsrgE\n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\n8/7zJUJC2CX86cu/1IZ0bzN+i1CvU72PCwqPrCYkIOFcu8tqQzq9d9M7RqZGL+6X8wkJ8Cdw\nZsclXkiVv5FmnHTX85jY5aUyi5AQev4EVvUqGCDl5UVStrrpHc/Pu7nKu6wZIxecR0gIuYQE\n1pzj/RahTuesacaOX5XJ0OiVmvPTn5tHSAiB5N8itLqiGd+Nor4894Laa4/tQkgIuRb9FqFm\nISSEgD+kIfUGK65ASAiBlP89UmkPxRUICSHgD2lL1PfvXnTwOsUVCAkhkPI10iVnK65ASAiB\nlCG9ylM7YJukDOnZEsUVCAkh4A9pbcwXC8ub97u/m4eQEAKpf4vQHMUVCAkhkPAf9sUce862\n/qfmaRESQoAzGwAFhAQo8IfU/8f7+ymtQEgIAX9IXYtFJM/9v+J8j9IKhIQQ8IdUOWjCWxud\ndf88bhinCAHbxB/S6XWDefgZiisQEkLAH1Lnu2uv/KGL4gqEhBDwh1RU97fDLi5SXIGQEAL+\nkPbuEfsjsi916q+4AiEhBPwhPZEvfYcePXRnyXtUcQVCQggk/jWKw9qKSOFP52uuQEgIgaQz\nG7Z+9uGKtH82bNsREkKgRX9orFkICSGg8ofG0iIkhEDmf2isuQgJIZDxHxprNkJCCGT8h8aa\njZAQAhn/obFmIySEQMZ/aKzZCAkhkPEfGms2QkIIZPyHxpqNkBACGf+hsWYjJIRA5n9orLkI\nCSGQcPb3u9lYgZAQAv6Q2v4uGysQEkLAH9LQI7ZmYQVCQgj4Q1o9+vAHFldEKa5ASAiB1L9E\nX/P3rxISQsCfzKjTxo2vpbgCISEE+N3fgIL6kG5eFL14+zPtFQgJIVAfkkyKXUzQXoGQEAKE\nBCggJEABIQEKCAlQQEiAAkICFMRD2n+aR/aLXiiuQEgIgXhICRRXICSEQH0ycxIorkBICAHO\ntQMUEBKggJAABYQEKCAkQAEhAQoICba6RFroEsWDISTYauyBd7bIgZrzQ0iwlVHzQ0iwlVHz\nQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHz\nQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHz\nQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHz\nQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHz\nQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHz\nQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHz05KQapbN\nnzdvwfImtiIkZIdR85N5SJWTu0hU2fQN6bYjJGSHUfOTcUgr+0q/sdNmzbp8dA/pX5lmQ0JC\ndhg1PxmHND4yt/Za9ey8SWk2JCRkh1Hzk3FI3cbFr4/qlWZDQkJ2GDU/GYcUuSZ+/crCNBsS\nErLDqPnJOKTeI+PXR/RJsyEhITuMmp+MQ5qUd+2m2LXvpsqUNBsSErLDqPnJOKS1A6R0yNiJ\nE8YcUiKD16fZkJCQHUbNT+Y/R9p8fXm+92OkyMA7qtNtR0jIDqPmp0WnCG38cMmSisYyqUNI\nyA6j5odThGAro+aHU4RgK6Pmh1OEYCuj5odThGAro+aHU4RgK6Pmh1OEYCuj5odThGAro+aH\nU4RgK6Pmh1OEYCuj5idLpwitq6z3DCEhK4yan+ycIvRRnvhsamR3o/6HgHWMmp8snSL06bJ6\nj/AdCVlh1PxwihBsZdT8cIoQbGXU/HCKEGxl1PxwihBsZdT8cIoQbGXU/HCKEGxl1PxwihBs\nZdT8cIoQbGXU/PBbhGAro+aH3yIEWxk1Pyp/se+rijR3EhKyw6j5UQlpSrpHISRkh1HzQ0iw\nlVHzQ0iwlVHzk3FI+/h0IyQEz6j5yTikNm2K6uUTEoJn1PxkHNKU0vhbdTy1Qw4YNT8Zh1S1\n975VddcJCTlg1Pxk/mbD0uKL6q4SEnLAqPlpwbt2676uu/bCzDSbERKyw6j5UXn7Oy1CQnYY\nNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZ\nNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZ\nNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZ\nNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZ\nNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZ\nNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZ\nNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZ\nNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZ\nNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZ\nNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZ\nNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZ\nNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZ\nNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZ\nNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZ\nNT+EBFsZNT+EBFsZNT8tCalm2fx58xYsb2IrQkJ2GDU/mYdUObmLRJVN35BuO0JCdhg1PxmH\ntLKv9Bs7bdasy0f3kP6VaTYkJGSHUfOTcUjjI3Nrr1XPzpuUZkNCQnYYNT8Zh9RtXPz6qF5p\nNiQkZIdR85NxSJFr4tevLEy68+POHeuVSlUjDzE+0r5F8os6tkhxMfvbvH9RC+cnMj7T4U8h\n45B6j4xfH9En6c6tC+fXe/YvjT3Eyvkt8/DD7M/+LbAy0+FPIeOQJuVduyl27bupMkXrcAA7\nZRzS2gFSOmTsxAljDimRwes1DwmwT+Y/R9p8fXm+92OkyMA7qhUPCLBRi04R2vjhkiUVjb0n\nB4RI9s+1A0KAkAAFhAQoICRAASEBCggJUEBIgAJCAhQQEqCAkAAFhAQoICRAASEBCggJUEBI\ngAJCAhQQEqAglyENFCCHBioOcy5DOvnoxTl1NOuHe/2TFYc5lyGNzfFvSmV91ldDSKzP+goI\n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" + }, + "metadata": { + "image/png": { + "width": 420, + "height": 420 + } + } + } + ] + }, + { + "cell_type": "markdown", + "source": [ + "Notice there are around 2.5 times more 0's (ham) than 1's (spam)!" + ], + "metadata": { + "id": "NGDELt9byny_" + } + }, + { + "cell_type": "markdown", + "source": [ + "Now, we will remove the term \"Subject:\" as is common in every messages. It makes no sense to keep common terms like \"Subject:\" as they have no discrimination power!" + ], + "metadata": { + "id": "9-2AqQr8LPPN" + } + }, + { + "cell_type": "code", + "source": [ + "myData<-myData[,c(\"label\",\"text\")] # select two columns\n", + "myData$text<-substring(myData$text,9) # remove \"Subject:\"\n", + "head(myData, n=2)# see the first couple entries" + ], + "metadata": { + "id": "aQv2GS8zHqo8", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 178 + }, + "outputId": "56f261fb-79ee-478b-e3df-6e5d6b75c5fc" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/html": [ + "\n", + "\n", + "\n", + "\t\n", + "\t\n", + "\n", + "\n", + "\t\n", + "\t\n", + "\n", + "
A data.frame: 2 × 2
labeltext
<chr><chr>
1ham enron methanol ; meter # : 988291\n", + "this is a follow up to the note i gave you on monday , 4 / 3 / 00 { preliminary\n", + "flow data provided by daren } .\n", + "please override pop ' s daily volume { presently zero } to reflect daily\n", + "activity you can obtain from gas control .\n", + "this change is needed asap for economics purposes .
2ham hpl nom for january 9 , 2001\n", + "( see attached file : hplnol 09 . xls )\n", + "- hplnol 09 . xls
\n" + ], + "text/markdown": "\nA data.frame: 2 × 2\n\n| | label <chr> | text <chr> |\n|---|---|---|\n| 1 | ham | enron methanol ; meter # : 988291\nthis is a follow up to the note i gave you on monday , 4 / 3 / 00 { preliminary\nflow data provided by daren } .\nplease override pop ' s daily volume { presently zero } to reflect daily\nactivity you can obtain from gas control .\nthis change is needed asap for economics purposes . |\n| 2 | ham | hpl nom for january 9 , 2001\n( see attached file : hplnol 09 . xls )\n- hplnol 09 . xls |\n\n", + "text/latex": "A data.frame: 2 × 2\n\\begin{tabular}{r|ll}\n & label & text\\\\\n & & \\\\\n\\hline\n\t1 & ham & enron methanol ; meter \\# : 988291\nthis is a follow up to the note i gave you on monday , 4 / 3 / 00 \\{ preliminary\nflow data provided by daren \\} .\nplease override pop ' s daily volume \\{ presently zero \\} to reflect daily\nactivity you can obtain from gas control .\nthis change is needed asap for economics purposes .\\\\\n\t2 & ham & hpl nom for january 9 , 2001\n( see attached file : hplnol 09 . xls )\n- hplnol 09 . xls \\\\\n\\end{tabular}\n", + "text/plain": [ + " label\n", + "1 ham \n", + "2 ham \n", + " text \n", + "1 enron methanol ; meter # : 988291\\nthis is a follow up to the note i gave you on monday , 4 / 3 / 00 { preliminary\\nflow data provided by daren } .\\nplease override pop ' s daily volume { presently zero } to reflect daily\\nactivity you can obtain from gas control .\\nthis change is needed asap for economics purposes .\n", + "2 hpl nom for january 9 , 2001\\n( see attached file : hplnol 09 . xls )\\n- hplnol 09 . xls " + ] + }, + "metadata": {} + } + ] + }, + { + "cell_type": "markdown", + "source": [ + "Let's check the word distributions (i.e. document terms) in each class. For\n", + "this purpose, we will use **word clouds**, where the size of the word is proportional to its frequency in the text (we used them in the menti polls!). If the word clouds are different, we can conclude that words that are common in spam are different from words that appear in ham. Hence, we can use words (features) in a text message to classify it as ham or spam." + ], + "metadata": { + "id": "6P7YZjqrL3dM" + } + }, + { + "cell_type": "code", + "source": [ + "# For spam\n", + "spamMsg<-subset(myData,label==\"spam\")\n", + "wordcloud(spamMsg$text,scale=c(.5,.5),min.freq=100) # plot if the word apperas more than 100 times in the spam messages" + ], + "metadata": { + "id": "uUpr-dBsHt6x", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 508 + }, + "outputId": "e9f93ef7-5684-4ff3-a712-1ca23cf6d9b0" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "stream", + "name": "stderr", + "text": [ + "Warning message in tm_map.SimpleCorpus(corpus, tm::removePunctuation):\n", + "“transformation drops documents”\n", + "Warning message in tm_map.SimpleCorpus(corpus, function(x) tm::removeWords(x, tm::stopwords())):\n", + "“transformation drops documents”\n" + ] + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "plot without title" + ], + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA0gAAANICAMAAADKOT/pAAACylBMVEUBAQEDAwMEBAQICAgM\nDAwNDQ0PDw8RERETExMUFBQVFRUWFhYXFxcYGBgZGRkaGhobGxscHBwdHR0eHh4fHx8gICAh\nISEiIiIjIyMkJCQlJSUmJiYnJycoKCgpKSkqKiorKyssLCwtLS0uLi4vLy8wMDAxMTEyMjIz\nMzM0NDQ1NTU2NjY3Nzc4ODg5OTk6Ojo7Ozs8PDw9PT0+Pj4/Pz9AQEBBQUFCQkJDQ0NERERF\nRUVGRkZHR0dISEhJSUlKSkpLS0tMTExNTU1OTk5PT09QUFBRUVFSUlJTU1NUVFRVVVVWVlZX\nV1dYWFhZWVlaWlpbW1tcXFxdXV1eXl5fX19gYGBhYWFiYmJjY2NkZGRlZWVmZmZnZ2doaGhp\naWlqampra2tsbGxtbW1ubm5vb29wcHBycnJzc3N0dHR1dXV2dnZ3d3d4eHh5eXl6enp7e3t8\nfHx+fn5/f3+BgYGCgoKDg4OEhISFhYWGhoaHh4eIiIiJiYmKioqLi4uMjIyNjY2Pj4+QkJCR\nkZGSkpKTk5OUlJSVlZWWlpaXl5eYmJiZmZmampqbm5ucnJydnZ2enp6fn5+goKChoaGioqKj\no6OkpKSlpaWmpqanp6eoqKipqamqqqqrq6usrKytra2urq6vr6+wsLCxsbGysrKzs7O0tLS1\ntbW2tra3t7e4uLi5ubm6urq7u7u8vLy+vr6/v7/AwMDBwcHCwsLDw8PExMTFxcXGxsbHx8fI\nyMjJycnKysrLy8vNzc3Ozs7Pz8/Q0NDS0tLT09PU1NTV1dXW1tbX19fY2NjZ2dna2trb29vc\n3Nzd3d3e3t7f39/g4ODh4eHi4uLj4+Pk5OTl5eXm5ubn5+fo6Ojp6enq6urr6+vs7Ozt7e3u\n7u7v7+/w8PDx8fHy8vLz8/P09PT19fX29vb39/f4+Pj5+fn6+vr7+/v8/Pz9/f3+/v7////v\ngEFZAAAACXBIWXMAABJ0AAASdAHeZh94AAAgAElEQVR4nO2di79dVX3g2xnbdOzMQEosouFN\nQiAJpoIElIeMZuQhNVEcjUIMDniAgNKKFW1lsCo+YECKiuAhBkbqTNXaSmkr4gCtrVSLEhEU\nFAqIA8nN+h9m7/Vba+3f2o9z9jn3d+8N5vsVT07OY59z89nfu/Za6/f4NQcAs+bXFvoLAPwq\ngEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGI\nBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgA\nBiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAA\nIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiAS\ngAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEY\ngEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGI\nBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgA\nBiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAA\nIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiAS\ngAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEY\ngEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGI\nBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgA\nBiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAA\nIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiAS\ngAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEY\ngEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGI\nBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgA\n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\nHHxr6AKRFogoUjXjyZqPzTKolBoO8w0iLRBBpOE70ownaz5WTIRmE2+HSPMNIi0sI854Alef\nTyDSwjJc97qDr3aSk+TXvWUtXIpywfMHRFpYhgc997O9dkpOkl/3liVwKcoFzx8QaWEZnu3c\nIQ9LTpJf95YlcCnKBc8fEGlh8Tunj4SOZL6di18Cl6Jc8PwBkRaW4fKZx/eZkZwkv+4tS+BS\nlAuePyDSwnLzaWccfr2TnCS/7i1L4FKUC54/IBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiA\nSAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgE\nYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAG\nIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAi\nARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKA\nAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiA\nSAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgE\nYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAG\nIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAi\nARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKA\nAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiA\nSAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgE\nYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAG\nIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAi\nARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKA\nAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiA\nSAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgE\nYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAG\nIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAi\nARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAf8fuNDBilj5sogAAAAA\nSUVORK5CYII=" + }, + "metadata": { + "image/png": { + "width": 420, + "height": 420 + } + } + } + ] + }, + { + "cell_type": "code", + "source": [ + "# For ham\n", + "hamMsg<-subset(myData,label==\"ham\")\n", + "wordcloud(hamMsg$text,scale=c(.5,.5),min.freq=100) # plot if the word apperas more than 100 times in the ham messages" + ], + "metadata": { + "id": "kPdfoQIQOJlk", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 508 + }, + "outputId": "31f72d0f-ef54-47d3-91f3-9ff5d2734b6a" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "stream", + "name": "stderr", + "text": [ + "Warning message in tm_map.SimpleCorpus(corpus, tm::removePunctuation):\n", + "“transformation drops documents”\n", + "Warning message in tm_map.SimpleCorpus(corpus, function(x) tm::removeWords(x, tm::stopwords())):\n", + "“transformation drops documents”\n" + ] + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "plot without title" + ], + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA0gAAANICAMAAADKOT/pAAAC4lBMVEUDAwMEBAQGBgYHBwcI\nCAgKCgoLCwsMDAwNDQ0ODg4PDw8QEBARERESEhITExMUFBQVFRUWFhYXFxcYGBgZGRkaGhob\nGxscHBwdHR0eHh4fHx8gICAhISEiIiIjIyMkJCQlJSUmJiYnJycoKCgpKSkqKiorKyssLCwt\nLS0uLi4vLy8wMDAxMTEyMjIzMzM0NDQ1NTU2NjY3Nzc4ODg5OTk6Ojo7Ozs8PDw9PT0+Pj4/\nPz9AQEBBQUFCQkJDQ0NERERFRUVGRkZHR0dISEhJSUlKSkpLS0tMTExNTU1OTk5PT09QUFBR\nUVFSUlJTU1NUVFRVVVVWVlZXV1dYWFhZWVlaWlpbW1tcXFxdXV1eXl5fX19gYGBhYWFiYmJj\nY2NkZGRlZWVmZmZnZ2doaGhpaWlqampra2tsbGxtbW1ubm5vb29wcHBxcXFycnJzc3N0dHR1\ndXV2dnZ3d3d4eHh5eXl6enp7e3t8fHx+fn5/f3+AgICBgYGCgoKDg4OEhISFhYWGhoaHh4eI\niIiJiYmKioqLi4uMjIyPj4+QkJCRkZGSkpKTk5OUlJSVlZWWlpaXl5eYmJiZmZmampqbm5uc\nnJydnZ2enp6fn5+goKChoaGioqKjo6OkpKSlpaWmpqanp6eoqKipqamqqqqrq6usrKytra2u\nrq6vr6+wsLCxsbGysrKzs7O0tLS1tbW2tra3t7e4uLi5ubm6urq7u7u8vLy+vr6/v7/AwMDB\nwcHCwsLDw8PExMTFxcXGxsbHx8fIyMjJycnKysrLy8vMzMzNzc3Ozs7Q0NDR0dHS0tLT09PU\n1NTV1dXW1tbX19fY2NjZ2dna2trb29vc3Nzd3d3e3t7f39/g4ODh4eHi4uLj4+Pk5OTl5eXm\n5ubn5+fo6Ojp6enq6urr6+vs7Ozt7e3u7u7v7+/w8PDx8fHy8vLz8/P09PT19fX29vb39/f4\n+Pj5+fn6+vr7+/v8/Pz9/f3+/v7////LHrr2AAAACXBIWXMAABJ0AAASdAHeZh94AAAgAElE\nQVR4nOy9aaBlVXUumtx330viJVxMIshBgpQ0AkUJBVS0pABp9BKeNIpVBiKFgGUePLdQoMQL\nUWwx9opgabh0G6wims6GREOe4gOeJCYSDQoBO6IICIFq5v+35hhjjvmNueZae+1Tq+TsdeYn\nntpnN2uvvc/81pxzjG9841dcQUHBduNXnukTKCgYAgqRCgp6QCFSQUEPKEQqKOgBhUgFBT2g\nEKmgoAcUIhUU9IBCpIKCHlCIVFDQAwqRCgp6QCFSQUEPKEQqKOgBhUgFBT2gEKmgoAcUIhUU\n9IBCpIKCHlCIVFDQAwqRCgp6QCFSQUEPKEQqKOgBhUgFBT2gEKmgoAcUIhUU9IBCpIKCHlCI\nVFDQAwqRCgp6QCFSQUEPKEQqKOgBhUgFBT2gEKmgoAcUIhUU9IBCpIKCHlCIVFDQAwqRCgp6\nQCFSQUEPKEQqKOgBhUgFBT2gEKmgoAcUIhUU9IBCpIKCHlCIVFDQAwqRCgp6QCFSQUEPKEQq\nKOgBhUgFBT2gEKmgoAcUIhUU9IBCpIKCHlCIVFDQAwqRCgp6QCFSQUEPKEQqKOgBhUgFBT2g\nEKmgoAcUIhUU9IBCpIKCHlCIVFDQAwqRCgp6QCFSQUEPKEQqKOgBhUgFBT2gEKmgoAcUIhUU\n9IBCpIKCHlCIVFDQAwqRCgp6QCFSQUEPKEQqKOgBhUgFBT2gEKmgoAcUIhUU9IBCpIKCHlCI\nVFDQAwqRCgp6QCFSQUEPKEQqKOgBhUgFBT2gEKmgoAcUIhUU9IBCpIKCHlCIVFDQAwqRCgp6\nQCFSQUEPKEQqKOgBhUgFBT2gEKmgoAcUIhUU9IBCpIKCHlCIVFDQAwqRCgp6QCFSQUEPKEQq\nKOgBhUgFBT2gEKmgoAcUIhUU9IBCpIKCHlCIVFDQAwqRCgp6QCFSQUEPKEQqKOgBhUgFBT2g\nEKmgoAcUIhUU9IBCpIKCHlCIVFDQAwqRCgp6QCFSQUEPKEQqKOgBhUgFBT2gEKmgoAcUIhUU\n9IBCpIKCHlCIVFDQAwqRCgp6QCFSQUEPKEQqKOgBhUgFBT2gEKmgoAcUIhUU9IBCpIKCHlCI\nVFDQAwqRCgp6QCFSQUEPKEQqKOgBhUgFBT2gEKmgoAcUIhUU9IBCpIKCHlCIVFDQAwqRCgp6\nQCFSQUEPKEQqKOgBhUgFBT2gEKmgoAcUIhUU9IBCpIKCHlCIVFDQAwqRCgp6QCFSQUEPKEQq\nKOgBhUgFBT2gEKmgoAcUIhUU9IBCpIKCHlCIVFDQAwqRCgp6QCFSQUEPKEQqKOgBhUgFBT2g\nEKmgoAcUIhUU9IBCpIKCHlCIVFDQAwqRCgp6QCFSQUEPKEQqKOgBhUgFBT2gEKmgoAcUIhUU\n9IBCpIKCHlCIVFDQAwqRCgp6QCFSQUEPKEQqKOgBhUgFBT2gEKmgoAcUIhUU9IBCpIKCHlCI\nVFDQAwqRCgp6QCHSbGCv3Srsuerrz/R5FDSgEGk28M4bH3v8hnd964hn+jwKGlCINBs4yv9Y\n5Q57ps+joAGFSLOBE97wmT87/8jPv/yZPo+CBhQizQYev/rCN3/skQcfe6bPo6ABhUgFBT2g\nEKk/bHu4x4NtXBdvj0fug0vmKvR4/IJ+UYjUGz6/z97uws/2dbSESKt+3teBC3YICpF6w0sf\nW+l+dkRfR9t46on7fcTdeOIfHHWVJ9Lr+jpuwY5BIVJveJlb6dwRfR1t40FPP/wCN36Re2L3\nzRWRTj383HXr1k1+WcEzhEKk3nDem17wiVe8sa+jbTzHuTk3/iPnDnqwItItGz36OnhB7yhE\n6g3bbnnzW27d1tfR/B6pItJ5zh3w0PgwNyI0P/2WU875vY+ffdht29a9bOVfuEO/4x44mG/e\nfOryL7306Bff19d5FeRRiPQMYmPLWk2ItHTrT3fbMj7JjQktTz/S3bLM/c1Zn32Te3TfbR98\nh/vwe/nmxqVb3/0Rd+f/0//ZFyAKkXrD9LrSDkT6/Vcd/CkfbBDcemnmqZv809/oblvjvnHK\nm1+wcuXeDz+8zB3/AN/cuNbdudebCo92NAqResP0ulKOzG05++gVf+muX+82z9UWYkqhljzS\n/av9oc53t53hvnHyWz5B9510x7GOb3pCPnrT8qvn8YEKpkAhUm+YXlfKkbmbz3A/2msbEyld\niCmRJI80Hj3xylWHfsXd8qqzV33Y8S7otF2vjES69RXukYuqLdMhVzm+WRHpf33Tfa4E/HYw\nCpF6w/S6Uo7MXXK1c/v/SIjUtBCTPNJ49G//y915vNt4mPv5Cxzvgr6KM9K2N6447LPOPbXT\nTx3frIh0x/IjV/5zH5+woBmFSL1hel0p74PecpVz+/7khvXuybnmhZjkkcajJ19//LHL3cZz\n/St5F0RESvDFP5j/5yiYDwqRdjTGzUFrJtJnV7sfPt/95Vr3D3s0L8Tey3mk8ej9b3L/ujxQ\nkHZBGSK99dB/7/ETFHRAIVJvaIgHTCTS1nOP/r0vuV+8+PS3v6B5IXboVjnYxR90VyyVV/Iu\n6PZT+vsMBfNFIVJvqOtKt5x56Ev+bTyi9CiGB+6bPkN66sFreWn3zQNedtO+VzGReBf08O7r\ne/oEBfNHIVJvqOtKr3+92/i+8YjSoxgemEeG9GZe2l17UU8nW9AzCpF6Q11XeuEG51djlB7F\n8EBrhrRhKbjtxz927q49/9rf3jTxXDblU7cFOwyFSL2hriu9+BpHxPDpUQwPtGZI80T6y9/d\nf9/n38a378+E6SwmP6OgZxQi9YtP4C+3rHZfuNhLtw+5yoQHNDDHGydOIQXZ6fikV+7/CZcq\nTlf8xLmHXsyHPW3XK6sH7oHMLG26OFVL+7LqGeMRKyb4CQU7GoVIveErxy9fvnQ/vGfL2kNf\n/N2KSD49iuEBDczxxklysSI7He/39H88Z0uqOD3aP/1oPuxXV3sFBGZm6Ul8B+3LqmeMR6yY\n4CfU4Rd/41G1ACyrwF5QiNQbDrvr2HuvuCn3SGN6lDdOQiSRnY7Pce6FP0gVp2efcfVVq8/l\nV3kirXWYmaUn8R20LyMisWKCn1ADLf78KrKsAvtBIVJvONod7/x/NTSnR3maElGDiHyoBOmH\nqeJ0y82XvGUj55KISOscZmbpSXwH7cuISKyYkCdEMG1p8ef/RzfmHZUvCChE6g0nXff60QcO\nmPi0TRB141EuooZApKVbf7b71lRxettZp5x88sn8qttP8Q9gZpaexHfQvqx6xnjEiokGIhHV\n/P/oxryj8gUBhUi94Yn7nnj/xf846VnVUiqupniUi6hBiHTjKacdvKGmOF3+N9+owK96ePf1\n1QOYmaUn8R20L6ueMR6xYqITkTpE5QvaUYi0g0HrJQqlcRStWkpR3UMevO/P7GnW9nZCvJC0\nROoQlS9oRyFSb8hr7Wi9RKE0jqJVAzcn1zbIEOkjy9acccYZfZwmLyRp8ef/RzeSqHzB9ChE\n2j5wFJmSqPtmjVZpvUShNI6i5YmkSaTRL0444dIMkVbccluFPs74F/v6hSQt/vz/6EaIyr+w\n1C3NF4VI2wWJIhORXrE5+xS/XqJQGkfR8kTSJNLo0+e6L+1WP8rZ/Z7y1A8VTEAh0nxBmx+N\nIrt1605eek7Gw5HWSxRK4yhatZTK1D1oEmm0/lPuqQyRXrnqjeeff/5UJwgbM9FOkMihOmWV\nTVxBRq4siah+XbbrlaRUn+ptCgiFSPMFbX50z+42CtKnUUCNQmkcRauWUpm6B419jy7a4J7M\nEOmWjRsvOZUPnkpWOZxBhDGqINiYScqXRA7VKatsgo1cRSOxdGv1ECnV+/mCFhcKkeYL2vxE\nIjn33fdV+6D75newSKSr3+A+lyFSRG39RYxmwhhVEGzMhEgkcqhOWWUTbOQqGom1/iFSqs/v\nMyxuFCLNG37zg0RaUU0YX3jJ/I4VifTYMS9ev1d1Dy+/fnHCqvXPk5XZeBRWk7oW+45/LTGa\nCWNUQbAxi4YQRCSVTbCRq2ok/ObNK9ULpkch0nxBmx+NIld3HOrvXd7X4Xn5tWGd+8JuSqSw\nmtS1GD/VM5oJY1RBsDFTQ4jq/uqUVTbBRq6qkfCbN69UL5gehUgdkC2ko82PRpGrO157zoZr\ngq50+8HLr/W0YwpECqtJXYsRiNFMGKMKgo2ZGkJU91enrLIJNnJVjYTfvHmleoW5uTlvHLtX\nXx9n8ChEmoyOUeEt1735ko1bpj76prxzMS+/LvqUe3w3ESNUbJXVZNSrehCjmTANqqBGZIoI\nVan+1i8/9eTn3jL1x1msKERqRX5XMk9kCXP/6vz9vPy65g3uz3eTldl4FFaTUa+6nagTKSrV\nScc+zy3fIkQhUisadiXzg478GyF9U7GULcAT8PLrsWMOW7+HrMzGo7CajHrVzm8JaPEHQ5xw\n3qc2nHdMp6cWFCJNQH5X0gSOtEH1t2Y+v+2To0oYTN/44iKyAG/E9rRg3g4i/eLT6y+6egrb\n2EWOQqR2ZHclTZBEZ6z+1swnJUeVMJi+8UQ6p5Ut9YfCPVQq3oQtkbvK5529bqEjkfpt0j54\nFCK1Ir8rAfGN6ZQnic5Y/a2ZT0qOKmEwfcPlrny/oUzLeJ+b/BQRNjB3lc+kW+hIpH6btA8e\nhUityO9KQHxjOuXF+nCp/tY7KDmqhMH0DZe7dicSq8N5jvFx94O+7763zE45/ETgrvKZdAsd\nidRvk/bBoxBpHgDxjemUd21IdIbqb818UnI0EgnSN1zu6uaQILS/qsb7xZfX35vV4TzHeCJd\n9iH3p1fYKYefCNyNBPe6hY5E6rdJ++BRiFTD5uWvmzDWQHxjOuVpojNUf+sdlByNRMocHglC\n+6uKJa/OvDerw3mO8US651i36l475fATgbvKZ9ItxHdvdWztt0n74FGIVMODh026aIP4JumU\nV4cJUMjI1cP7okC5iQSh/dX4uLknMsdjdTjPMSSpeOH9y5IphwHcjQT3ugV9y/ZEc79N2geP\nQqQa1ux0QbApXbJl8699w73se8kzQHyTdMqrA4mUGbk6qpEgtL8aLzlxQ+Z4rA5n3hKR1r/2\n8mTKaUHQLdhEMwVPeFUJ9UglajcNCpFqeGCF2pS+5u47XvqBrQduz9Gw4XI1ckOUj0ewqPQ8\nkCC0vxqPfrLkB/XjsTqceUsvv+NXvpVMOc1Q3YJNNFPwhFeVcZNVonZToRCpBiIShxI+/rEr\nb1l9d71fyxTAhss+1C1RPh7BQCQkCO2vqkduOGnqt+vY89Immil4wqvKuMnqFrULiayuyanB\nohCpBiIShxL+5cxXPfqKD39me46GDZc9kSTKxyMYiNQPOve8NIlmDp7wqlI3WdNF7QqRnukT\nWHggInEowR11nFt7zHZVjGLDZU8k2VPxCO6dSF1hE80UPJFwiW6y0qgdbatYJcjbKelHGBap\nz8jnWDgoRKqBiMShBHf6Oe6q57c/HWPIGaEPNlz2yVchEo/g+RIpG7euH8oKiPA3m2im4ImE\nS3STlUbtOCZPKkHeTkk/wrBInc/nGBAKkbYTJhLXSCQ1PglE4hE8TyLl49b9jOXGTRbH5Ekl\nyNsp6UcYFql9vPkMoxBpO3HarldySI6lCbzQ2R5Tq0QZmxuhGrfmlVZ4JnQo+8XLj7xir+q1\nrETnn+E3fqwBcZNVM46lmDypBHk7Jf0IwyJ1nh93KChEmgxcE9XmnGrfwyE5libwQmd7TK06\nEEnj1rzSCs+EDmXXnOdu2K16LSvR+Wf4jR+biLRJO8fkSSXI2ynpRxgWqfP7tINBIdJ0yBGJ\nQ3IsTeCFjjW16lzKSvv5pPLhXSOa3kwHS41b80pL7sUOZRd+xj1GRCIlOv8Mv/FjE5EG/Tkm\nTypB3k5JP8KwSO34GYeKQqQMMDZFYxkXbwm8uxWF5FiawAsda2rVmUi0n08qH8Yjmt5MB0uN\nW/NKS+7FDmVv/jPv9VBRh3Zo/DP8xo+lqDGh3qQ996wCQSFSBhiborGMi7cEt58iITmWJvBC\nR4PIUF33BDRP5m1KrU8e7eeTyofxiKY308FS49a80gpnDR3KPnq+u7GJSPxY7TOnFKk3ac89\nq0BQiJQBxqZoLOPiLcHDu6/nkBxLE3iho0FkqK7D5sm8Tan3yfP7+aTyoRq6fnozzkAat+aV\nlgA7lD3y0lVX7NlAJH6s9pkpVBFKmpD1BV1QiJQBxqZoLOPirRNCEPk3YnUdNk/mbUqtTx7t\n55PKh4pIfnrLW2w1ThAP/oX71qqpHuNQRShpQtYXdEEhUgYYm6KxjIs3KknFKzZopwM0iPys\nWF2HzZN5m1Lrk0f7+aTyoeKKn95SInFKtkak8JRHjz/88K81fLr8YxyqCCVNyPoU6ZavU+H7\n4FGIlAHGpmgs4+KNSlLxig3aaeMj5GMTu8TqOmyezNuUrn3yMjnSplKiiY5Dc/Lz1kupRxp8\nZgpVhJIm0zI9QSFSDoVIGbQOCSpJNeu0qJ02PkIUm4jVddg8mbcpIPVuO5ucEPW0Xa9kH2MI\nWHTKCM/pz4SLHKoIJU3IekbshYvxeX7PYKlsp+XFhUVNJHu1jQK29murL0nFKzZqp9FHqKFl\nmEfbFqYTvrpaRi8ELFoywswuHvX8czyiHmmxodJZFKoIJU3IekbshYvxeX7PQCSZlhclCpEC\nOvd99CWpeMVG7TT6CLXEJtq2MHRibGH/242EViJBwKI5Iyzs4lHPP6WduWmoJMir7WIvXIzP\n83sGIsm0vCixeIjEWVbvegrZVR4CtGKprtCQ0mmBL0nFKzZqp28FH6GGlmEtno4AsrB/ZRuR\n2FkfAhbNGWFhF496/ilEig2Vnh1Oq6mkSXvhYnye3zOY/MvJLEosHiJxlnXj0q2YXWUi0Yql\nGliY0pkf0EcotAzrgM3LU0EOWdjv6x25JDRoPSRuP0Wc9SFgkc0IM5hdPOr5pxDJNFRqReyF\ni/F5fs9g8t/oALMIsIiIRFnWjWuNNI6JRCuWamBBSqfTEdMJo9NkMx5ha2Tenz94WPossrA/\nwDty8bor8ZB4ePf17KwPAYtsRpjB7OJRzz/HI+qRFhsq7cL9AOkHxjEC7tg79MLF+Dy/ZzD5\nb3SAWQRYRESiLGs1CjC7yosSWrH4vo8xpdPpiPOK9wYiMUF4f75mpws4HnDZ+9zl7/TPIgv7\nP/OOXBy5mNZDwm50mF086vnneEQ90mJDpV24HyDHFCCOEQ7ReQu5SLGIiERZ1mrMYHaVFyW0\nYqmu0PmUTqONIqtqeNSJOSpOM/EKb181wtbIvD9/YIXEA5469J7lT9PTvBkWOXJhrXpnD4nO\n3g1wWjQf0w+MY4THtQZKuV6AWEREoixrNSwxu8qLElqxVFfobEqn+VLMqhoedWKOitNMvMLb\nV42wNTLvzysicTzAffFZX6FnkRnWhd6RC2vVe/CQaPww3A+Qfpg4hkBroCLXCwCLiEhTLcS2\n/fjHcqu6FIPZB2/65YikqmEicSH2CKeZeIVPzgNbI/P+vCKSRNuu3eM6ehaZYS3xjlxYq97F\nQ2KekH6A9APjGAFaA6VcL0AUImXxl7+7/77Pv41uViMIzD540y9HJFUNX765EHuE00y8wifn\nga2ReX9eEYnjAY+86IcHPeKftUMt7OuL1bnQD7D68V//GeMYAVoDpVwvQCweIk2FFT9x7qEX\n081qBIHZB2/6+UmsquHLt5ij4jQTr/Dm0NdmAsQVkTge8Ibr/ObNtVjYf3Dlyt/+QOwECBNk\nZ2QWq3MNtyO0Bkq5XoAoRMriaP1BJbDR7IM3/fwkLgDiy7eYo+I0E67wdtt1155/HX/RMVvz\n9GqxsL/vRY9pzSFOkLD0tE2TqIE0/0aRAl2sRnHtnNHO5aA1UMr1AkQhUhZnn3H1VavPpZvV\npRjMPmTT3xPCmK17et121iknn3xy7jVbVt4R62dxgoSlp22aRI/ybxQp0MUqiGuNdq5gehQi\nZXHvzZe8ZePW+77mrlr3td3Xg9mHbPpT5FKxt15aEyxwYILFSijW1jlCZ4Tlf/ONCrlTe9s7\nQdKHEyQsPW3TJIIEs32kQBerKK5F7VzB9ChEyuJQuoyvvPMfDv/cUfM/Sk2wIOpOEiuhWFvn\nCJ0RGvun//3RW0HShxMkLj1t0yQPCYD4SIEuVlFci9o56N80/w+/yFCIlMWpB69dt27dMe5N\nN7sjuzw/1OJYQ8Y1O11gNypCJBIroVhb5widET6ybM0ZZ5yReadV+69c+XaV9OEEiUtP2zTJ\ng3+jSIEuVlFci9q5jgHOiVWEiwmFSFncTBY6L/nwXo9/c3n2CdWqzdSXjnDXEQwZH1jh7EZF\nZNIkVkKxts4RWnqx4pbbKtTfdxO+p30Il562aZIH/0aRgofDYhXFtaidUyOUd43aXFAKkQCF\nSHlQu7p/e/dd7to7so8nq7ZQi2MNGSsi2Y2KyKRJrIRibZ0jtPTi7PxpYVRiXlK/WBeeLtvg\ndzVCCRb5dRcU3OFVjPtXmI8XJwqRsuB2dRRs+Bf/O4SWebRQf8xqBL2HO/D9zxHuOoL9VUUk\nu1ERmTSJlVCsrXOEll68ctUbzz//fPBV4bc9bdcrqze9Z/6dVDoZLKgRSrDIr7ug4A6vYhzO\nx4sTi5xIoRtyOq64XV0MNkBomUcL9X6pRpB04Fs1wl0HEMluVBhdGPBeWluCrwq/re+wtHTr\ndJ1UdMLAhJHvg2GzTe8aqdZ2nzVihBIs8usFS7jDqxiH8/HixCInUhjV6aBkhU4MNkBomUcL\nE2lt6MB32Ah3HUAku1HBt2wHhw3BV4Xf1hNprYNOKrWeEXXohIEJI08km20K27x3f8S9e28x\nQgkW+XUi4Q7Ph+FhPl6cWDRE4uQNr85igUM1nmhjnTrgsEInBhsgtMyjhYm0LjQOO6TvwlAO\nG4KvCr+tJ9I6B51UYs8IXoeODlxWberwZ5wwMGHkiWSzTWGbd+deb3p7MEIJFvl1huAOr3oU\n5+PFiUVDJE7e8OosFjhU44k21qkDDit0YrABQss5Il37f/x18ztHbOrup89hQ/BV4bf1Pf/W\nOeikEjO+tA5ddsK2ew51fwc/XZwwMGFELc5MtkktFzpVN+IOr3oxzseLE4uHSJS84dVZLHCo\nxhNtrK0DzkjAsTsPCC1nZyQW8zSWADLuX91KpG3Rf+dSOYUtaw/59VNpkN56Kr2t7/m3zkEn\nldgzgtahe1Sfb5+fvw1+ujhhYMKIiGSyTcFyYbJhJX3Skqu1WDxEYj9vTvxrgUM1nqgWwjrg\njAUcu+v8FnVVNUXdNEa8bNcrsTEFtqRwIVDIr7tVTiEjjkgQe0bQOvTZn3fuqG+fCz+JSBgS\n5NtEJM02jX9/nVouTDSszH7SRY/FQyRK3vDqLBY4VOOJaiGyDjif4Nhd8zFpm0WmpnQrqqo5\nJn4bB/s0Ruw3ONCYAltSuBAo5AOf5S6Qt1iz0wX0Bo0BCq1ApHXoKyvyrLr3XPjZ7cvJHZ33\nk0mvqHuCNrBTI81FhMVDJEre8OosFjiMR1wLkTrgfOX45cuX7ofVdVf6HwnTaJtFpqZ0K6qq\nOSZ+FkfdNEbsiQSNKbAlhbOlfIccttMKD6pUojegoZ6IYP19sQKRTvD3qnl1yaOXwc/mb4Si\n38wWdTaSKwDxhveTSa8o1Qa2NdJcjC7gi4dIU/1xD7vr2HuvuClW121avevq1atPSXbStM0i\nU1O6FVXVHBM/hYN9GiPmkJs2pjAtKWwp3+YH1zzgQUSiN6DTr8kpYgWinOBvH7XtzhXudvjZ\nDIp+C1uCIYtcAYg3vJ9MekWpNrCtkWYh0oAx3R/3aO/QeDxU133/tK9+9au3p3a8tNciU1N/\nK6qqQwSCom4aI+aQmzamwJYUrqmUryISvQGdfrXOQ8s5f59WIMoJrj9o+d0b1/mfzvHPRlD0\nW9gSiCRXAOLN/037yaRXlGoD8400eSE4FolepuHNYLFoiCToGJ096brXjz5wwHff59wl9/E9\nUS4UwQEub2pKt6KqOhCJgn0aI+aQmzamwJYUtTcIiVZPJP8GRKTqF7Sc8/dBBaJG/brG2Cn6\nzWwJzkZy4sQb3k8mvaJUG5hvpMkLwSDRw4Y3Q0chUhZP3PfE+y/+xxUbnfvCS/ieXG0SB7i8\nqSndiqpqjIk3ImlJYd8gJFo9kfwbWCKFpKpzW6gC0T8zRv04NGhMju+jaSGpQPfRb2FLcDaS\nEyfe8H4y6RWl2sB8I01eCAaJHja8GToGTaRJvvm2WAhx8BU+3OXTmU7KKJprk/LdGyYjaUlh\n3wCjCvoGFZHQcs4TKU6aMerHoUFjcszTQlKB7qPfwpbgbCREgsjLpCWxvRzwQjBI9LDhzdAx\naCJN8s23xUKI+/501bLLv/XaczZcI+sm11ib1NnUNKRrG4amfYOYaIU3qIiElnMUbNBJM0b9\nODRoTI55WshUoE/EJCLZywEvBINEDxveDB3DJtIE3/zWMXX/a39ly3VvvmTjFv61pTapGzSJ\n2TA07RvERCvggX0uRcs5f6A4acaoX8bkWKaFegV6K2pKjYkRG14IBokeNrwZOoZNpAm++c1j\n6vsfOvaF678OfquMqVcpIPtR8+yxb9bSEMuKb5C+dQPipBmjfhmTY5kWkgp0TqbSKjfXGqqu\nX5hMpEUY+GYMm0gTfPNzxUKMgy67xxm/VUnRTnkCKPtR8+yxb9ZSj2XZN4hvLaNdEqepnCBO\nmpdX///BSf5WxuRYpoWkAp2TqbTKDR7lfHz1NuLpu3stYSHSIDHJN98UC/2/z1qy5A9tBQL4\nrUqKdsoTQNmPmmePfbOWeizLvkF8ax7tIXHaLCe4+PQnNiy5Xn/tEp7kZCqtcoNHOR9f9QuS\nXpq2lnARYthEmubv/uVz/E9TgQB+q5KinfIEUPaj5tnUrKUey7JvEN+aR3tInFo5gfSa5cnp\npt1P/Ek8XBcicTKVVrmheIKPr/oFIZKpJSzIoRAp4FZ6sqlAgGynpI80hxoAACAASURBVGgb\nXx1KjWx1Acp+1Dx77Ju11GNZ9g3iW4uSSBKnqZyAes2+hSs/jnvBiD8wOpNETW39pDmZSqvc\nUDyBGiZtVGtrCRH5+uKIrCfzIDFoItXQxqw/W374oX/nTAXCvZrtDCnaphc3lBqh7EfNs8e+\nWUs9lmXfICZaebSHxGkqJ6Ap7CWx8oPuRGeSqKmtnx4nU2mVG4onUMOkjWptLWH9C51MpOHX\nXRQiBdxz87b/b/ctpgLhUEwwQQDOodsbXfJPC6VGSThg26SUPpyReW5MtPJoD4nTVE5AvWaP\nsa8wziRRU1tHoq3wQA2TNqoVRcNzXz7+/eQrSAv1J3oyDxYDIxK2AAdBTCgP4L97s6Bh6UOm\nAoGNE/ghU+SHbm90yddSIxsOmFwZGIlknxsTrZnRDvdRr9nH7CuMM0nU1NbfPNFWTAZMLBJ9\nSAr1J3oyT/NuM4WBEQlbgKMgRsoD+O+eFzR84j3u+3tsNRUIN0NW1BT5odsbXfK11MiGA7KV\ngUb+xtSuvQEkWnOjPdwXStLtK4wzSdTU2kNsqt1oBxl2aS4sfAVpof5ET+ZubzaDGBqRoAU4\nCmKkPID/7nVBgx9Mj7x86dIvhNoDqUDY/OBDImywLfSM25u/5GupkQ0HZPvuGfkbU7v2Bg7V\nSc2IJenmFehMEjW15pU6t3TdvZBhl+bCwleQFupP9GQeLIZGJFDHoCBGxJj8d68JGpoG08d3\nP+iA3T7Nt00LPeP25i/5WmpkwwHZvntG/sbUrr2BQ3VSG2IfpaZX1DS1oSw+ybo2RPYCyLAr\nNpIN0YekUH+iJ/NgMUgi1VsyBCLR370maKgGk6y3vmtaSR75hHP/cTDfNnV3xu3NX/K11MiG\nA7LFekb+xtSuvUFnhD5KuMgzEMkrhOVDWXySdW2I7AWQz1BsJCtfQVqoP9GTebAYJJHqLRmE\nSPx3r7mfVuND1lvYStK5NdX/t7x60ntmyyg4HHDwe3PKcJS/MbXBAawNaeOyudhHCRd5ExDK\n4pOsq4ns1fM/RCTNhbVjMeZtB0ak+aEaTLLewlaSzp14yB+dd+BJudEdLvDV8ErLKOZo9HE4\n4IEPH3/sVT9LX4zyN6Z2kgdqQurNNYd9lHLuLASKXobqbw8pi0+yriayV8//EJE0F5aeRoT/\nZsajxWcTWYjkiEhhvQWtJJ27ceLozmRh5+yW6+vLdjqzW8ESRDaS7ksBa3a6IHHE1z5KeXcW\nAkUvQ/W3c1oWn2RdNbKX5H8iAZuQedNCpEWJajDJemtCr2UdxiHvioaP1YPfpDFYjT55/nfe\nseykW576Yr5XWQKMbDTYQj6wInXEj32U8u4sHhS9DNXfzmlZfJJ11chekv9RAmaBrJOpr7kz\n+pBRiORIvSPrrWp39b/5VpINhrw6jEPeFQ0fqwd5DH5VZ6RDP0gj+61dTgIjG0n3pdC5zxPJ\nOuJLH6X2I/voZaj+7rB9SfI/SkCCnSs3GdbJ1Lc4O6MXIqVou5jqMA55VzR8rB7kMRiJlC3P\nk4GYDmmMbCTdl85yenfiiJ+vpE3go5eh+rsDkZL8TwjTMcxcWa1hkXUy9S3OzuiLi0jXLdn7\nL92TrznwwE1SfsS3E3sUSuKzWA5t5D64cuV/e7H6jmAnJM3P8hiMRMLKwBTpkMbIRtJ96RR5\nChMpaZI5GT56Gaq/oTyXf7IuDpHkf2yYLsyVX5JklFEj8dSnfXAXFQZLJLs44yjuw3s/8tAf\nuFv+2N2/p5Qf8e3EHoWS+FI9CjZyzt231+vVdwSJpPlZHoO3h4FvKgMZRFJpzVQNaXgEIxvZ\nXheBSBLu21OaZIYP2K09BJTnyiKVdHHhYR9g5/zPn4YdlA3ThbkyJKOMGomnvpTi1YkNvohi\nwEQykDjajWES+MqLpfyIbyf2KJTEZ7Ec2si5LSvfu059R5BImp/lMei3XAysDGQQSUNrpsYU\nVQORJn7AyYDyXFmkki4uPKwrt6YDhrkyJKOMGomnPu2DO/3ZzTAGS6TgwhsEMf6+9/5fJ7/k\nb6t/X/A7d0v5Ed9O7FEoZcJiObSRc297Z/Z9Wk4CKwMZRFJuzeSHtB7EHoaH6/HriEibvnEY\naNpVyD5K7BXGI2wW3ST4gfJckFY8FB5WU2T0a/hXKIAIFA/JqHbI1KtBdDV/GB4GT6SwBvF4\n73Gbv7+n1y18ff9tXH7EtxN7FCISi+XQRu7vj677300g0haoDGTQsbk1kx/SepDcYThJ5WsG\nQdOuQvZRYq9QbV2gWXST4AfKc1Va8dPdVKKnXq7o14AFEIFIIRnVDpl6NYiu5g/Dw+CJFNYg\nHp/5Y+cO/vGd9zm3D6kXlj7EtxN7FBrsLJZDG7lV+69c+XZ8C/KxCkVtesmNRU452Q8dW1oz\nVUM61MdJK1u9/NOhOUnlawZB065C9lFirzAeYbPohlI+B+W5skglXVxAhkhrTQFEIFJIRrX/\nEaQrogbR1fxheBgwkUD5IkT6wRFP/+h3t31orfv33bZy+RHfzr0+V0+XgHysQlGbXnLhFDLC\nCCKStGaqhnR06KJyCr3806E5SaUVGtILOuhvR4m9wniEzaK7dYJ16Yyqpsjo18BrQNM7CfpZ\nZ9sPBnBXRA2iq/nD8DBgIoHyJaxBPrHsoM+7/1xzwP5/LuVHfDuHUDvX0kCZfKxCUZtecg1A\n9pNHcOfhcgq9/NOhOUmlRJJe0AmRoD0ENovu1AmWvyf8TU2R0a9B1PLYOwn6WWfbDwpk6tUg\nupo/DA9DIpIxPQi+8Nk1SH1H0rTVaWugTD5Woagt1voBUPaTR9AbcDmFXv7p0EwJJZL0gk6I\nBO0hsFm0CH4o9JzzN2pARST+2tCvQdTy2Dvp4djPOtt+UCBTrwbRtZ1Fh1OZMQyISNb04Nq2\nIrImIqGpCcfA1NUkY/RAPlahqC3W+gFQ9pNH0BtwOYVe/unQTImJO/q6FAPTNhNaqXeH6Z3k\nYj/rbPvBxYcBEcmYHty1518rXZA24h9FW3umSjAD9ulRNDXhGJi6mmSMHsjHKhS1xVo/QJT9\n4AN4PkFvcOEpK3bZEC//dGgm0sQdfY1IPm0jhYrvG9X8jVzb6bTA9E6CftbZ9oOLDwMiUs0g\noYVItLVnqgQzYJ8eRVMTjoGpq8mU3VAYUfYzYeR2nDcgNbYNiymcwzt91kwKFWmjb/2NCNtB\nJGZ67GedbT+4+DAgIoHpAceQQoqS558nwAaet/ZMFTEDpvQomppwDCzGzLp3Q4mIsh9cH45H\nNYGbzhs268rnHJOrkBozxRTO4Z0+RimFikwk429E4DcLHV+3mAL7eaFDkHPYGBCRwPSAY0gh\nRcnzD9rAiwkKUUXMgCk9iqYmHANTV5PmzhUtiNYkuD6sZj8jcHNUWoh99kKEjM85JlchNWaK\nKZzDOz2RpFCRiWTcJFw8ndDx1RbYzwsdLfKGW4Q+ICIBOIYUUpQ8/6ANPG/tmSrBDNinR9HU\nhGNg6mpSM3rogmBN4sz6sCKSEbg5JtI59awrn3NMrkJqzBRTeMQ7KWvGhYoUes4RiScp6fhq\nC+x3JAqRZgC+DfgevAfgGFJIUfL8g4Vt7JTAVAlmwD492jfijgrXhxLsfgie2JB1leylJlch\nNZYWU8CdFOfjQkUKPeeIxHdJx1dbYE+QYHn9wtGNCrxo5JUsLxzDMnKozsUDItLmzZuf/Pt3\n0E2OIYUUJc8/HQvb7PYEhaGYvKcw+COPTDqlaE2C60MKdoPAzbm4grRZVz7nmFyF1BjPkFFp\nDXdOjPMpkaTja3OB/XyJxItGXsnK+lqWkUN1Lh4QkQin00+OIYUUJc8/WtjWDrs9QWEoJu83\nLv2X//HcX33+c8/0lnSJSxa8RbAmCSM31GBYgZtzcQVps658zjWf1O2v8BEiScdXsS/ziOJy\nkPvxhSRESrocnxeNvJKV9bUsI4fqXDwgIq2vsHYl3dyOGJLdnqAwFJP3G9cecYe7c/TUNf79\nEqsSGGpnuzy2e6vQVOEzHt16afeDZ54ZxeUg9+MLSYiUdDoyLRqlXCOurx+K5sZDw4CIdP31\n19/wV1ziM3WbhQi7PUFhKCbvN65b6tzWFdWl1lERDxZvw1Cz1iRkHEKPbieRqMLH9tmQELk/\n8PYRScXlIPfjC0mIlHQ6Mi0aeSWr62taRg41ZzsgIm0//HrJbk9QGIrJ+43rznzdJ0++yL3e\nLyUfWGGLt+NQs9YkNHP1EbeioLbtsyEhcl/Y1NY1fSKilA/kfnwhCZGS+OTGiITbhRaNvJKV\naI4sI4easx0QkT64xMft6vd3MzNwsl6y2xMUhmLyfuO6zddddstW9zUfMaiIZIq3YagZHS0Z\nh6Rxq2qaSvZYk+0XiEi2z4aEyJlI2a7p3RCJBHI/vpCESEn9NRkidVYFDwUDItKqn0/3fFoN\ncVRWBaptz69tvELUriKSKd6OQ8bqaKkoLo1bVdOU3WN1MDggItk+GxIiJxplu6ZPKQQaj0Du\nxxeSECmRZ5KNSy0iIS6ZhUgzjNc13G/NDGJd2sVUB01RWRWotsFuvO6NUbuKIKZ4Ow4Z2zxM\niBTGOJ9JNU3pHouGJdkvQLfB7CfSNilh4EuInIiU7Zre+0AmG5daREJdMhcbBkSkUw8/VxtV\nIqyZQaxL20B10BSVVYFqd0DUriKIKd6OQ9bqaIVIYYzzmVR36h6LhiUVu0K3wcx7U5rV9tmQ\nEDkv7dSWAUpY0yVluh6b02PX78uCvZbSiIS6ZC42DIhITaaj1swA6tKoDprjtEGgypCAGMxg\nfsVC+VhqveyfA1G7ZtjmYUKkELfiM2EiQV0sEQm6DXb56JuifSsFG4ItA5SwpkvK7SeSL5qv\nRSTUJXOxYTBEauy0lZgZxLq011MdNEVlVaDKkIAYzGDVioXzsdR62T8HonbNsM3DhEghbsVn\nwkSCulgiEnQb7IDGbRWUsPKS8nkrqikKNjZYjCH9X0dpgUYDiEi1iIS6ZBJ8Wiv/6sDXzpGg\nhY7BEKm505Y1M4h1aadSHTRFZVWgyq+QgBjMYNWKhfOx1HrZPweidvM9YzoTJhLUxZL9AnQb\npGHPu7xqXrwCgiPqEldztVPEElZeUtIUBRsbLMYIREoLNBpARKpFJNQlU776plcPLvYwGCI1\nd9qyZgZQl8YPZo4Ua4+gDonzsdR6WTBZa9cKPhMmEtTFkv0CdBukYS+7vGp/D8ERdYmrudoF\nQAkrLynP8FMUbGywGCMQKS3QaPqWOsBPwLBPo2tC2LIFFSuuoGcYgyFSc6etKd0bnIPaI6hD\n4nwstV72gKjdPMpNpwANe9nlrTXBEXWJq7naBUAJqywp/RQFGxssxpCO5KNagcb2EQn2aXRN\nUAMyUbHiCnq+39ECwGCI1Nhpy7s3tKJWvw21R1CHxPlYar3sAVG7diLl5OQasugAGva6y8Pg\niLrE1V3tmkBTFGxssBhDOpKPMt0uQCyRrB3b4YmEVkP+mqAGZKJixRV01+MuQAyHSPNGrX47\n/zTJx4bWyxC1s3Xb6EHkkZOTa8jCIivppmGvuzwMjqhLXM3VDtPMfFu0eDRFwcYGizGkI/ko\nLdBwpoeFNFjrVuBIIcS4T6NrgjEgeyhUSc28lnVARGqSCE1CrX47/zTOx2rrZYja2bpt9CDy\nT8zJyTVkYZAPvtGw110eBkfUJa7maoc7Kb7d5AXeDSCWkAZr3YkE+zS6JoABGalYcWqcYQyI\nSDWJUPXnubQuZYuQCaBWv90JELWzddvoQeSfmJOTh5CFtQFWSXdo5JV522nKgbAQqMkLvNs7\ngFhC2tlknFoy8QJPJNin0TUhbNmCihWnxhnGgIhUo4ufnWpStogwAdTqt6fBz1xat40l4/4Z\nOTl5CFlYG+Ao6ZZGXpn3m6ocCAqBOnuB54kUxRJCpIxTi66Lt6174YFfdk+vOeqI6lL1T3t9\ntPv7zDAGRCQjEeJ84niEUjbt9cDbmKBRrdVvT4P9XFq3jSXjHjk5eQhZWBvgKOle29hNohtw\nJ8W3wQscwiog6dOkVJ5IKpYQImWcWnRd/PmT3b0vdOPXu4f3dE8feV4h0ozBSIQ4nzgeoZRN\nez3wNmYqaV0NH2U8x6V121gy3ggJWVgb4CjpXte9m0QWuJPi21CuDmEVkPRpUqrTAM85tei6\n+BePuMef6758irvvELf1iT8hIgUFQ+M6e9YxICJJC/Hv0m3OJwYi6YUeN8zbR6S9zvsTj2fr\nHdNcYUPIwtoAR0n3uu7dJLLvXPeWBUBYBSR9mpSagkjWqQXXxVe81blXLdnF21X8iZmRmtbZ\nM48BEUlaiB9K7tycTwxE0gs9bpi3j0j/eCRVte+nd8xnqWJtgKOke52rGZ60YEoiYVglSvo0\nKWWfT+GazIlnnFpgXfzJ4592nzt92/f22xqIFNIC1Tq7B1/XBYgBEUlaiJ968Npqq8T5xEAk\nvdDjhnlim4d2PH2TH3F39XPuhHwDTEwuheA+aG24vo7GZlPf2AQYVomSPk1Kpecwjznk2hOe\ndO7iDc4d9KNIJF5PV3+MHnxdFyAGRCRpIX4zbZU4nxiIpBd63DB3sH9rRe+75SyRTHIpEAm0\nNlRfx2OzY65Iwir7+Onjjl/51nh03K78nYTANCfWeAahcA0KMUwGKW8K9u+H+Mn6k290P5vb\nAkSi9XT1x/jl+br+MjEgIoUW4tumUJrQRVzbd/96DGKlIh5pk3KfdQu6+PJpTrA5i6mdZGVu\ngRlHk0tY1wBaG6qv47E5VaRPCVqnrzSPpRmELkUoxMAP0VC+ccWzdtlvv0f/87WrVmxyd+33\n7Ofs97Po8+rX2XVf1wFgQESSFuLRJwHFYU/ku9JzWUFo3w1BrFTEI21SrFvQ+NVTnWAzkVTI\nKXMLzDiaXMK6BtDaUDWDjM2OkT66eihB/bvab0e+j3PZ6Lga+iLEoNdxKpafMsHkIsIQqdnX\ndZYxICJ9933OXXIf+CRgrLuhKz1dxLV9NwSxUhGPtEkxbkHUCSYDDvUasRKMQZ5zZIb7W97W\nqJBT5haYcTS5hHUNoLUhIvHY7Brpo6uHEtS/q/12tAtzIJIIMeh1nIrV1ucCTdFRZkpqJ3Am\nBSJNyAzMKAZEpBUbnfvCS8AnAWPdTV3p/UU8DhyoS4W6Iw9pk2LcgqgTTCMMkWAM8pwjM5xs\na1TIKXMLzDiaXAp1Df48QWtDROKx2TXSR1cPJah/V/vtaBdmJRILMeh1nIpNiaQpOprUpXai\nY4XgMDAgIh3qfywHnwSMdTd0paeLeBw4MYildUcB3CbFugX9ZMkPWFtdXZC/TRONXJD5Kgzi\nMxiDPOfIDCfbGhVyytwCM44ml0JdQw8dYf3VQwnq39V+O9qFWYkkQgz/Or6brz1ApLWYmZLa\niUyF4HAxICK99pwN16w+F3wSMNbd0JWeLuJx4MS6VK07CuA2KYlb0A0nsba6uiDzRCMXZL4K\nY1FGHIM858gMJ9saFXKe9FaaW2DG0eRSqGvABSJ2TwnAEgoTItFG0nT1UIJ6IjV8OwoWYtDr\n+EPwtScmEDRFR5O61E5kKgSHiwERact1b75k4xbnA2k/oFZHGOueuit9qDtqQTVeNrG2urog\n80QjF2S+CkNRBoxB2WvzDNdhW4Nk8VzABSJ2T9GzghIKEyLRRtJ09VCCeiJN+HZEiEGv4w/B\n156YQNAUHU3qUjuRqRAcLgZEJMHFpz+xYcn123sUrTvymJub263CXslzxqP7V7O22l+QOXDG\nF2S+CkNRBoxB2WvzDAfbGtqfa12gj39LVA3I4rmAC0TsnqJnBSUUJkQyZSPpBO0iOU3R0aQu\ntROZCsHhYsaJtCmzZbhp9xN7z1K89ctPPfm5t8TfZS902q5nkra6OgmZaPiCzFfh6YoyaH8e\nBAAU/5aoGpDFcwEXiNg9JQBLKEyIZPs2V4MVyfWE2SbS/avT4eGt7Y57Qc7ezoIXTJw/6eCg\nQLHhl8TfZS/01dWsra5OQiYaviDzVXi6ogzanwcBAMW/JaoGZPEfFheI2D0lAEsoTIhkEpHi\nmth+SWqt3EmCNLkFwDAx20Q6bdcree9dbR7ezm5S43c32NtZ8IKJ8ycNDgqIE8771Ibzjom/\ny16oIlJ/OiEyfpV0CzuecFQNyBKJhCUSlrBYQmFCJJZIYbjHD1BfE+Oq8oEVrosEKS920HVh\nTUYxGNbNNpF8D2Pae1ebB05tOFF/TwIvmDh/EpKvYMXI1+I4Vf3i0+svuvoxeD3vhfokkt+f\nnzA+6VTiCcW/JaoGZEknlYYivGkAT6+tiXFVWREpSJB4irrsfe7yd8Jejr+yvFelrgvzutwh\nYPaJRHvvavMQiMTq70mv5AWT5E8k+QpWjHwthqkqFfDxXuj2U1y904V9n1HzbxbV/vyw/xFm\nJIp/1zz5659iHkSS5u9Bmzoe8eUitybGVaVPJ4kEiaeopw69Z/nTuJejryzvVanFE1FOKJH5\n90l0hTtdzzBmn0jrxNVGPExE/T3plbxgkvyJJF/BipGvxVEnZBsdubAXenj39fVOF/Z9akSq\nZ4CarYf9ruQjHS/hRHWZsjY1CLP9ndL8PRKJLxfjcd3yGVeVFZFCrF6ihF981lfMXo6+srxX\npRZPRDmhROZDdIWd1WcYs02kakZQInGOUPCJSRdmXjBJ/kSSr2DFKI4hqhOyjY4Q9U4X9n2C\nnlsuyO7iV9cyQM3Ww+27EuPRzFRnIlUblexeJd55OhApXC5Eq1j7ktRaOcTqJUp47R7Xmb0c\nfWV5r0otnohyQonMa3SFnNVnGLNNpGpGUCJxjtC5rxy/fPnS/SYSCR+W5CtYMfK1OOqEbKMj\nRKbThX0fJoZekF9dzwA1Ww/TroSCZWqb/+5Tl+9Ma7HEo5mpzqGXamar/uNJj3d+oNaW5u/j\nUbAoDpcL0So2fUkRPEU98qIfHvQI7uXoK6t5VRK0eCLKCSUyH9ay4qw+u5htIuVw2F3H3nvF\nTS7UBvAaCe1PaVDhGAnJV7Bi5Gtx1AnZRkeIeqcLg0AMoc9xc0/UM0At1sN+V0LTktrmV//J\n1s16NDPVOfRSHccfiiY93vmByFSav49HwaI4XC5Eq2hOPvsN8xT1huvc1W/AvRx9ZTWvSoIW\nT0Q5oUTmA5HEWX12MTwiHe2TPr64Bz2C0f40RCXaIENIdUK20RGi3ukiORATQ+iz5MQN9QxQ\ns/Uw7UpoWlLb/Oq/rE8rU51DL0IkmvR4G5Oqtf2JBYvicLkQreJ80bYE0OIJTyQTmQ9EEmf1\n2cXwiHTSda8ffeAAF2oDxGIX7E+7EynqhJpaxkxEIEa4IP9kyYO1DFCz9TDvSkgAGuYp/4Cs\nxYxHM1NdbV08kXifR9sYUGvLq950uKZw5HIhWkVEU9Ci+SubL2qdrmcNwyPSE/c98f6L/9GF\n2gDdQ6muJoT3uqO5ZYzLpvJh8AVihAuyu+Ekub/zu9O0pPOU/ySyFjMezfd9zV217l/U1sVP\nbrLP89sYUGvvS4tB6NFhZIVml9cUtNgBsJ2uZxDDI5Lb/OBDW/xIRY9g1NWY8F43NLWMcdlU\nfpfBNwWRaFrSecp/ElmLGRXpyjv/4fDPHaW2Ln5y430ebWNArf2KzXIC41Fw7eYjSJQG0tIc\ntJhHO5dFiMEQSWeBj+9+0AG7fdqF2gAkEo/GEN6bBny91195bAXvgzgiE7+SHQVZixmP5mPc\nm252R+Kzslxdt+7kpef4V3kiBddufkiiNJCW5iUiVux72A97c4gitmPz8tdZUdI82oYsaAyF\nSHEW8MaN/9G1i1eTlVy6WuPrvf7KYyt4H8QRmfiV1I+caHyamxW3IazFjEfzSz681+PfnBxz\n2yhgIolrNz8kURpISzORsGKfDmEbPmkUsRUgHi9EWmjAmHacBdZUj2xRe5/RqKnZOWGylRwj\nud7z2AreB3FEJn4l9ferEanbJ20A6pb+7d13uWvv6PAiiZsQkcQjlR+QKA2kpZlIWLFPt2zD\np2wU0dKk+phrdrog9EsPlfjDwiwTCWPacRY48ZA/Ou/AkwJ1csoXQruVXCq8TK73knkV74M4\nIhO/EgN6A06YgkeqjK6pGBVWsaBbutS1Xi/gtSFuUieSRGkgLc1BC6zY96g3fKpHEWtEemCF\nC/3SQyX+sDDTRIKYdpwFbsxRpz6u263kUuFlcr3nsRW8D+KITPxKDOgNOGEKHqkyum6agkg6\nYYJu6VbXcL2oIcRN6kS67axTTj75ZExLc9ACK/Y96g2fbBQRnV/C5YqJFGyLhuiHMtNEgph2\nfhbwkGBUinYruZrw0qq/eWwF74M4IhO/EgN6A06YgkeqjK5rTnrl/p8wg098g2Vjj/Oj2jIa\n3dLBV9w71ZdX7/W+/G++UWHyK+sNn2wUEZ1ftFMMESnYFg3RD2X2iaSrkIbKbglGpWi3kkuF\nlzX1dyNC9MBGEbxa9RpnvcE2cuiMRtd4v6f/4zlbcPCJa6Vs7HF+VH2C0S3d96erll3+rUln\nNxfOK9Prff6WDjaKiM4v2imGiBRsi4bohzL7RNJVSENltwSjUrRbyaXCy2b1dzd4RZt/A/QG\nEyLR6BpXM9ULf4CDT4gkG3ucH5VIqW7p/tdO/Gu2bfE/smzNGWecMY8Pl0QR0flFO8UQkUKB\n1RD9UGaZSN0gwagUaiUn0gNrJZcKL636O9M/XdXZ7xpxjVrwA9JdAr0BeoMJkWh0kZznhzj4\nxP41dMOD+VGJJJsaxvc/dOwL13/d31L7YD4RjWx8U7yDYyXdb4edGYUvVtxyW4X2L7M91sbr\nX3R+yXeKGSKGSSR035Zg1PbBqr9r/dOdU3X2eMQ1aqFirVs/yfHSrT/bfSsOPrF/FSLh/Ki2\njGZTc9Bl98gttQ/mE9HIRugGGivpdpaz4vDF2R2+h1YiyfoXnV/C5WrykWedbMMkEoP/6vPW\nmyLsKirj8Kbq7PGIa9RCxVq3fpI3nnLawRvM4BP7VyESzo9qnyVikAAAIABJREFUy9iwqVH7\nYD4RjWyEbqCxkm5nyexw+OKVq954/vnrwvz17VhyIkGOidmf7Vr/FiItGJBiJ6ykwl8d9Ka2\nH2RWUoApXitEMzDaHIauvcYjrlEL9QG5fpI9ATY1aGGp9sF8IhrZCN1AYyXdzpLZ4cUibXE+\nFuYvLDnhOWxi9ofWv0uyn5QT0fE7R4+LJxqbqc8SBkQkUuyElZT+1aPetL2xKgFTvEaIJo4h\nglvqthC69hqPuEZNjbXadgmTBEL8sqYxZjY10cJS7YP5RDSyEbqBxkq6nSWzA3VKOn9hyQnP\nYTyj2YD8QbE1m6x/j2shEvwOHhdTNFNfwBgQkUixE1ZSkPPjZufVeIRczThICuxQwBSvEaKJ\nYwjCZq107TUecY1aGLDddwkZtBPJbGqihaXaB/OJaGQjdAONlXS/JZkdJhJdLH4rzF9YcsKv\n4BnNBuShNZtz3/Hr35tCZbIQjgveWdERvvObT937NdHjYopm6gsYAyISKXbCSirm/KTZuc3V\nqKTADgVM8dq0v8fp4UZDjlfQVKMGzbdCm83xCIzh/OMfsl1imPth/IWxGRxPaVNzvhw9tbBs\nORF9cH/J7HD4gi4WK8P8hSUn/LXwjGYD8tCaTRwFtTJZCCftOkjREb7zjUs/Cx4XO3Dx+0vE\ngIhEip2wkoo5P2l2Xv2JIVejkoKHzVDAFK8hkjiGCBpyvIKmGjVovhXabI5HYAznH3+H7RLD\n3NfxJ2MzeAuZFWbNwnJCsZx/8ArJ7EBb6uPD/IUlJ/y18IxmA/LYmo0dBY8LlclCOGnXcQ43\nWwpuL+hxMYwQ+YCIRIqdsJKKOb+jww/M1aikwHTpMyleQyRxDBE05HgnAJpvhTab4xEYw/nH\nky4xzH0dfzI2tekylzAC8iKpjtCLhS04SpzRbUAeW7Oxo+CFoTJZnqftOohIQUmOHhfbtfhd\nMBgQkRoQmp2bXI1KCuxQ6Ih8jrd9Q+McNN8KbTbHIzCG84+fZ7vEMPd1/AVqi+OplDAy2peb\nXaAXC1twlFQb2YA8tmZjnBMqkwORQrsOIlI3O/9ZxICJdOulNKil2bnN1aikIDMUMm0Z3PN8\ncHmPoGbI53gnEQmab4U2m+MRGMP5x4+zXWKY+zr+ZGwGx1NTwti+3JwKtuAo61mUBXH5uaEy\nORAptOsgIuUtzIeAARNJBnWSkI0ZJPTHMYnGTKuyi7705OO3XsK3tVbwxi6RgXgMaL4V2myO\nR2AM5x9/v+0Sw9zX8SdjMziemhLG+S03ESp8sgVHaVvqZmS5POtLtq4YCJHs4I1Fe3UDIP3D\nmjpYm7Gvtyqj4JcU9mmt4LhLZGC6zzHVsDMljA2Swimwb6gUsQVHtbbUjS5dWS63fiJ5sLPl\n1wLGQIhkB28s2qsbAPl7g2sJ0y+RvmRblR33xg2fOi9emMWoqEtkIHu6mdHFvQdzw65RlmNK\nGJskhXEZlTsO+ieIvVBacFRrS93o0jU9l/ntf1mWXzsUAyGSHbyxaK/+TH9vcC1h+iXSl2yr\nssc3rL/omsfDb8GoqFNkIIf6idV7Dyqa9W0h1dyGrkRSe6EauNqo5tJVa4JU53LyMTfpkiH8\ny6vh6mBdTDsXNgZCJDt4Y9Fe/Zn+3uBawvSrFT7HVmWxLtZUyMouf9wlMiBDzRa8osjCdyqH\n3oP8xOrOL/lpk2fLhg6dmmoO0P4w0NGZj8rHwbGfihLVXiiFVBvVXLpqTZDqQRr7/ftrhSwZ\nNFtLq+HqYIVICwR28Maivfoz6V5xLWH61QqftVVZrIu1FbKyyx93iQyIrMwWvKLIwncqh96D\n8sSlW2na5NnSxqE1KKCp5gDtDwMdnfmofBwc+zVRYqatC6Lm0lVrgoRBGo7D2EYG/lohSwbN\n1tJquBBp4cAO3li0V3+mvze4ljD9aoXP2qos1gXYCgHZ5f+PTpEBHmq24BVFFhupGkJ7D8oT\n13L+lmdLG4fWaihNNetbhf4w0NGZj8rHwbFfFyXW27og6i5daRMkDNJwHMY2MvAfUf5AJlv7\nw+qB6W2kFxoGQqTu8EQKriVMv3rhc9h7xLpYWyEru/wO7lcuqCVswSuKLHgTo70Ho0zUT5s8\nW9o4tFZDaaoZ3goNz8ElQsq/YezXRYn1ti6ImktX2gTJBGk4DmMbGeSIRKvh6mDzsJFeYBg+\nkULiqPsFT/cesS62uT/SRPBQswWvKLJgImnvQZWJ0rTJs6WNQ2s1lKaa4a3Q8BxcIvg4OPbr\nosTY1qUe9pCEF7p0pU2QjIMgx2FsI4MMkXg1XB1sPjbSCwuLgUj8b3ci6d4j1sV+p7E/0kTw\nKLIFryiy4FGrvQdVJkrTJs+WNg4tWtWMh6z2h9kYOzqj4BTHfl2UGNu65Ig03YfmOIxtZHB7\nPhXAuPXSzcszhcezg4ESiaqMYl42UyVdL/PTe2p7DwzkTcSOW+qHtmccQWz0kJ0vYqMA9IPl\nQIG3E7s8lG90AMdhbCMD0JjnAO7gs4iBEomKFGJeNlMl3UIk3XtEtyAN5E1GK5HCg/VS98lu\n+sH1KkYQt9XcxbdHkBMbBRg/WAoU+Oa3E1pDdz+PnJBhPFqz0wWaD/i2D9xP/wmeScw4kWp/\nE7mDihRiXtaHpnbOKeNk0hKVnGRqvhv2HtEt6OaN63/vmBcGl4ElWzb/2jfcy76410erh0YH\nLrsj/ES3XpoU06xlJNL8P7NGEDOuldtz3NgowPjBUqDAN791Wr4xGW3nkRUyjEe+z2zIB1Dg\nfvpP8ExitolU+5voHb5IIeZlfWhq55wyTiYtUclJpuZlB77uM6R3xkU7ugy85u47XvqBrQcc\neV5FpL87Yds9h8pP49ZLkyJmbpBl/qSgyJ388KDpUuuH1giijclT+rVZMjsZsVFA4gfribTk\nxA0ulG+0Ya7hNiCqIuAkiUiaD6DA/WxhpogEMhXN8Wk2nx5UX2xfpBDzsj40tXNOGSeTlqjk\nQqZm690fPnpvZ92C+MrMf+qPf+zKW1bf/YdP/ElFpLdVR9vn5/zTuPXSpIiZG2SZPykocic/\nPGi61PotaATRxuTpKt4smd3LF4LsuerrzceNjQISP1gqgPjJkh+E8o02dCBSVEXASRKRNB9A\ngfvZwkwRCWQqMccXsvn0oPrh+CKFmJf1oanfzinjZNISlZxkar7xgdWvWOsjzVjLvRFcBv7l\nzFc9+ooPf8Z5Ip37eeeO+jb/NG69XHoLmRtkmT8pKHInPzxoutQKjSDamDxdxZsls++88bHH\nb3jXt47o8j0nfrBEJHfDSaF8g4GOWqj+zSqBEVEVASdJRNJ8AAXuu5zpwsFMEQlkKjHHF7L5\n9OBXm4XEWWWcTFqikpNMza+99JZHXdpzCF0G3FHHubXHPKBEWnUv/zRuvTQpYuYGWUaqi1jk\nTu5D0HSp9VvQCKJ1raSreLNklqIIq9xhGmWO25jGKobGnY6vmcS1Lqp/s0pgRFRFwEkSkTQf\nQIH71i9hwWGmiAQylZjjC9l8erCNSDllHF91g0pOMjWb77jyVced4251KANHlwF3+jnuquc7\nItJl1cBd8ij/NG69NCli5gZZRkSKRe5EJGi61PotaATRdnKhq3hNMqs44Q2f+bPzj/z8yzXK\nnC/Msl9Zc8ggGLbyBIjq3wYlcERURbQJ5GcNM0UkkKlojk+z+fRgS9KvS0BLKgbu/tiZR/nK\n00nZI0+k24/aducK+dkOYtl4pKXuUORORIKmS63HeU9YcNpOLnQVr0lmPWjGefzqC9/8sUce\nfEyjzByqdM4ljcs5kEkxD8oe0e98p5YE+06DuNZF9W+DEpjhA/ZRFVGI9AwBZCqa49NsPj3Y\nkvTrQCTJ1Cx5zce5gXl79uiu/Z79nP1+5tYftPxuJz8nI3sWbTkkaMkpUXSkd4dOLsmMo1Fm\nDlU6lzYu5x0nxTwoe0S/S3QzBD7HSiSeAFH926AEJnRvMzVzmCki5UEXTxtQ5SssxveCl+pU\nuDlfoTO/Mww6i65RbgG05JTaH6W3dHKhQ7FonKcM/qmNZpZRJDMklzXKzKFK59LG5bzjpJgH\nZY/od4luhsBnJBJPgKj+bVICe2xvm6kFjAEQiS6eNqDKV1iM7wUv1elQlw7M/wyDziIT5Zbi\nd2BEZNvrY0tOqf1ReksnFzoUv0yqF+inNprhfWNILmuUmUOVzqWNy0Vq7mMelD2i3yG6+ZD0\ndZrPF2ED9oPCAIhEF08bUOUrLMb3gpcqwUeuuhhuTLESEbHDP2drWY0reSbKLcXvwIjItj+I\nLTmx9odGPvOcDiVE4uoF+qmNZphIIbmsUWYOVTqXNi7nHSfFPCh7RL9rdJMDny1EamVYXURv\njzTDJUkDIBIbL5qAqmyBIb5nOjU/eFg3w424EsHduKqM0K+AxQ4HZj0VrSt5Jsotxe/AiMg2\naMkpRFIryMBzfyguY5LqBfqpn56JFJLLGmXmUKVzsWvoxuNGtz5LdpwU86DsEf3+PzklFwKf\n8yVS2qyzEGkhgS6eNqDKV1iM70luhzcqa3a6QENVFS3eA12RjDgurkRwN64qI/QrYLHD6/Ke\nisaVPBPlluJ3YERk21WxJacQSe3jhOd0KC5jkuoF+qmfniOZmVY0NUzsK9il8x4FA/lyUHOZ\nEI9BCKDEtiAT+5gtbAyASHTxtAFVvsJifE9yOzxjVFflGKpauhW7IhmKxJUI7sZVZYR+BSJ2\nyHsqGlfyTJRbit+BEW05JbWPE57TobiMSaoX6Kd+eh/JtMnlCBudUasyiI5EbOpGJAoGMpGS\nmVk9BiGAEtuCTOxjtrAxACJNA54xmEiqzsGuSIYicSWCu3FVGRm/AhY7NHoqtkKK34ERbTkl\ntY/L7TjiT4NbXb54yUZn1KoMoiOKju5zHAxkIqUzc/AYvDAGUGJbkJYU7ixgkRGJZwwmkpID\nuyJlKOKBu3FVGZlnsdihyVMxg6yNXZdwmNrH5XYc8ecE8CrLRmfUqgyiIwpdDMc5K/cZOBgo\nZiZZt+NPsAglavNbU7izgkVGJJ4xKiJhqAq7IhmKxMK+WBU+F1VGNbopQi1rGzoSqa9tQ/ws\nHmGVZaMzalUG0RGFLobjnJUlEgUDxcwknZklTgIBlNgWJJ/CnRksMiLxjFERKYaqApGYHIYi\n+84zjRRqWeug7TdvPrieW0Mch6+we+8QEkyJpG2Xsf9yBySfRVZZNjqjVmUQHVHoYjjOWeYz\niDUdBwPFzCSdmSVOsiUGUGJbkHwKd2awyIiUAWpwTN9TcMOO2NToLNxpQUXbb9EpUD23hji+\n8VvbzN7bxzv2pkAWpmg9tO1y7L/cAfaznOUuoH9tdEatyt75Oxod0ZfoYjjOWeYz5Dwe05m5\nZrNvXzDLnSsWC5GS5i4A1OCYvqc5N+wWi+5ObkW0/RadwjkmxPHkbx5l9t4+3vHfKZCFKVp/\nDG27HPsvT0T6WQ45bKcVHg1Pz41oXQzHOct8hgyRajNzzWa/EGm2UGvuAoAQUtL3lLD+CAwQ\nq0U3ykh5adPN9stvv1GnoCGO9+/8E7P39g//BgWyMEXrH9G2y5n+y65hNKbO3psfXPOAR4NO\nT+0rALoYjhFG8xm6mKUam32sAwxJpSmMihYYZpBItSmhPnS0/jyMh7S5CwBCSLbvKU9jG3fH\nALFadKOMVEwgRi7jVY+lCR5++406BQ1x/NEudu9NRKJAlknROmi7nOm/nP02CLUpmfRFDTo9\nta+YAPwMXcxSzUlgHWBIKk1hVLTAMEwiaf25jgd1iK9p7FCDY/qe8jR2xK9jgFgtulFGKiYQ\nI5fxqsfSBA+//UadgoY4lu5p997+4Z0pkIUp2gYwUc3MaC3x61My64sadHrRvqIOrPnAzzDZ\nLDU5CawDDEmlKYyKFhgWOJHA7kS1PNj+JNafYY+UWH+u4yE4xNfTihBCsn1PeRp75zkYIFaL\n7vryzA/gulc9liZ4dAmMKx475sW/sZfDFG1AsoZiosaZ0dUs8WtTsuiL8jo9ta/oCL06ZadD\nPVl7ElgHGJJKXYyKFiYWOJHQ7iRoebD9Saw/wx4psf5cx0NwiK82OZe9z13+ztY+IjgcNh6F\nAWK16K4vz/yL6l71pjShLTDutHu0QcM5JnczUePM6DKW+ElJCOuLGnR6al9BsCHNDFfi1amd\nSGDmWgHrAENSqYtR0cLEAicS2p0ELQ+2P4n1Z9gjJdaf63gIDvHVlPLUofcsf7oTkXz+cM+d\nMUCsFt315Zl/Ud2rHmk3GePf5GqM+0DGiYWJ9zU0H2OixpnRoSU+Iy0JYX1Rg05P7SsISUiT\nIwJ8Qhyb8CZoIVxQrQn+FeIHfLJhqxrNXJ0zdYAhqTS50H6hYoETydqd4NiUIJHWn2GPlOgm\nr+MhOMT7moIvPusr3TpbZdt0M/LlTHWveqRd8wvD7ma8D1djoIwTCxObmo8xUePM6NASn5EW\np9b0RYm8CNagSUiTIwKizqPYhP9SQ7igWhNg/IBPNmxVo5nr4LDAiWTtTnBs8nok1p9hjxRA\nuifxf/Nr97iuW2erbJtuwjT9g43sJ//CsLsZH8PVGCjjxMLEpuZjRNR3/cO5+/zOp5gK9VYV\ntjg108oiEIn/5TUo305CmhwREHUexSb8lxrCBdWaAOMHfLJhqxrNXAeHBU4ka3eCROL1SKw/\nwx4pEbon8UKzPV5AacVHXvTDgx5pD9bKbkXzh7i8oi2WOrp68JuGaFYmqMjj0fZSB8Nip7ub\n8R9yNQbKOE1hYlPzMQ9cN9VbVVipeEsri3p3gSSkyREBqFd/yBMphAu8Nh7iByJFldOMZq6D\nwwIn0ryR7no3b9785N+/g9KKb7iu2ssQD5vlDvx6zR/i8oq2WMY/z1KHf4N9RCCS7aUOhsVO\ndzfjEVdjoIwTCxMbm495JOumzQ8+BCu7jFS86Zujyrwt0GkgCWlyREDr1X+62xZfOhjCBdXp\nYvxApKioXg1XnHpHjlnGYiES4XTzm0lrhJhUrNt00Kbb+D74LZYlEsXjx6NfvPzIK/aS33Af\nIUSyvdTBsNjp7mY84moMlHFiYWJj8zEPu276+O4HHbDbp+NJ3nbWKSef3MVCjivzsNNA+gw6\nC1HnUWzClw6GcEF1uhg/EClqrq5klgVBdQyESJYHZGHoLr4cnrC+wtqV9kWY1ggxqVi36aBN\nt1le+S2WJRLF48eja85zN+wmv+E+IuyRTC91MCx2GvebfmzBHtCum458wrn/AJHP8r/5RoUO\nR+TKPOw00PbkjieMW9XxSDLAqnQfAgZCJMsDtjB8NT7h+uuvv+Gvnmg5gMSkYt2mvze06cbl\nFW2xjKMrx+PHows/4x7bTX7DfYQczPZSB8Pi+WJTW15qTfX/LfAVrG05EJ+fLLSkUTR0Gpj4\nyokwp4lEmp9L2kLEUIhkeOAtDH1uqQHa4QSK3cIOINZtYptuXF7RFss4uoaGDW/+M/d42NPg\nPkKIZHupk2HxnJErTIk0AGhL90485I/OO/CkGJf7yLI1Z5xxRv5Ihg5cmYedBuZ7gux7Vnsf\nJJJxSZtpDIVIhgfeMIo6YwXYIjjtcBI78ukBYt1m9yatgUgfPd/dGIiE+4jmFZsNwEsKk3Za\nmte0jcOw6M9EDqu3gE9T4cbk7FfccluF/GmEjoX01lyZh50G5o+kL2wgkmiSVOk+BAyMSKrc\nodwSPAGL4EKHE+zIFw7wzQOWnuz3zLtMsVsJRHrkpauu2LOlAN0CqwhIUig5TdlphbymbRyG\ntmBmn1aN0fam4GfLuxJNdSu5M0kOQsdCfusMbBa5+05uzU4XYFkiiyI+MhJNkirdh4CBEUmV\nO5RbgidgEVzocGI68iVopEJziax78C/ct1Z1PmWsIuCeqdLniXdaa03HFGtSEppDgcN59Xnt\np7ELPedeueqN559/vtBUt5IsOQgdC/mt60gWkRkiEdOQpFxY9MAKU5bIooh3jESTpEr3IWAg\nRJoILIILHU6iaSJLxkLou82qsKVE1j16/OGHf63rCW3CKgLumcrrUt1pYccUa1IizaFeAg7n\nXmZqSvdSvwl5lLmiW0mWHISOhfzWgidMQ1HmQ1P9HTMNScqFRUqkEL/0wcxrhzEFJVgsRMoX\nwQWwZCyEvoNVYdiYJF1rOVG0nbh/NVYRcM9UXpfqTgs7pliTEmkOtTc4nPtZYtuPfxzfoOY3\nwY8yV2IRCEkOQsdCfmuBbSjKfDD1d6RE1cLh6hVIUi4sqoiEZYkkith/l7/e3i9vIWKxEAlH\nma56gm5IitpC6DtYFYaNSdq1lhJFOInxmgZyInA1h4oqHoyBkK+GKgLumcrrUt1pYccUa1Ii\nzaF+4zj/Xqr5/svf3X/f50s4oe43IY8yV2IRCEkOQsdCfmuBbSjK527q72hZqIXDzpKUC4sq\nImFZ4iyXSUzCYiESjjINbwXdkEjGQug7WBWGjUnatZbTRjCJ8ZoGciJwNYeKKh6MgZBYRYA9\nU7vvtNDhvCLSip8499CL+aHUo8GFR5krsQjESA7MW9uGojyxmPo7WhZq4XAFJCkzpiISliXO\ncpnEJMwakdBuJCy9ujhm4Ciz4S2vG2LJWAh9B6tC3ZjUuta6OTOJ8ZoGciJwNYeKKiFSIGQD\neKfVpesMOpxXg/tof9/RTU+WR1OaGnW82eTZhqI8sdj6O78s1MLhCkjS4TKmAbNGJLQbCUsv\nWrFLg6Lf8gt39B2RBReOMg1vqW6IJWNBLhasCgOR6l1r3ZyZxHhNAzkRuJpDRRVf1ZWQbZim\nTCPg7DOuvgpL+bKPJgGRlopd21CUJxZbf+eXhVo47KaNWg4MM0cksBsJSy9asUuDIlq4o++I\nLLhwlGl4S3VD+cxIIFK9a60nEkxivKaBnAhczaGiiq/qSkgAelKFagt1QuILgk67fK6ZqOKW\nmy95y8ZGGUL7o/OCXxZq4bCbJmqpwu/hCFdnjkhgN6Jdsf2KXRoU0cIdfUdkwXUvjiMNPIQb\n8/h74iTGaxrIicDVHCqq+KquhISDYU1pqLZQJyS+IKhRVY5I1UKwqXFLANoljA5cdofbfOZB\nR3zHPb3mqCM21aMjNbv8HKYxcqmIA6tV/b4LkZ4poN1IIBKt2KVBES3csQBQFlzYClwDDxiB\nmBY4BLZ7TYM1paHaQp2Q+IJQ3X27pF5reS6/EITGLfXRucmU/f3dCdvuOdRdd4b72olu/Hr3\n8J716EjNLj+D3LKwRdIhq1Xiqc/Fyg0r0p9dzCaRbFsxXrFzSRwt3JFIsuDSVuAOAg8YgZgW\nOFqnysTmgDWlodpCnZBEc/ToTc8/glOvlOfikDtHXTiNo2WKNSL5MQxlf2+72rl9fn7ZJ517\nrvvyKe6+Q+rRkZpdfkcYImG4fzwSaSDx1BMp3Hh1/kizhlkjUjO4JI4W7kgkWXDdDNFgDTy0\nx7k8fklLD6wpDdUW6oSkcvJTV3HqlfJcHHLnqIuPXECZImtQYXXmxzCU/Z37eeeO+vYtp2y7\n+1cfca9assttmehIapffATV3Iwz3j0cSXiGeeiLxDS/Sx0isxIy+1/tXvKMxHCIJmhbuUHmt\ngYf2OJfHL4lIWFMaqi3UCUnl5Lv/CadeKc/FIXeOutAYjWWKrEGF1Rm5/MSyP0+kVfduHa24\nYK9HPnf6tu/tt7UWHanZ5XdAzd0Iw/1KJOKpJxLf8CJ9jMRKzGiHfMs7FEMjUlM8FyuvNYBl\nI1m2YCG4yfOFEuQwcKXfER8gU3QR1ksh9Up5Lgm5U9SFx6iGE1iDCquzJNZ+WTXdLHm0uvHU\nc93F1bxw0I9q0ZGaXT6gKcVVczfCcL8SiXjqP6Tc+MmSH2AkVmJG2/cdPhMYGpGakFZeE6yP\ngS1YCG7yfKEEOQxc6Xs4r00ucQBpIVJIvVKei0PuzC2OpWs4QWpc4+osIdLtR227c4X72rnu\n02e6T77R/Wyu5srQhsYUV83dCMP945EE/ImnFGzgG+6GkzASG2JGM4fFQiSsvFaJnfUxsAUL\nwU2eL5Qgh4ErfQqK8U5ljVMflTTG4izYqETnkDtzi2PpGk5gDSqszmzSqpo7Dlp+t9ty2gHH\n/dT952tXrUgrQxrl7WHDhSreqDCsuRthuH88sgH/9P1CJDbEjGYOi4VIWHmtEjvrY2ALFoKb\nPF8oQQ6D+/AaLDG6aFevrBY5dJPDcEQkmAWDEr2GeshdwwmsQYXVWfMYFnQkUthwoYo3Kgyb\n3I0mAiOxIWY0cxggkXKld+NXpHXjXmJnfQxswUJwk5cLZZTDxCv9sbSNYnZIWwwihl6wDz9z\nsnbVW8HRTSlP9USCWTAo0Wuoh9w7uS/W7Ja+7RmulSH0MbAzrImihQ0XqngbXBfakrVTztqz\ngeERKVt6Z/YdKrGzPga2YCG4ycuFMsph4pX+/bSNYnZIWwwihl6wf/TfOmhXKyLRTSlPJSeD\nOAsGJbpHGH5Nu/1tTS4i8IKa3RIxnCtDnMw52BnWRtGCoRioePOuC21dN+ajI1z4mG0i2fZJ\nV4TWCPXulCaDrhK7s1sOnWz5c1dY3kYxO7gtBhNJL9jv/40O2lXyVPSXdi5PJZOqOAsGJTrA\nDEToJ5b2m8i+oGa3RAwXCzGZc7AzrImihQ0Xqnind13g5axxcxkAZptItn2Stkaod6eEDDr4\nx4uPQRaWSNkrLG+jZPqgthhMJL1gX/ybHbSrgUhSnuqJBLOgKNHJKVxkNbrb913VoJ9Y6DcB\nYjndiGkbto+mdkvE8GjY4j9GYxQtbLhQxVtzXagFHdM7+OJh3Fwm/JlnAbNNJNs+SVsj1LtT\nis2d/5uCy9YtSfHblOBtFLND2mIQMfSC/c3/0kG7GohkylMJMAuSU7jIauJuf+lW7CcW+k2A\nWE43YtqGrWa3RAxXItHH6BhFMyvMyJaORDJuLlN97QsTs00k2z5JWyPUu1OKzV1OqDB/ZzXe\nRjE7pC0GEQMv2N1RC8PhLEhO4SKribv9taafWOg3AWIflNaFAAAgAElEQVQ53YhpG7aa3RIx\nXM+VPka3KJrd6gCRSKAEActUmMpEMm4uA8BsE8m2T9LWCPXulGJzJ/43rFrgjnxL98sdGPdX\nlM/JpU761Q+1K1+9U7jIasxuH/qJhX4TIJbTjZhpw7bdCPmkLFtYoARy8lSYystZ4+YyAMw2\nkWz7JG2NUO9OKTZ34n/Dm6m2jny4v6J8Ti51skOEeJvyv3mncJHVmN1+JlQHYjndiDW0YZsn\nQj4pyxYWKIGcPHWPpln7kkPd26ObywAw20SymDywxf+GN1NtHflwf0X5nA6pE4O51Pe6I+yC\nKf7mncJFVmN2+xCqC4INEMvpRizfhm2+CPmkLFtYoARycuse3fBJZx6LjUgcXaPNFHTkq8FU\nApGqYWLqxGIu9b3OA+L3GmGzzowTDgCtYVWwMRnbmxCVfFKWLSxQAjm5ukfbfIR+0mFgSESa\nDPG/4c0UdOSrAfdXlM+ZJnXC+rg1O12g8oH3mKyJD1vLUzF+HyJs1plxAmxrWC/Y2GGqgdjf\nMOSTcmwRgRLIydU92uYj9JMOA4uNSBxdo81UG3B/Rfmc1tRJAtbHPbAiWmwnHvhLtXQD4/ch\nwmadGScAWsPmeqk1IOj7aNrTxhdgvlLPk2J/w5BPyrGlBSYfMdJPOgwsLiIJpowSTDL5SOcA\n1sdVRFL5QOKBH8WyNn7PRLLOjA0IUQhoDSuCDUMSB2VKYH8S9H2sDwqNL8B8JZMn/f6LYn/D\n+cHkI0b6SYeB2SQSWuJMgaCWnI5IbbqxLFgfVxFJR07dA19g4/ccYbPOjHnEnXrSczkhiYMy\nJbA/UX0f6YPW1s1XcvEU9I/JfoOTTC1tPkI/6TAwm0SCMTEF+owTWWMPDBeEwpyKSDpy6h74\nAhu/5wibdWZMG4/x+kujEFD5+zzfS22PuV2QJA7KlMD+JKgpgj6oZr6Si6egf0yOSBO/XpuP\n0E/a8Rtf4JhNIsGYyOEXJ6xa/zyHLa5CCjEZ8/yPRJOmklFaYw8MF4TCnIpI39xDRg4T6V3P\n7xiFNsM0aTzG6y9d80Hl70VfevLxWy+xJHFQpgT2J+E5QR9UM1/JxVPYPwZbhulWylb8qbVl\nrbnAgDGbRIIxkcOGde4Lu5kWVyGFmIx5/kdiAnkZ5bZ1Lzzwy+KpCD+tsQeGCwC5Bl2BJG3L\nS/NY0niM119KJKj8JX3RckuS6p7bQpnSl2K9UnhO0AfVzFey8RSy08SWYbqVSir+grVlrbnA\ngDGbRJpQw7aeNinY4iqkEJMxz/9ITCAvo/z8ye7eF4qnIvy0xh4YLmhr0OW6Egl8VpLGY7z+\nUiJB5e9xb9zwqfOOtSSp7n7Zga/7DIlOcY/jNETSPVrOdprYMky3UknF31rX0FxgwJhNIk0I\nNlz0KT/2sMVVSCHaMW/VrXkZ5S8ecY8/VzwV4efNxtgDwwXNDbpu3I9EabI4Im0nP+wzTaji\nqw4YfVY+YhuP8fpLoxDQc/nxDesvuubx+rex9e4PH723s3ucJkAJRoj6KdhOE1qGwVYqrfhr\naC4wYMwmkSYEG655g/vz3UyLq5BCtGPeqlsbZZRXvFU8FeHn3cbYA8MFzQ26LjiARGmyOCJt\np6wQl241Kr7xCHxW/s02HuP110QXhohvfGD1K9b6HT3vcViwW1H3XcE0GC0joAQjRP0UbKdp\nWoaF76pW8dfQXGDAmE0iTQg2PHbMYev3MC2uQgoxqXEw6lbTFA/wyeOfFk9F/Nn45s0Nuk70\nHfYCSVjbKURaax3/q3kz+qxsr7H4r730lkf5FulbWbDryyCDaTBaRkAJxoWpQI7tNE3LsPBd\n1Sr+GpoLDBizSaQJwQaPaUqBWnHtCU8GT0X82fj85gZdJx3rnJKEtZ261TIqvvEIfFa6G4tz\nZ4knX3PggZtCXKTC5juufNVxFWtF38qCXV8GKabBxjICSjBC1E8xfWOYpmvAeDQ+esmSJf/l\nUfdPe33UhTOebcwmkToY5vRFpH8/xKua2VMRfzaiuUHXm/chUZosjkjbqWXnRsVX7aPAZ6UN\nYfxxHIM6S9zyx+7+PSUu4rHl7o+deZSP67G+lQW7vuhETIONZQSUYISoX0Qt9+sxBz9TNF0D\n2ATzn/5P9/SR51VE4jOeccwmkZoNcwD9XOSu2GW//fZ7lD0VzU/F5uWvawx9hQdooFfk2ncd\nk2T9OtJ2btKy824qvhQaX6fjS2cJ577yYomO+F+WvObjHJZhfSsLdolIojZFywgowcC+tgR0\nfY7IEikXkqQdWQhf+iecdI/b+sSffNTJGc84ZpNINcOc+p9zbgfVu+AYYap2qZdIRxbnZPOn\nmL0AQL2FbewHkXXpLOFe8Dt3S3SEXhq6qbG+lQW7RCRRmzZZRqRA12fp5k4y94wZbI5ItCPj\n8CUR6V9e7u9lIvkznnHMJpGgCoeRIZJ651z2Pnf5O2H0NR+2S04FxojwYM1OF4TQF1bcSEyM\n73rz3iybGI84OsaGYdlyozy7oN7CNvYLQ7N6jnSWcO7r+2+LERHtpsb61qb81eSYBro+87uy\nzJ1+WuNJKjxPFA20I+PwJRHpTeQ6IzNSdcat773wMZtEkiqc+nWR/3h0W71znjr0nuVPw+ib\n6p1qzqTvimNEePDAChWKYsWNxMT4rgufK9b8I1H8kGGYplXRy1hnGSOwgXoL29gvDM3qYe4s\nced91aLuRzEiot3UuGVAE5EmxzTQ9ZnflWXu9NMaT1LheaJooB0Zhy+JSPvS2Xki8RlP9WdZ\neJhNIkkVTu26KH88uq3eOe6Lz/qKg9GHUC2oGMfxsAWf3pozKYwR4QETCTUSUTQ6HklaaalY\n849E8XOO1EzIaYCXsc4yRmAD9Ra2sV8YmtXD3FniQ2vdv++2NUZEtJuabRkgUEksq+Poa2ho\nXAO5X3lXlrnTT2s8SYXniaKBdmQcvvRE+uk+dK8nEp/xdg+KZxazSSSpwqldF+WPR7fVO8dd\nu8d1qGzGA6kWVIzj+Bfw6a05k8IYMUSqOYBJTIzvuvBgMUIeqeIHiYRexrG0DwU2H4n1Frax\nXxia1VG4s8R/rjlg/z+HiIh2U7MtAwQqiWXy0tfQ1LgGIjz8rixzp58bjfEkFZ4nigbakXH4\n0hPpH19a3XfXfs9+zn4/kzOebcwikdQrtXZdlD8e3VbvnEde9MODHoHRh4dSLagYx/Ev4NO7\nMXUmhTFSJxJW3EhMjO+KRPpoUPxw8REDvYx1ljECm0PO0nqLbx5w0E37rsMq1eceaRdsZuuv\n6R/bMkBooZJYJi99DQ2NazDCw4RgmTv9tMaTVHi+OBQNAbNIJPVKrV0XhTp0W71z3nBddQco\nm/FQqgUV4zj+BXx6a86kMEaEB0AkrLiRmBjfFYn0SFD8cPERnwZ6GessYwQ2KJS7f3USkUjr\nMoBIYNBsWwYILXSClCnbfw0NjWtqER5zCsZ4kgrPF4eiIWAWiaSoXRclESOG2R2gWlAxjpNf\nok9vzZkUxsgUgreIbHQMvYy14M0IbFgop1V91myIY4AQaIlHBoNm2zJAaKETpFSr+q8B5In4\niuCzog4u7z51+bfVhDz5RJuXv66WX9sWd6N6jJ2b3DdnDTNKpL4UJaoFFeM4+cX49PYmNiJ0\nV/xYytFKTKv6rNkQxwAh0BIP0tgyQGihE6RUq/qvAeSJeD7BZyX6iC/dGk3I05M/rJ5fg92o\nHqPRfXPWMJtEmney9dZLbT1QF/eG6Yi0KbyR/b3peS0wlOOVmFb1WbMhjgFCoCUepLFlgNBi\nCknsd8RnJfqIrwUTcgVPL2t2uoDya1CXgbtRPca83DcXImaTSLGPqaR5tMZZlxum1RxgOiLx\nQmmKpUdK8SbKT3sp4JWYVvVZsyFUvGJnMkZQNsQb9AvTovsEqYWB6uDiN5ha3aXg6aXaONLe\nEeoycDcaXWDm4765EDGbRIpVzZLm0SWGLjcohP34szQ5ElVecosK60LmqAm8UJqw9ECGBbFC\n0Dpgb6L3ZJ5HyM955l5eiWlVnzUbQsUrBVqqzZ7uTlTZoDcI0xsxhXiHOrhU/4EJeQBPL4FI\nUJeBu9HoAjOt++ZCxcwSSZYDkubRJYYuNyiE/RcrNTkSVV5yiwrrQuao6Y14oTRh6YEMC6mh\noHUwvYkyzyN0IBKvxLSqz5oNoeKVAi040aqyQW8QsDZykhsLn8nNsjRUB5fqv1jdpeDpJRAJ\n6jJwNxpdYKZ131yomFkiyXIg1IeHxYEuNyiE/f4jNTkSVV5yiwrrQuao6Y0kO9W+9ECGAZHq\nvYns8zDKJgvRfw5CpG+mQlAwguwA/zE/uHLlb3/AgbJBbxCwNrIbkTqCp5dAJKjLyGOS++as\nYDaJFKuahUi6ONDlBoWwl5ytyZGo8pJbVFgXMkdN4OzUhKUHMgyIVOtNlDwPo2yipVAhUhJ7\nq7DlBz/srqLhOoX7XvSYA2WD3iBgbWSmjXkzpSeBp5dAJKjLyGJq982FitkkUqxqFiLp4kCX\nGxTC3ikmR6LKS25RYZ1mjhrAGakJSw9kWBArBCJhb6LkeRhlEy2FCpGS2Jtzn3jOCw94bq47\nCiGVrRORtqyk0kdVNtgKV6yNzLQxb6H0/LDDvP0XCGaTSB1AfzhIjlQ3L/rvpPLiO6/7zef9\n7okxczQHf2ncYXSJjyPDQpI2EAl7EyXPwyibaClUiFSLvR3wU+d+uqzrhycive2d1a2z3AXh\nzthNQiGzcaaNeTOltxvDpNRgiTQJSboQVy/TEmmegChb0FKoEEnujfj9zdWU8iq6CR6n1dLr\n16HfuUYgPZH+/mg/+xxy2E4rPEw3CQ9s+ylrTmxj3kxpBWbCGhd/aFrUpIIYBGaaSG1/yhB/\nptg3/w3NcINyPN7vV79JUgrbCYdoORTr6XDVEoRvQzlR6E87GUbOxFoKFSIlIqfR6KT9zzlv\nKS8bweO0Wnphv3ONQHoirdp/5cq3u80PrnnAw7nvn2a6SWDbTyaSaWPeTOmA+2txxw8umZub\ne7adb8C0KKQobjJfKTpoBslQp69vgWGWiVT/UwJC/JkGGv8NzXCDcjzeBlS/SVIK2wmHaDkU\n6+lw1RIELCcK/Wl7hcgTbqRfwOO0Wnphv/P2CKTNHGHbz431NuaW0rk+SpohU3Xfqp9nzjya\nFoUURfKVgoNmkAz1+M390jAzRDLRpCTZmXEN0PgzDTT+G5rhBuV4vA2ofpOkFLYTDtFyKNbT\n4aolCFhOFPrTdgbMcm2V8CBLiB6nngHQ77w9AmldNZvbftJq1m5kcn2Ukrhjhdfxq3G+cWBa\nFJII9itFB80gGZr8pS08zAyRbDTJJjtzkaWw22dFCv0NzXCD4gfeBsSW9dhOOETLoVhPh2t0\n5YZyotCftg1GZwezXEslPMgSwOPUnxX0O2+PQFpXzea2n5ltYa6PkmbINBxx6uHnrlt3nJlv\nHJgWhSSC/UrRQTNIhmYRM0MkG02yyc5cZEmJ5Aca/w3NcAMi8TYAiATthEO0HIr1dLhqCQKW\nE4X+tC2wOjuY5Wq1dBEgSwCPU39W0O+8XRXQ5Kopc/13QyyAXCmsk3Guj5JmyDQcQarYC818\n48C0KCQR7FeKDppBMjSLmBkipdEkTHbmIkuBJZvu+JUPuU3L/N/QDDcgEu/sI5GwnXCIlkOx\nng5XLUHAciIeObReU4f8d4fdhS5J4URxltNauqhSF1hZwrxgXTUpMkDrYZnrVa5IrhTWyTjX\nR0kzZDEc4Zefdr7JTW/2K0UHzSAZmkXMDJHSaBImOxsjS5lq0h6RLUHgkUPrteiQH3YXuiQF\nwCyHtXTJCLSyhG5ordTYV4MSMterXJFcKdDJeOdRro/Sw7uvn7NllLT8/J9mvskR6dpWTeqs\nSoZmh0hJNAmTnUmwGH2suJrULlQmo0l8ZodmtgSBRw6t16JDfthd6JIUALOc1NLR8iro0g/l\nePD0xtu1C4ifgfZ4QfjtFRpZlLleBYXkSoFOxjs35dKSAA8tP/cx800Gd+351y0nPbOSodkh\nUnegjxXX7tiFymQ0EKn73EbrNXTIj1G2lEiZd6fllejSJR4ssoRtsELUBBb/Sj6YfKVI4tOC\nzZs3P/n37+Db69advPScYALBc70KCsmVAp2Md6a82s12fcqRUn4nAa0895/FGogeMEQioY+V\nEglaLkwGqjh5XrFdUkPbZQIW/wTQeg0d8m99UYiygXlQHTTlUdYl6NIpHqyyBFwhxkpv+pV8\nMPlKkcSn8Q1Olw8o4PtorldBIblSoJPxb1FeLVmfcqSU30ngl58n/EbbfDPzPSeaMUQioY+V\nEglaLrSChzKoOJlISZdUabtMyDrG+/UaOuR/f0mIss21mKbwlEeDWXXpFA8OsgRcIcZKbw6Q\neR9MvlIk8Wk5+PoKa1eGt/ru+5y75L6J36XfB+5PebVkfcqRUn6n8KEnLT932G51AWCIREIf\nK64mtS0X2iBDGVScTKSkSyq2XfaDvlaGvnn568xxq8lM7Uz5yTTHsaBIVWjLKJ4nRJIwO8eD\nZdzjCtFUes+xDyZfKZL4tOD666+/4a+eCL+tqGajL7xk4nfp94FXUF4tWZ9ypFRMvDwudWqz\n4tEqhhgghkgk9LHiatKk5cJ37fN5NKvztrMqTt7p1LqkWiLVytBTC53qpWpnyk+mOY4FRRp5\n/irOSBJm53iwjPuYh52zld5z7IPJV4okPi2wcxA1T2rv1aYfkPJqGv3G5JuYeHnc6qKjsZsg\nhuj0trOFIRKp2RlHHkn6e/NoVsNgZ1WcvNOpdUlNiJSWoa/Z6QLoTM5EWmu8wWmOY0GRRp5z\nYQiOB8u4j3nYOVvpPcc+mHyl0Pi0ydDaOei152y4pmM8nfNqGv3e+Osh+fY7oU6FYeo0WsUQ\nnd52tjBEIjU748gjSX9vHs11ImGetdYlNSFSWob+wAoHncm3EZHWGW9wmuNYUKTTXIZIEg/u\nOO7b3LXsHHTvdW++ZGO7AqMJ4ZPbLU9Sp9EqhhgghkikibjZOLyJPE6dt1uRqUqLRIKVVEUk\n6Ez+sF9nbVxnvMFpjmNBkU5zzfG8LWbcp/ENjYbRlaKhhspyMczK6WYuxZy9jVHvZMtj6zRa\nxRADxKIkUtI5k0ezOm9Pi0gkbmpJd1ZEgs7kVBy/cZ1JJ9Mcx4IineZ801nKBEGDvnDKaEqX\nUCWJhjUQacvVZ51znXIxzMqT+g0mRMKod3bLE2acBjHErJoETcSiJFLSOZNHszpvN7yIQxLj\nEf/bGH3aqESCzuSNZ1If85wJggZ9fDfJby4LKVguPdQq2WVBvBeKESkiaHjo3B2H7HPUUUtW\nhB6TYVauNnMaNPzVrPGJKVXBqHe65cGi20WH4RHJjk1Z9Bz8XlSeJH0VupWTc0iimn7oX74U\nh5pa3l+Bob0nUpfO5PW35kwQNOjju0l+s29IwXLpoVbJ6no0FCNSRBB5WOFFVDNxZxqoq05U\ng4Z54xNTqoJR73TLg0W3iw4DJ1JY9Dzw4eOPvepn4d7QV8G8gn/aPRBm4jkkURGJ/pXcpNTU\nMpHA0H4qmHw/Z4KgQR/fTfKbA0MKlksPtUpWiRSKESkiiDz0LyZObTtQfg3Ku4pIGjTMG5+Y\nUhWMeqdbHiy6XXQYIpFs2+9w/9eX7XSmTEuhr0LyutqhzN6DQxIVkTjQxrlJqallIoGh/TSw\nOxzOBN0SG/QxSP19bEjBcumh5keVSNoHk4pogYcVRsd/8vOf/8RRYeUalHd+MxeChnnjE1Oq\nwvrg/Janueh2EWCIRLJtvwnfeceyk2556ouyrom2pcQ2qRE3ZuC0TDOFQxySqIhE/0puUiqY\nOOIHhvZ5GC2sCh00+EUnw5kg2qqLiQKB5DefDSlYTpFqflQjJKEYkSKCyEOPv33buededrs5\nodM5Tq+5sazxycRSlYDmottFgCESybb9Jhz6QdoRv5V/4/7e/haxTYhkzMBpmWZi4RySqIhE\n/0puUojEET8wtM/DEEmFDhr8opNpywRpCpZTpJqdpQiJXyCGYkQfEXz/m4CHhJ/f++1H9Zeg\nvKuIFHNjWS+jzs3bWuV7A9arEoZIJNv225luW4TY35vYJkQyZuC0TLNEGtl/PQKROOIHhvYK\n49nCgQgpPVChgwa/6GSm6LNiUBOEpkvVJGpnlXe9oE2+N2S9KmGIRLJtv53ptkWAvliebeBa\nombgtEybSCRCcq2dMwELGwijQISUHqjQIQa/0q6tLQCXSI7H6wLRuvNpiPw7adRu84MPdRc2\nQF4rHL/+pDb5np6eeAw1HmRWMUQiQePlkBaydr2xvzexTV1LwAyclmmdsrO1QlTzmw2EUSBC\nSg9U6KDBL6g0nxSumAOXSI7Hx/4xxp1PQ+Rp1O7jux90wG6f7vD5CJDXCsevP6kmY4Jrjp6e\nXFIaDzKrGB6RMkjtemN/b2IbL8x43xFE17RMM9nZJstqLJBQz1YtbN+97tkiK08VOmjwC7q2\nTiQSuERyPD72jzHufBoiT6N2R1bLuv/o7GkKea1w/PqTtqTyPUsklK82H2RWsSiIlNr1nt38\nzHZnjhywQEI9W2Nhe92zBUoPsvgF6AnCEghNF/nx6BLJ8fjYP8a488USoiRqt6b6/5ZXd/2Q\nkNcKx888C2RMVPguEgv5llC+2nKQGcXiIFIC298bkXXmCMKbMKpNfYQpkFDP1ljYXvdsMaUH\nGaCeICyBsJCJHgeXSI7Hx/4xxp0vlhB5bP2RThgnHvJH5x140qhZ1GEq6CGv1cwB7K1Jhe8i\nsfC/6+nJJaUQaTYRXdw8bH/viQjCmzCqTX2EKZBQz9auhe05oJ4gLIGwkIkeB5dIjsfH/jHG\nnS8WMG183iG37X/Q3J/Lu9yYBGBqMEEVyGs1c8D01vSF7yKx8NDTk0tKIdJsIvF3N1LqiQjC\nmzCqTX2EKZBQz9a2wnbMJsXRyvf6SQD1BGHA4R4rtcPs2Hnm8If/bZfvuZ8e3uZEhNYu2Qr6\nVhgTS1/4LhKLTqc361gkRLI1N7a/90QE4Y02rMX6CFMgoZ6tWNieoo1IHqgnCG+Je6xUY5Aj\nktyHDx3l3AuqCfSlbU5EeNtU0C/ba9sDB6OrUs4nEE0sqfBdJBadv+hZxuCItClrSkf+7nq/\n7e89EUF4E0Z1l/oIj7pIAfThoWWTu/hy2pHzvX7ko54gvCXusTpoDDZliPSa17/y1NdsWHdG\nmxMR3jYV9Hv994c//F50Vcr5BKKLEBW+s8Tin6eTHs4ohkak+1dniWR3RW1G2jXX7Si8CaO6\nS32ER12kAPrw0LJp/GrWKfG9/TQIvH+1xMuIp3Ln0+Mvuz+/+JNPtTkR4W1TQU/ueuiqVPcJ\nTOUjEXUi7cA+iM8UZplIIYqGK/vTdr2Sr+1JryFTE9tupL0D/8qgD5d6CO+zTTtyvhffOxf6\n5tvoyWxDieFLOJPjZcTTFC1ORHjbVtA//45jjatSPZwS5CP2tDGW/0v5ip8pzDKRQhQNV/Y+\nhkbXdttryNbE5pwMVVkzosv4jvFfA3241EN4n23akYfRW/94GPrm2+jJbEOJ4UuQeBnxNEWL\nExHethX0Fx1ylXFVag6n2NOGWL5pQio7LXMVaOuztuAx00SSKBqu7D2RzlG3K4Wtic3099a/\nvx8/1WV8x/ivgT48tGz6yZIf0I48Q6RM6JtvoyezDSWGL0HiZczTAKvNyDktN8O766GrUnM4\nxZ42xPLXmyakvEA0V4GWPmsLHzNNpBBFg5U9Z3WC25U+FWtiU8GQHCwoa0Z0GZ/Of22SFU8A\n6MN5VJLPNu3IM0TKhL75Nnoy21Bi+BIkXkY8bTiX6ZZX+W4rFE4JfKy+BP892NOGWL5pQipE\nMleBlj5rCx9DIBKu7DmrE9yu9KmmJjYRDNmDVUTyl/Hp/NcmWfF0xCYzaeRC33wbPZltKDF8\nCRIvI566vHHLVHmihm4rJpxSfQn+e7CnjbF8bEIqOy1zFZjppNMQiIQre87qBLcrfep3tCbW\nw/b3tgfz46u6jDcGt6lfEVYE+BKFNTtdoDbX899dJTryXOibb6Mnsw0lNrj054xbsk7L80Eo\nKq6+hOq/5LQxlo9NSGWnZa4CM510mmUiTQFrUmz7ezOQSNVlvDG4Tf2KTEXA0q2+zFRtrtuG\nZVxO5nR7nTuitVXRZpEzbjF5ov997x/6+sP/ymWI8s/3Jh2WK7FCUXH1JVT/tcB3uw0rWtlp\nmauAvfbNGBYJkaxJse3vPR0oo2IqAtZSvbbaXLftriKRcrq9zh3Rpq6izRm3mDyR1B/afyYd\nVWbQUFTcTKRpohqzikVCpPeYhGzo7w3b5KYXbqqNAt+vyFQErGMirTPWqrj7QIfFEOLN6faa\nOqLZEtx6vrltnMqkkTFuMXmi97+M6g+lDFH+8a+E0ljsKo3eMKGoeOKMNGgsEiLZpZ3t790W\nK8hYDfh+RaYiQImE0iHcfaDDYgjx5nR7DR3R0q3TNNuIMGlkjFtMnujAVVR/KH5c8o9/JZbG\nQldp9IYJRcVMpJsN10Jcg3JIg+2N5LFIiJT0nxCEHQna9r7HJOZp22LbXfqMiqkIUCKhdAj7\nvKDDYgjx5nR79Y5owZsPzRnQQSXotK3IwTbr5A8aPnDTF8T1h8k/zpbGQldp9IYJRcVMJMu1\nENe4zOeQBtsbyWNoRArLHLluh1WR7T8RXEbDjgRte21iniYJ2+6yW/967PNiHBYlxJvT7dU7\nogVvPjRnQAeVoNO2IgfbrNNjMpG4/jD5x9nSWOgqjd4wtqjYci3ENSiHNNjeSB5DI1IAE6nB\nBCq4jIYdCdr22sQ8Ecm0u+zYvx77vKDDYscQr8TlgjcfmjOgg0rQaVuRg23WKahxqFsEAEtj\n18X1K3jDJEXFlmshrsE5pKH2RvIYFJGqldm7Rhw55gWQWqWGOQhwutOFFNr22sQ8ESnT7nIi\nokrts8ZhsWOIN8TlQsNNMGdAiUOQQ1iRg23WKUWUc+AAACAASURBVJinThRLY9fF9et/PnuX\nF3/34V2O8E+xX4rlWohrUA5psL2RPAZFpGplNh5x5JgXQDqOwhzECC6jQKR40TWJedq2ZNpd\n9gQUc+cyusGbD80ZUOIQiGRFDrZZp4Bt7sAWHZxJpgeGZ2pEAh+mENegHNJgeyN5DItIa6u/\nGUeOeQFk+++dHm4El1EgUrzomsQ8bVsy7S57Aoq5cxnd4M2H5gwocQhEsiIH26xT3opt7sAW\nHZxJpgdLOarpHxr4keajZeIbdn3fsIjk24Fz5FglrIwwBzFaTarnDd10dLe5RjH35IzudlXx\nsM0d2KKDM0l3hPpjDs+NR9jAjzQfhUhDABGJI8cqYWVYp+s2k2rE/P70PsLRMdmDYu4ko5vB\n9hGJbO7AFn0+ziRaf8xSjvEIG/iR5qO2gjT9/gaM4RGJI8eJetPOQW0m1Yj8nx4nHE7thGo1\nLdLtSiQUcycZ3b7BNndgi86VFscZchJVMZyH5kLcY5OjOJw4G4+wgR9pPmorSNPvb8AYFJEI\nWUWnnYNqJtWy3+cBwz8br6G2+xildkK1mhbpStAQCj/h6gxAMXeS0e0bbHMHtujS/KVOJIQx\nF6IemxzFCUTCBn6k+aitIE2/vwFjeETKKjrtHFQzqZb9Pg8Y/mmvobxWCQqzKHVYS6mdUK2m\nRboy3KDwE67OtTOeWsw9D8R62E3J/Xj1oCp7VKD/DpoLrY31x4FI2MCPNB+1FaTJRg8YwyNS\nFvU5yIL3+zxg+Ke9hvJaJSjMotRhV5ZTS7VajHDwcIPCT7g6197cUH9yt5Wu5bgGOtckOeqg\n2wBTo/+/vbOPtawqz3j6R2O0SjApVC5aFXFEPkQGIRTlQx3qHzYVrQ6N1owijo3Gg45faRQF\n6ldpEKyOWjsZqFcECrXGqikU22KEjLYqtp1oP0KsCcjHEGBm1v/d+33Xetez9lr7nH3OXfdy\nzznPL+Z6uR/nnntnP2et/a7nfV50oB+RhgvF/uMSrecj20EOnvc35yyJkPI1KMU3b8sFo2/T\n11BfXvMOs2h1OFKOdkK3WqxwoENI7+njq/NYOtNWSpfsTO24rUW1O1VXP46vHtJljw70I9Jw\nIes/LiGej2wHOXje35yzJEKahN7v6wWjb9PXUN2rBIdZtDocKUc7oVstVjjQISQvzPDqPJbO\ntJXSJXvRU99lvbkfT/oD22bdnsdthZRM1bWP46uHdNmjA/2INFzI+o+HEb+uP/RuUaCQBL3f\n1wtG36avobpXCQ6zaHU4sufSQIeQvDDDq/NYYNoKHnZiG0Jzf2K9uZ0wrpMPFR/0JhVSx30n\nBN8GhBpNiC5PSR172fBC+zGTIvvnnnkXEtafe1ohQv/DOCbd7+teJUwfi1aHI7v1YkCa1qcF\npq3gYSe2ITRCst7cThjXjuJjtrdF8mRS951/kvjqIV32E6LLx9D8IPs32AfJkLZSLrBrdd6F\nhPXnnlaI0P8wjllHII99arMICaat4GEntiE0QjLLah7GFTicdrK2T6bjvptE+cVFX7lsikXo\nhQo/yP4NkilPzUp527atW0/eMvXfY26YeyFB/bmnFcL3PwiTD0rH7f/TQcL2anvlSC4j+azs\nwcJksnCViQtt4C8Us5WTw05oQ2iEZJbVPIwr0OlkbZ9Mx303ifKLi2+KClMsQi9U+EH2b5BM\neWpWytPvesU9l39l4I+eQ+ZeSFB/7mmFwNvjtQkpHSRsr7arI7mM5LOyBwuTycJVJi60Yb8P\nZCsnh53QhtAIySyreRhXIO9k7WO6ldM3RYUpFqEXKvwg+zdIpjztbGcWbHPt/xaVuRcS1J97\nWiG8kGCkSjKRFQLp0c0AVgQzJKSDhO3VdnUkl5F8VvZgYTJZuMrEhRafsz4e1A+aVe0Iv2hB\ntnJy2Dl1G0Leydr7JywKqSiuFWiKCodn6Q+yf4NkylPzL/DqvW8dXfXCoc9+/ph7IUH9uacV\nwgsJRqrgvRMG0qObAawIZkhIBwnbq+3qSC4j/Wy7BwuTycJVJi60iD4e1A+aVS0sWpitvCay\nTlbkOA2u22+Rq4U/bJ+QQlNUqPOlP8j+DZIpT82/wIH9Bz79vh9W+MU2KXMvpMG7EhipgvdO\nGEiPbgawIpghIR0kbK+2qyO5jPSz7R4sTCYLV5m40CL6eFA/aFa1sGgl2cprAbrr8tsiH1xn\nkatPQ2GF5B+byYHD1GNTVKjzjf1By8PyCAlGquC9EwbSJ26GaEUwQ0I6SNhebVdHchn54/xm\nDxYmk4WrTFxoEf94sX4gWx9dtA4n2codxjc6TRHD6IPrLHL1eBSWyesPkimZfrnu/MH3DPWp\np+OwF495F1Ig/feNBs14dcFIFbx3wkB6dDOAFWHtfQ1p8pB/vFg/aJ8JLlo9xy09US4z4IPr\nLHL1fBSWl1ecyQHD1Lt/6E7yyRg647AXjsUUkie58mCkCt47YSA9uhnAirDmvoZO8pB/vFg/\naJ+JX7S6xy16bGMhe/j7yDlOfwiDvYjgnyasaRpcZ5Grf4TC8vKKMzn0D7VGA/cMRtu5YnGE\n5NuIpAgXDZqresbTn/OxET0MQ/CLVve4RY9tLGQP0HOc3hCGn5fyg+yDGlwXI1dRWEFeNpND\nhbRGA3c6DnvxWBwh6YWlRbho0PRnPP05H+vhaZiBsGh1j1v02MZC9gA9x+kNYYgvIlA26Fi/\nIygsS/4JMzlUSMMN3O0862yHkI7DXjwWR0h6YWkRLho0/RnPoJyP0h5oo+ket+ixjYXsAXqO\n0xvCEF9EoGzQe6Lkd4FD6xXJX6ewqy5V1A//4hfDHnw+WRwh6YWlRbho0PRnPINyPkp7INee\nn55w4redG534ojvD23999jU1nzw4EtLjlhV/bGMhe4Ce42QhDOGh4osIlA0mHM0OJa16xD+b\nP5765KggpK//9gue/5zvVPnxm5LFEZJeWFqEiwZNf8YzKClY9kB2X28GuVt/391zgvuHCw7/\n4DT/9rGXXXJNoU91JX9xHlad7zUurfhjGwvZg8/pOU4WwhBiXOOLCJQNQEiWRykOC39T2R0Y\n0EPz10mi7ILl+4hbpIq+WhLSmf/n3P+eNeSvMZ8sjpD0wtIiXDRo+jOeQUnBsgey+3ozyD18\nv3voGe5Pdjt3/K/07aEDl11T6FOdXUgQlWK+aj0AnTmCK76IQNkA1jTLoxSHhb+p7A4M6KH5\n6yRRdsHyfa1W0YtCOs/eLCaLIqTAWopwsgey+3o0yF3+Qfe2W5079yf61rnLrrnoqe/Kx4hh\nqlu80ZeYhV5FrKRRKear1gPQmYUUX0SgbABrmuVRisPC31R2Bgb00fx1MMoufNMOfzxVFNJb\n3rj7c+NSM+adRRNSfxFuUmbIiu6B4n19NMh9fttjIqRz7tG3rZDavPBsjBimusUbfYlZGCsk\niEoxXzX6lWwfJhsw3UnpzIl2AYsTvTpV/nFed8ujFIeFv6kcODCg+etglF38Jq2iF4V08Kvv\n/8CN5QbehWDRhNTPpMyQFT06iff15jXYc8Ejzn24ueqOe0DfeiHlY8Qw1S3e6EvMQriTSPyi\n3r+GUSnmq8YDUNuHyQZMVywVUvMZmOjVqfJPEBI4LPxN5cCBAc1fB6Ps4jdpFb0gpA85ZjYs\nCjiW79f0av5RyBDZF+5Hrn91vK8PBrn/fnGrhTvOPfz9M/1bL6R8jBimusUbfWkhCncSiV/U\n+9cwKsV81XgAavsw2YDpiuWFtMPBRK9OlV/vvXQVa5ct/HNYHqU4LPxN5cCBAc1fB6Ps4Jv6\nuNkxs2FRwLF8/mq2DJFiom4wyF1+5JYtWx5wu07aerfTt3dtefpRz91aGCOGqW7xRt8LSa//\nxC+q69iN2yAqxXzVx5x//GnhADTuw8RKKyuWTkFqPgMTvTpVfr33kmVKlq3OL5iflU1tKh02\nvrBFToIXdjrSkgnJ+qD91WwZIqVE3Qmj+ZqHy8eIYapbvNH3QtLrP/GL6jpWfinHip3tw2QD\npiuWTkFqPgMTvTpVfr33kmVKlq2Uggc26WqEUbR9KTIDxxc2mt1+9Pbt219D9/cCgGP5/NVs\n7RTrnagrQtLrP/GL6jpWaNv1W83Qm2v7MNmA6YqlU5Caz8BEr06V3+/Q2mVKj6VDd+6HP+k+\ncoUNeU76jQRdxOIo2uEpMi5d6Oz9n7329ttvv2NRB8i6JRNSvJPWq9naKdY7UVeEpNd/YmvT\ndSxv2w2lbwgLD9d4ehc//uBKA8NkmZJly4Xu3EdP+8HWx2zIc9JvJMgiBqNo8xSZfnChs/dZ\nbFgccCyfv5qtneKJTdTN23Z9DXAEYeGzC0mWKVm2XChKuL9/ym1xyHPSb6S0ixiMos1TZIoE\ny70Fwb4omGRZbCBKdmM+0dU6vGE1b9v1NcAQ+aC7Ll0hwMvtwmRY/Yz6dXqOhAP+Efccu9fZ\nkOe830gWMRhFm06szZ+9J1jurYhTyds3D1BIg8huzOt1q4YLGS9WXwMMkQ+66wpCMi+3C5Nh\n9TPq1+k5Eg7oI95/6r0n3W9DnvVnvuMFcXsrixiMok0n1ubP3hMs91bEMSGtrKz8VsMC5+hT\nSCXktRz9m22G6IVbf5BMScqbBTvhPHHC2A1jM5Tztl3dalrkg+66vJCil9uFybD6GfXr9BwJ\nB/QR37630aoNedafed0zhm1vZYnzGdEx4UzxlntbXGFF+uC3H33klg/M8o8xHyyLkLIS81gT\nm7yWo3+zHQx08qF0SlLeLNgJ54kTxqbPUE7QXZfes4CX24XJsP5uRvw6PUfCkTyFRNvZVRD4\n6pENGPR/uGaJ8+aKmHAmBMu9La5gkpVmxQFze+cVCqmEvJajf7MV0o7OlKS8WbATzhMnjPVn\nKA9Cd3p6zwJebhfmeuln1K/TcyQcyVNIfAqxCAJfPcoDBmWJ812UMeFMCJZ7W1zBJHvBJV/8\n0iXnT/NbzxdLICTYgEDge+cmPEXNAuDf1FF16ZSkvFmwE84TJ4z1ZygPQnd6es8CXm4X5nrp\nZ8Sv03ckHMmtuz6F+GKYcvm26KLNvlqWRPnbQMLZRB7+y13v3f3gNL/1fLEEQoINCAS+d27C\nU+S1HP2bOqounZJUaBZMw3nihLFihnJ1hvl18hQSSyHGKZdx4CBy84d0SdS/DSScLT1LICTY\ngEDge+cmPEVey9G/qaPq0ilJhWbBNJwnThgrZijXZqBfJ08hsRRinHJpLtoussTp3wYSzibA\nqt0CABsQCHyXHUr/hLneO6jsM5MHXGwyshQSSyHGKZfmotVjVotjwNED08Cq3dwDGxAIfG93\nKN/vHAY9kUICTY+pg6yEz82ecpSnkEzowpW6oy9I4sTzkqeq/2mxajf3wAYEAt/bHcrRcDr0\nMIxqdEnPuJ7ShKOgzDqA5ygD6LnU8IB3gJB6z4PTSLGSuyJPIZkgJKk7fjbEMeDogYwxx9Ss\n2i0weDqEoxpd2jOuHXT+KCizDsA5ygD8pdZz4hvGSbZfAgOawJ4dM2TLj98TKQZMn0LS1h0t\njgFHDwg4YKr3abFqt9Dg6RCOanRJz7gXkj8KyqwDcI7iIF3h4QvO2fVM/70QqOAvtZ4T3zBO\nsv0SGNAE9uyYISuklgkZw4mxqquFW5qpU0i0OhniGLKJ5zhgapK3jsOYFxM8HcJRjS4xCPhW\nVF94y6wDadXK0hW+tNN9M9h6IFDBX2o9J75hnGT7JTCgCezZMUNWf1xqmWjHcGKsaumWJqaQ\nDLzP0upkiGPIJp7jgKkxQuIw5gUGT4dwVKNLDAK+FTUIqWsd6AgppCvsEmGqkCBQwV9qPSe+\nYZykfE0c0AT27Jghqz8utUzs6MSqlm5prnjMufvbAslafLeQeoYDpsYIicOYFxg8HcJRjS4x\nCPhWVC+kzDrQEVJIV3jvF9vrS1czCFTwl1rPiW8YJ9l+CQxoAkt4zJDVH9e1TKSxqoVbGnfZ\n1tv2nrTbSV6qZVJ+3G8Rh/7lIPUMB0zlQzYNDmMm02DpCl94u/ub4I+DQAV/qfWc+IZxku2X\nwIAmsITHDFn9cV3LRBqrWrilcW7fU469t/3/2CF78qGwRZz4+2V1wBUcMDVm9iWHMS8X5ZLx\ncCxd4cHzT991rHfBQaBC5TGrmWUijVUt3NK4T5z2rT2n7nUOOmR32BZx+mewMjDblsOYl4qJ\n9w1+E1c4hS3culfxASXClsVqeqnjxf6RR5277xLnkg7ZIMjku6wCeTBmua6OJHQfcpo3yYCp\nJ5plEhKOkcT3pUdbD3WkZDzuMXqF5CUIcrrZh/KsbYlLmTEKHC92KzZgh2xRSFaBhCzX1ZGE\n7if5lsQtl5BwjCS+Lz3aeoTTvEp/5hnnnbVfdWYvyQfA/CDHQdiVgWeRNTvQw7MedRMYYkzX\nLFixATtky0LagS7f0GUlofuYb0lalkpIMEYS35cebT3CaYR00XntfBPtdQsvyWh+0JZX6MrA\ns0hsSQ+noaVT0S5jDHuro24CQxLTNT2h2JCtbt2l0yqQkOXafFMbuo/5lqRlqYQEYyTxfenR\n1iOctoP8N9r5JtrrFl6S0fygLa/QlYFnkWg6Cqehk4yeLWOF1E1gSGK6xvy65W2gFRsmbhOt\nAglZrs03taH7mG9JWpZKSDBGEt+XHm09wmlLxn/czjcJvW760ovmB215ha4MPItE01E4De2e\niuq2MZ3KgmGrYLJr3/3MqJvAYDFdE37dslCs2BD2jPZMrsRvaJYnq0BClmvzoG3oPuZbkpal\nEhKMkcT3pUdbj3Ca+4Z3vrGdbxJ63fSlF80P2vIKXRl4Fommo1B77p6K6rYxncqCYatgsmvf\n/diom8BgMV1K3+CndI5l3Fge/mX4fGLKbe1F6/wPsMgslZBG5ffTHm2dbxJ63fSlF80P2vIK\nXRl4Fommo66QwqmobhvTqSwYtgomu/bd1VE3gcFiupS+wU/pHEvbWN56/HPde77m4p7Rnkny\nNwnrVbDFdiaZhcr+zR+i/AQKqdijPevVgaajrpDCqahuG9OpLBi2Cia79t23TJqFgoOf0OqT\nzrE0u91LHzzb3XeGfD4x5e7sCskbYb3noTPJbEgP5FKxTEKagvW4OsKpqG4b06ksGLYKJrvm\n3T978jfSh/mPTzr3/v3wARz8hFafdI6l2e1e7s527gz5fGLKzYTkjbDe8wDGWz0GOOBLk6sj\nm/++zFBIG0Y4FdVtYzqVBcNWwWRXGsZ+5o3OfRN7tnHwE1p90jmWZre75N3P+4tXvUM+n5hy\nd7pduEcM61U4YQLjrR4DhNLk6sjmvy8zFFJlwmFMf0F7+tVu/z+7z+38sf+P09o3W+GzOPgJ\nD1bTOZZmtzt8w6UfuHnyGVRYr8IjgvFWjwFCaXJ1hPPflxYKaZ2YRkjmlG3+r9Rtd/b3v/uS\nW871//GHF3/pC0mHKw5+KjoUhLHeUi3pJT66sF6FR4QlUo8BQmmy+XXi/PflhUKqTCg668lQ\nPi2yQHE0F3K+e/dX3cv8fxzce+n7bzwIn8XBT/1CGust1ZJe4qPb01/j0GOAUJpshGTz35cY\nCmkIHfMMrhpdh7cVneVkqD8v/0Ay2cIvBquj5v383v13rn72Q/tsN5fl0qVPZYLlvNhf/mQp\n6aGP7jvP+kbpCwU9BgilyUZIYf77MkMhTU+yauRC8nf+cjLUn5efTrbwi8HqqHk/v3f/zz+9\ny+250/9HnkuXPpXxQiq7ap8sJb3ERzcNw2ebLy4UUhfdjXlTQAiz875TXUasRxvnFwfSonN/\nnm862cIvBiKkwr37YfDVdXPp0Jmub820HgY0HXWWZXphf/lP7Zd4mpT0Eh+dcpO/1wtLcrFQ\nMni2+SJDIXXR3Zjfn4UwO+871WXEerRL/Thp0blfSOlkC78YiJDye3czI7R0c+nQma5vzbTu\nBzR97aJ/skwv7C+Pv8RRUtJLfHTCz7d3iiY8fe2DQuqiuzG/Pwthdt53qsuI9WiX+nHSorMJ\nKVNTOtnCLwaro9ayl927mxmhpZtLh850fWumdT+g6dSVmOmF/eXxl/jNnpJes35p0SS2hIwZ\nhrPUUEhdkvEmIYNrhB4e69Eu9eP0VLsyIaWTLfxisDpqLXvZvbuZEVpiLp2CznR9a6Z1P6Dp\n9565234v7C+Pv8TRPSW91oMrRZPYEjJmGM5SQyF1ScabdISky4j1aBf6ce4qVLv0zgWt2OPJ\n7t3NjFACnen61kzrfkDTzS/eaZle2F8+uamoFdLF2AoydhjOUkMhdUnGm3SEpMuI9WgP7MfR\nOxe0Yo/lwqO69+5gRsgHDaEzXd+aaT0MaDr6FMv0wv7yyb+EdoWA8TabSEs8FFJFejKA9c4F\nrdjTglW7jRw0pF0hKKTuRFrioZAytDKVNdpMDgPqSz7xseJQFY/gWIpOrT224iVVu4mDhm4q\n2JNmrLZpV0gipM5EWuKhkDLCRTf04rO0Ezuj6aB3IVgVj+BYik6tPWY8JFW7OGhI5lpktY2s\nZD3N70JmhUJycTiKrgw6Sky8L757VA42e8OALO3Ezmg6D693IVgVj+BYik6tPSbfJ1W7MGjo\npu1Hb9++/TXZPtFK1r7DNZatrb01Ii7ZuRveuRmhkFwcjuLHE8koMRSSHGz2hgFZ2omd0Yz7\nWZ37KBxL0alsxOT7ctXuZ6+9/fbb78h+mJWsfYdrLFtbeyuSLmCW/8AlbEooJBeHo/jxRDJK\nDIUkB5u9Ux8t7cTOaMbQvY/CsRQdIcXk+4EtRIqVrH2Hayxby6+hy2u8H7MFTLD8BwppSigk\nF6Po/XgiGSWmQtI8AznYLI1I0e/e2T1fSkjTQ9Dr9u8uHUvRERIm3xf58+NWGroftZK1jXqx\nsrWcz2rApd2P2QImXPTUd/l2JNnfNk/yo/JSYhMBj2BbeRkKyUUh+fFEMkpMhaR5BnKwWRyR\nIt+9s3u+lD54kh6CXrcJz2rimIdzflX6qJWsbdRLKFvrDEsNuLT7MVvAhLZJUDO+ZX/bpoWJ\nkGwiINvKe6CQXBSSrgw6SkyFpHkGmtA1dKHoPniSHoJetz78bdTEMQ9ZnJ1ET/7ymFNOOupv\n3ZEXnvCsp53w61fe8Pzzzny6u/S4t2w50SdASMClrX62gAmNkHzGt+xvmyepQrKJgGwr74FC\nmpaB84CMND0EvW49DA7iv/Alb9u5Ex9GoydtxZNNXGao0IBLE5ItYEKb/6AZ37K/bT6jm9u4\nTWRbeRkKqQhe5p1zpWShkDt3y/z9aekUKU0PQa9bAEfMNI/yIh18LoytTd9wYwt8QKMnbcWT\nTVxmqNCASxOSnbkKjZB8xrfsb5vP6OY2bhPZVl6GQioyRkgJ8qJvmb/FU6Q0PQS9bvYDYMRM\n8ygw0bh4uJqCZUKNnowrniRNpoaK8iGu56ZWSPr0dH/bfJtubm0iINvKe6CQimhFWJcK6MXJ\nkBd9y/xNTpG6CgjltdVR12yEI2aaRwEhWW3alju0Tty2bevWk7fgA0n0pK14solLDBV9h7jK\noD0l28rLUEhFfBeOLBWxF6fwhe2LvmX+JqdI/ULqPgaOmGm+C4RktWlb7nDRO/2uV9xz+Vfw\ngSR60lY82cSlhgo8xIWpF9aGPvEPw7byHiikIr4LR5aKOJ4l/zp50bfM32Yt2HdMc3UejJNa\nMNxBV662HJiajXDETPMod8SRyFabtuUOF73zWgPrNng2A05RIWsSpl5YGzqZFQqpiD99kaUC\nnM8Z8qJvmb/NWnDMW9ubpjipBcMdopBSsxGOmGkeBQafW23aljtc9F69962jq14Iz2aAkCBr\nEqZeWBs6mRUKqYiXjiwV44SUIVcnTGrBcAcQUmI26n9gq01bPytaJ360/8Cn3/fD6X4xzJqM\nUy+sDZ3MCoVUxEtHloqikHq7k9qrEya1YLiD3kuJkNLJY71Cstq09bOideLlJ775y+nhaFYt\nz54mZE3C1AtrQyezQiGNYQbnplydMKkFcxH0XioKKTMbTcuhu68+77nw3wOq5ZA1CVMvrA19\nLc9muaGQxpALSQviMm9VKgpZI59cnTCpBXMR9F4qCikxG6XeVq1DYEdRge9dtf1VO66Gr7Rq\nuflirxwwUb3L9J3whEKaEi2Iy7xVqSgUj2CHkpiNUm+r1iGwo6jAk156wwMOv9Kq5eYSypqo\nWr/4sePTVyikWaCQpkIL4jJvVSoKkxv5xpCYjVJvq9YhsKOowON3fup1rzwRvtKq5eYSypqo\nHn/88Uf+8WPy7WlfsF+5YBgfB/FNA4U0FVoQlzGR2tvqq9E9+UFTkHpbtQ6BHUUFDt597ZvO\nfR58pVXLrRZXbqJ6vf7EpC9YVy4cxseOiWmgkKZCC+JyhUpFwVejBxu2+0m9rVqHwI6iAse9\n4bM/Tr7SquVWi8vqGrsadpytPzHpC9aVC4fxsWNiGiikqdCCuFyhUlHw1egw1UhrEcUooUmk\n3latQ0SraCOkKx5z7v68JodfadVyq8VldY3rrrvu+r87kPxEtLXiMD52TEwDhTQVPQXxMNUI\nG4LW9HMKTU+Xbb1t70m7h3zlsMfr9AWrkHAYHzsmpoFCmop+IclGCBuC1vRzSt2x+55y7L3D\nvnLMVz27DTx+1jn/4rp9wSokHMbHjolpoJBqEKYaQUOQntzoLk/rYl+9cOs++OC0fOK0b+05\nde9an+kVf/3gQ9df+W9n+P8cm2vHjokpoJBqEKYaQUOQntzoLs/XxU4+hB90xbxi7JbVinSo\nQn/kUefuu2Stz1T8que40+0D/W4IdkxMA4VUgzDVCBqC9ORGd3m+LrbD4QddOa8Yu2WlIm1V\n6JCkP+bAdLKn6YK3f/mv3vmyW3/XL4uQa5ekhJFpoZBq0W6E4ELWkxvf+xDqYvhBV84rxm5Z\nqUiHKrQl6a9JSA/tfs+l197/Pw+G1K1R7oaY/U+wzFBIlZCNEFzIenKjBzpWF8MPunJecdot\n26rGV6ElSf90cR74O69o9rPgVIl1HLS2njrUMgAABpxJREFU+NStUe6GILNAIa0TenKjBzpW\nF8MPunJecdot2wrJV6ElSf854jzQxQPMfrYxlFjHcWuLee186tYod0OQWaCQ1oni+U7ng6W8\n4rRbthWSr0JLkv4p4jzwfrxo9rONocQ6jltbzGvnU7dGuRuCzAKFtE4Uz3cmH/oU7nJ8FVqS\n9P3MMlk8wOyXbAzvnbi2tF47XRYh1y5LCSPTQCFtLnIhhSq0JPxsE+eBLh5g9oON4X3HHBq3\ntoDXjtSEQpoPfCLdMeI80MUDzH5BSBrrOG5tAa8dqQmFtN4M6JPrJCvcVEqE6BkrNhOThjiR\n6aGQ1pupG04r9GT0k6WzkjpQSOuJNpyqCei4g48/6Xvu5deK76c8x9ySF1ZH2LaqlMeKTUuW\nzkrqQCGtJ9pwqiagN9x950uvOnSi+n7Kc8wteWF1lE1j6RkrpgTjaW9ImJGls5I6UEjriTac\nqgnos9d+6obtd79ZfT/lOeaWvLA6yqax5GPFIgNiuAJZOiupA4W0nvhjHzEB/fhNr3vgVVd/\n2dsIinPMLXlhddSZxuKSsWJiDhJXuKXfq/F0daS7w34OzJDOSgZAIa0n2nCqJiB37ivdjvP/\nS7VRnmNuyQuro2QaiwBjxcQcJK5wS7/34zNGujskGw6FtJ5ow6magNzrL3afC9oozzG35IXV\nUTqNRThstW8xB4kr3NLv/fiMke4OyYZDIc0L1kbhzUHiCrf0+xBP7nNLyEZDIc0L0kZxhrwr\n5iBxhVv6fRCSzy0hGw2FNC9IG8UZ8q6Yg8QVbun3QUg+t4RsNBTSE0DI0c8Zc+AqbRTvgA8w\nm2QzQSE9AcwkJGmjgLQ8ZpNsKiikjcEbhPb7yJFGSJA4ooc/6ici8wmFtDF4g1CIHGmEBIkj\nevijfiIyn1BIG4M3CIXIkUZIkDiihz/qJyLzCYW0MXiDUIgcCUew+t96+KN+okmkm79i6xJ5\nAqCQNgg1CIXIkSAk/W89/FE/0SQSIa1r6xKZBgppg1CDUIgcCULS/9bDH/UTJdjI2p9Ie5KW\nI67b5R5fUeNqT+sS2XgopM2MjazV9iQtR6iQxLja07pENh4KaTNjI2u1PUnLESokMa72tC6R\njYdC2szYyFptT9JyxPW73CMralztaV0iGw+FtJmxkbXanqTliK/vcN89Vo2rPa1LZOOhkDYz\nNrJW25O0HPHwWa//6PPUuNrXukQ2HAppMzN5TAvZJFBImxkKaW6gkAipAIVESAUoJEIqQCER\nUgEKiZAKUEiEVIBCIqQCFBIhFaCQCKkAhURIBSgkQipAIRFSAQqJkApQSIRUgEIipAIUEiEV\noJAIqQCFREgFKCRCKkAhEVIBComQClBIhFSAQiKkAhQSIRWgkAipAIVESAUoJEIqQCERUgEK\niZAKUEiEVIBCIqQCFBIhFaCQCKkAhURIBSgkQipAIRFSAQqJkApQSIRUgEIipAIUEiEVoJAI\nqQCFREgFKCRCKkAhEVIBComQClBIhFSAQiKkAhQSIRWgkAipAIVESAUoJEIqQCERUgEKiZAK\nUEiEVIBCIqQCFBIhFaCQCKkAhURIBSgkQipAIRFSAQqJkApQSIRUgEIipAIUEiEVoJAIqQCF\nREgFKCRCKkAhEVIBComQClBIhFSAQiKkAhQSIRWgkAipAIVESAUoJEIqQCERUgEKiZAKUEiE\nVIBCIqQCFBIhFaCQCKkAhURIBSgkQipAIRFSAQqJkApQSIRUgEIipAIUEiEVoJAIqQCFREgF\nKCRCKkAhEVIBComQClBIhFSAQiKkAhQSIRWgkAipAIVESAUoJEIqQCERUgEKiZAKUEiEVIBC\nIqQCFBIhFaCQCKkAhURIBSgkQipAIRFSAQqJkApQSIRUgEIipAIUEiEVoJAIqQCFREgFKCRC\nKkAhEVIBComQClBIhFSAQiKkAhQSIRWgkAipAIVESAUoJEIqQCERUgEKiZAKUEiEVIBCIqQC\nFBIhFaCQCKkAhURIBSgkQipAIRFSAQqJkApQSIRUgEIipAIUEiEVoJAIqQCFREgFKCRCKkAh\nEVIBComQClBIhFSAQiKkAhQSIRWgkAipAIVESAUoJEIqQCERUgEKiZAKUEiEVIBCIqQCFBIh\nFaCQCKkAhURIBSgkQipAIRFSAQqJkApQSIRUgEIipAIUEiEVoJAIqQCFREgFKCRCKkAhEVIB\nComQClBIhFSAQiKkAhQSIRWgkAipAIVESAUoJEIqQCERUgEKiZAKUEiEVIBCIqQC/w96zk8z\nTjwRRgAAAABJRU5ErkJggg==" + }, + "metadata": { + "image/png": { + "width": 420, + "height": 420 + } + } + } + ] + }, + { + "cell_type": "markdown", + "source": [ + "As we can see from the word cloud outputs, the term distributions between spam and ham differ. Therfore, we can train an ML model (NB in our case) using words as features:" + ], + "metadata": { + "id": "9SIlcCidNt2e" + } + }, + { + "cell_type": "code", + "source": [ + "# Create a document term matrix i.e. a mtable that describes the frecuency of terms\n", + "# occured in each message of our collection\n", + "myCorpus <- VCorpus(VectorSource(myData$text)) # create a corpus\n", + "myDTM <- DocumentTermMatrix(myCorpus, control = list(tolower=T,\n", + "removeNumbers=T,\n", + "removePunctuation=T,\n", + "stopwords = T,\n", + "stem=T))\n", + "myDTM" + ], + "metadata": { + "id": "USZRuCJqMLpj", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 106 + }, + "outputId": "40bb65d1-17a9-402b-e389-f94b2e7a3e76" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": [ + "<>\n", + "Non-/sparse entries: 309571/232824964\n", + "Sparsity : 100%\n", + "Maximal term length: 24\n", + "Weighting : term frequency (tf)" + ] + }, + "metadata": {} + } + ] + }, + { + "cell_type": "markdown", + "source": [ + "A document term matrix (DTM) is usually a sparse matrix as most of its entries are filled with zeros. Let’s use only terms which have frequency $\\geq 5$ as features in our model building. To this end we use the `findFreqTerms()` function in R. This will reduce the number of columns in our DTM matrix to $8615$, which would be a more manageable size in our model building." + ], + "metadata": { + "id": "sQesVGJRGcCZ" + } + }, + { + "cell_type": "code", + "source": [ + "freqWords <- findFreqTerms(myDTM,5)\n", + "myDTM <- myDTM[,freqWords]\n", + "myDTM" + ], + "metadata": { + "id": "nJH7OHi9GSJ9", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 106 + }, + "outputId": "218f3d3c-1b11-4af2-931e-488aec21dc55" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": [ + "<>\n", + "Non-/sparse entries: 256717/44291448\n", + "Sparsity : 99%\n", + "Maximal term length: 19\n", + "Weighting : term frequency (tf)" + ] + }, + "metadata": {} + } + ] + }, + { + "cell_type": "markdown", + "source": [ + "Now, we will split the dataset into train and test sets. We’re going to use an 80/20 partitioning for the training and testing by means of the `createDataPartition()` function from the caret package." + ], + "metadata": { + "id": "N5NoO_3CG2Jy" + } + }, + { + "cell_type": "code", + "source": [ + "tr_index <- createDataPartition(myData$label, p=0.80, list=FALSE) # List of 80% of the rows\n", + "trainSet <- myData[tr_index,] # select 80% of the data for the trainSet\n", + "testSet <- myData[-tr_index,] # Select the remaining 20% of data for testSet" + ], + "metadata": { + "id": "HOckz37QGxLC" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "Since we are creating our NB model with the DTM entries, we should obtain the\n", + "corresponding DTM entries for the data in `trainSet` and `testSet`." + ], + "metadata": { + "id": "dr4fjErBIhZm" + } + }, + { + "cell_type": "code", + "source": [ + "myDTMTrain <- myDTM[tr_index,]\n", + "myDTMTest <- myDTM[-tr_index,]" + ], + "metadata": { + "id": "h8nayc0vGyEp" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "To represent the presence or absence of a certain word (feature) in a\n", + "particular message, we code our DTM as follows:" + ], + "metadata": { + "id": "L-F8DYaoIpdl" + } + }, + { + "cell_type": "code", + "source": [ + "# Create a function called convert_counts to have a true/false table\n", + "convert_counts <- function(x) {\n", + "x <- ifelse(x > 0, \"T\", \"F\")\n", + "}\n", + "# Apply the function\n", + "myDTMTrainNew <- apply(myDTMTrain, MARGIN = 2,convert_counts)\n", + "myDTMTestNew <- apply(myDTMTest, MARGIN = 2, convert_counts)" + ], + "metadata": { + "id": "q5Ma-4T-IpM5" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "If you print the output, it is a table with T or F depending on the precense/absence of a term" + ], + "metadata": { + "id": "snFbwOCAJO-H" + } + }, + { + "cell_type": "code", + "source": [ + "myDTMTestNew" + ], + "metadata": { + "id": "4K7iJFXGInXz", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 1000 + }, + "outputId": "1089bfec-6392-4af9-ae8c-30ffc28bcd15" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/html": [ + "\n", + "\n", + "\n", + "\t\n", + "\n", + "\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\n", + "
A matrix: 1033 × 8615 of type chr
aaronabaabachaabacusabacustechabazisabbotabbottabcabdominalzinczipperzismanzivleyzoloftzonezonedubaizoneszwalletzyban
1FFFFFFFFFFFFFFFFFFFF
7FFFFFFFFFFFFFFFFFFFF
8FFFFFFFFFFFFFFFFFFFF
18FFFFFFFFFFFFFFFFFFFF
21FFFFFFFFFFFFFFFFFFFF
22FFFFFFFFFFFFFFFFFFFF
26FFFFFFFFFFFFFFFFFFFF
30FFFFFFFFFFFFFFFFFFFF
35FFFFFFFFFFFFFFFFFFFF
39FFFFFFFFFFFFFFFFFFFF
41FFFFFFFFFFFFFFFFFFFF
55FFFFFFFFFFFFFFFFFFFF
57FFFFFFFFFFFFFFFFFFFF
58FFFFFFFFFFFFFFFFFFFF
69FFFFFFFFFFFFFFFFFFFF
78FFFFFFFFFFFFFFFFFFFF
79FFFFFFFFFFFFFFFFFFFF
80FFFFFFFFFFFFFFFFFFFF
83FFFFFFFFFFFFFFFFFFFF
85FFFFFFFFFFFFFFFFFFFF
86FFFFFFFFFFFFFFFTTFFF
97FFFFFFFFFFFFFFFFFFFF
102FFFFFFFFFFFFFFFFFFFF
105FFFFFFFFFFFFFFFFFFFF
108FFFFFFFFFFFFFFFFFFFF
112FFFFFFFFFFFFFFFFFFFF
117FFFFFFFFFFFFFFFFFFFF
120FFFFFFFFFFFFFFFFFFFF
121FFFFFFFFFFFFFFFFFFFF
131FFFFFFFFFFFFFFFFFFFF
5014FFFFFFFFFFFFFFFFFFFF
5017FFFFFFFFFFFFFFFFFFFF
5018FFFFFFFFFFFFFFFFFFFF
5021FFFFFFFFFFFFFFFFFFFF
5023FFFFFFFFFFFFFFFFFFFF
5027FFFFFFFFFFFFFFFFFFFF
5045FFFFFFFFFFFFFFFFFFFF
5048FFFFFFFFFFFFFFFFFFFF
5052FFFFFFFFFFFFFFFFFFFF
5071FFFFFFFFFFFFFFFFFFFF
5079FFFFFFFFFFFFFFFFFFFF
5089FFFFFFFFFFFFFFFFFFFF
5093FFFFFFFFFFFFFFFFFFFF
5097FFFFFFFFFFFFFFFFFFFF
5100FFFFFFFFFFFFFFFFFFFF
5103FFFFFFFFFFFFFFFFFFFF
5108FFFFFFFFFFFFFFFFFFFF
5109FFFFFFFFFFFFFFFFFFFF
5117FFFFFFFFFFFFFFFFFFFF
5119FFFFFFFFFFFFFFFFFFFF
5123FFFFFFFFFFFFFFFFFFFF
5124FFFFFFFFFFFFFFFFFFFF
5126FFFFFFFFFFFFFFFFFFFF
5134FFFFFFFFFFFFFFFFFFFF
5143FFFFFFFFFFFFFFFFFFFF
5149FFFFFFFFFFFFFFFFFFFF
5151FFFFFFFFFFFFFFFFFFFF
5153FFFFFFFFFFFFFFFFFFFF
5165FFFFFFFFFFFFFFFFFFFF
5167FFFFFFFFFFFFFFFFFFFF
\n" + ], + "text/markdown": "\nA matrix: 1033 × 8615 of type chr\n\n| | aaron | aba | abacha | abacus | abacustech | abazis | abbot | abbott | abc | abdominal | ⋯ | zinc | zipper | zisman | zivley | zoloft | zone | zonedubai | zones | zwallet | zyban |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n| 1 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 7 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 8 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 18 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 21 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 22 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 26 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 30 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 35 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 39 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 41 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 55 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 57 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 58 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 69 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 78 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 79 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 80 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 83 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 85 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 86 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | T | T | F | F | F |\n| 97 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 102 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 105 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 108 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 112 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 117 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 120 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 121 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 131 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋱ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ |\n| 5014 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5017 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5018 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5021 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5023 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5027 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5045 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5048 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5052 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5071 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5079 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5089 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5093 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5097 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5100 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5103 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5108 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5109 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5117 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5119 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5123 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5124 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5126 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5134 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5143 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5149 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5151 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5153 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5165 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5167 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n\n", + "text/latex": "A matrix: 1033 × 8615 of type chr\n\\begin{tabular}{r|lllllllllllllllllllll}\n & aaron & aba & abacha & abacus & abacustech & abazis & abbot & abbott & abc & abdominal & ⋯ & zinc & zipper & zisman & zivley & zoloft & zone & zonedubai & zones & zwallet & zyban\\\\\n\\hline\n\t1 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t7 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t8 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t18 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t21 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t22 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t26 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t30 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t35 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t39 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t41 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t55 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t57 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t58 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t69 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t78 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t79 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t80 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t83 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t85 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t86 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & T & T & F & F & F\\\\\n\t97 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t102 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t105 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t108 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t112 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t117 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t120 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t121 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t131 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t⋮ & ⋮ & ⋮ & ⋮ & ⋮ & ⋮ & ⋮ & ⋮ & ⋮ & ⋮ & ⋮ & ⋱ & ⋮ & ⋮ & ⋮ & ⋮ & ⋮ & ⋮ & ⋮ & ⋮ & ⋮ & ⋮\\\\\n\t5014 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5017 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5018 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5021 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5023 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5027 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5045 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5048 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5052 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5071 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5079 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5089 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5093 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5097 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5100 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5103 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5108 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5109 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5117 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5119 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5123 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5124 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5126 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5134 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5143 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5149 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5151 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5153 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5165 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5167 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\\end{tabular}\n", + "text/plain": [ + " aaron aba abacha abacus abacustech abazis abbot abbott abc abdominal ⋯\n", + "1 F F F F F F F F F F ⋯\n", + "7 F F F F F F F F F F ⋯\n", + "8 F F F F F F F F F F ⋯\n", + "18 F F F F F F F F F F ⋯\n", + "21 F F F F F F F F F F ⋯\n", + "22 F F F F F F F F F F ⋯\n", + "26 F F F F F F F F F F ⋯\n", + "30 F F F F F F F F F F ⋯\n", + "35 F F F F F F F F F F ⋯\n", + "39 F F F F F F F F F F ⋯\n", + "41 F F F F F F F F F F ⋯\n", + "55 F F F F F F F F F F ⋯\n", + "57 F F F F F F F F F F ⋯\n", + "58 F F F F F F F F F F ⋯\n", + "69 F F F F F F F F F F ⋯\n", + "78 F F F F F F F F F F ⋯\n", + "79 F F F F F F F F F F ⋯\n", + "80 F F F F F F F F F F ⋯\n", + "83 F F F F F F F F F F ⋯\n", + "85 F F F F F F F F F F ⋯\n", + "86 F F F F F F F F F F ⋯\n", + "97 F F F F F F F F F F ⋯\n", + "102 F F F F F F F F F F ⋯\n", + "105 F F F F F F F F F F ⋯\n", + "108 F F F F F F F F F F ⋯\n", + "112 F F F F F F F F F F ⋯\n", + "117 F F F F F F F F F F ⋯\n", + "120 F F F F F F F F F F ⋯\n", + "121 F F F F F F F F F F ⋯\n", + "131 F F F F F F F F F F ⋯\n", + "⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋱\n", + "5014 F F F F F F F F F F ⋯\n", + "5017 F F F F F F F F F F ⋯\n", + "5018 F F F F F F F F F F ⋯\n", + "5021 F F F F F F F F F F ⋯\n", + "5023 F F F F F F F F F F ⋯\n", + "5027 F F F F F F F F F F ⋯\n", + "5045 F F F F F F F F F F ⋯\n", + "5048 F F F F F F F F F F ⋯\n", + "5052 F F F F F F F F F F ⋯\n", + "5071 F F F F F F F F F F ⋯\n", + "5079 F F F F F F F F F F ⋯\n", + "5089 F F F F F F F F F F ⋯\n", + "5093 F F F F F F F F F F ⋯\n", + "5097 F F F F F F F F F F ⋯\n", + "5100 F F F F F F F F F F ⋯\n", + "5103 F F F F F F F F F F ⋯\n", + "5108 F F F F F F F F F F ⋯\n", + "5109 F F F F F F F F F F ⋯\n", + "5117 F F F F F F F F F F ⋯\n", + "5119 F F F F F F F F F F ⋯\n", + "5123 F F F F F F F F F F ⋯\n", + "5124 F F F F F F F F F F ⋯\n", + "5126 F F F F F F F F F F ⋯\n", + "5134 F F F F F F F F F F ⋯\n", + "5143 F F F F F F F F F F ⋯\n", + "5149 F F F F F F F F F F ⋯\n", + "5151 F F F F F F F F F F ⋯\n", + "5153 F F F F F F F F F F ⋯\n", + "5165 F F F F F F F F F F ⋯\n", + "5167 F F F F F F F F F F ⋯\n", + " zinc zipper zisman zivley zoloft zone zonedubai zones zwallet zyban\n", + "1 F F F F F F F F F F \n", + "7 F F F F F F F F F F \n", + "8 F F F F F F F F F F \n", + "18 F F F F F F F F F F \n", + "21 F F F F F F F F F F \n", + "22 F F F F F F F F F F \n", + "26 F F F F F F F F F F \n", + "30 F F F F F F F F F F \n", + "35 F F F F F F F F F F \n", + "39 F F F F F F F F F F \n", + "41 F F F F F F F F F F \n", + "55 F F F F F F F F F F \n", + "57 F F F F F F F F F F \n", + "58 F F F F F F F F F F \n", + "69 F F F F F F F F F F \n", + "78 F F F F F F F F F F \n", + "79 F F F F F F F F F F \n", + "80 F F F F F F F F F F \n", + "83 F F F F F F F F F F \n", + "85 F F F F F F F F F F \n", + "86 F F F F F T T F F F \n", + "97 F F F F F F F F F F \n", + "102 F F F F F F F F F F \n", + "105 F F F F F F F F F F \n", + "108 F F F F F F F F F F \n", + "112 F F F F F F F F F F \n", + "117 F F F F F F F F F F \n", + "120 F F F F F F F F F F \n", + "121 F F F F F F F F F F \n", + "131 F F F F F F F F F F \n", + "⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ \n", + "5014 F F F F F F F F F F \n", + "5017 F F F F F F F F F F \n", + "5018 F F F F F F F F F F \n", + "5021 F F F F F F F F F F \n", + "5023 F F F F F F F F F F \n", + "5027 F F F F F F F F F F \n", + "5045 F F F F F F F F F F \n", + "5048 F F F F F F F F F F \n", + "5052 F F F F F F F F F F \n", + "5071 F F F F F F F F F F \n", + "5079 F F F F F F F F F F \n", + "5089 F F F F F F F F F F \n", + "5093 F F F F F F F F F F \n", + "5097 F F F F F F F F F F \n", + "5100 F F F F F F F F F F \n", + "5103 F F F F F F F F F F \n", + "5108 F F F F F F F F F F \n", + "5109 F F F F F F F F F F \n", + "5117 F F F F F F F F F F \n", + "5119 F F F F F F F F F F \n", + "5123 F F F F F F F F F F \n", + "5124 F F F F F F F F F F \n", + "5126 F F F F F F F F F F \n", + "5134 F F F F F F F F F F \n", + "5143 F F F F F F F F F F \n", + "5149 F F F F F F F F F F \n", + "5151 F F F F F F F F F F \n", + "5153 F F F F F F F F F F \n", + "5165 F F F F F F F F F F \n", + "5167 F F F F F F F F F F " + ] + }, + "metadata": {} + } + ] + }, + { + "cell_type": "markdown", + "source": [ + "Now we build the model. Remember, this only takes one line of code!" + ], + "metadata": { + "id": "W30jTm8-JVvh" + } + }, + { + "cell_type": "code", + "source": [ + "NBbasedSpamFilter <- naiveBayes(myDTMTrainNew, trainSet$label) # train the model" + ], + "metadata": { + "id": "2Q_LWBS5JZbp" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "This is how the model looks like:" + ], + "metadata": { + "id": "wiOQfEoULxvw" + } + }, + { + "cell_type": "code", + "source": [ + "NBbasedSpamFilter" + ], + "metadata": { + "id": "vLSIC9ZvK3At", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 1000 + }, + "outputId": "9813fc0d-eab7-4d59-b63b-9b8c3878f23c" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": [ + "\n", + "Naive Bayes Classifier for Discrete Predictors\n", + "\n", + "Call:\n", + "naiveBayes.default(x = myDTMTrainNew, y = trainSet$label)\n", + "\n", + "A-priori probabilities:\n", + "trainSet$label\n", + " ham spam \n", + "0.7100048 0.2899952 \n", + "\n", + "Conditional probabilities:\n", + " aaron\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " aba\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " abacha\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " abacus\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " abacustech\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " abazis\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " abbot\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " abbott\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " abc\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " abdominal\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " abdul\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " abdv\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " abel\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " abhorred\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " abidjan\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " abiiity\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " ability\n", + "trainSet$label F T\n", + " ham 0.99012934 0.00987066\n", + " spam 0.97750000 0.02250000\n", + "\n", + " ablaze\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " able\n", + "trainSet$label F T\n", + " ham 0.95439074 0.04560926\n", + " spam 0.96916667 0.03083333\n", + "\n", + " aboard\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " abroad\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " absence\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.998333333 0.001666667\n", + "\n", + " absolute\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " absolutely\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.98833333 0.01166667\n", + "\n", + " abuse\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " abzt\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " accelerated\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " accent\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " accept\n", + "trainSet$label F T\n", + " ham 0.99285228 0.00714772\n", + " spam 0.98666667 0.01333333\n", + "\n", + " acceptance\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.980000000 0.020000000\n", + "\n", + " accepted\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.992500000 0.007500000\n", + "\n", + " accepting\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " access\n", + "trainSet$label F T\n", + " ham 0.96834581 0.03165419\n", + " spam 0.97166667 0.02833333\n", + "\n", + " accessed\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " accessible\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " accessing\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.998333333 0.001666667\n", + "\n", + " accessories\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " accessory\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " accommodate\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.998333333 0.001666667\n", + "\n", + " accomodate\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " accomplish\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.997500000 0.002500000\n", + "\n", + " accomplished\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.998333333 0.001666667\n", + "\n", + " accomplishments\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " accordance\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9908333333 0.0091666667\n", + "\n", + " according\n", + "trainSet$label F T\n", + " ham 0.98536419 0.01463581\n", + " spam 0.99250000 0.00750000\n", + "\n", + " accordingly\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.997500000 0.002500000\n", + "\n", + " account\n", + "trainSet$label F T\n", + " ham 0.98230088 0.01769912\n", + " spam 0.94500000 0.05500000\n", + "\n", + " accountant\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.996666667 0.003333333\n", + "\n", + " accounting\n", + "trainSet$label F T\n", + " ham 0.97277059 0.02722941\n", + " spam 0.98416667 0.01583333\n", + "\n", + " accounts\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.985833333 0.014166667\n", + "\n", + " accrual\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " accrued\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " acctg\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " accumulated\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " accumulation\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " accuracy\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.977500000 0.022500000\n", + "\n", + " accurate\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.993333333 0.006666667\n", + "\n", + " accurately\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " acf\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " ache\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " acheive\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " achieve\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.987500000 0.012500000\n", + "\n", + " achievements\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " achieving\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " achromatic\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " acid\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " acidulous\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " acknowledge\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " acock\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " acquire\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.986666667 0.013333333\n", + "\n", + " acquired\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.993333333 0.006666667\n", + "\n", + " acquires\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " acquiring\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " acquisition\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.988333333 0.011666667\n", + "\n", + " acquisitions\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " acquisitive\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " acres\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " acrobat\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9883333333 0.0116666667\n", + "\n", + " across\n", + "trainSet$label F T\n", + " ham 0.98910824 0.01089176\n", + " spam 0.99250000 0.00750000\n", + "\n", + " act\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.943333333 0.056666667\n", + "\n", + " acting\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " action\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 0.953333333 0.046666667\n", + "\n", + " actions\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.976666667 0.023333333\n", + "\n", + " actipatch\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " activate\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " activated\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " active\n", + "trainSet$label F T\n", + " ham 0.99012934 0.00987066\n", + " spam 0.98166667 0.01833333\n", + "\n", + " actively\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " activities\n", + "trainSet$label F T\n", + " ham 0.988427502 0.011572498\n", + " spam 0.998333333 0.001666667\n", + "\n", + " activity\n", + "trainSet$label F T\n", + " ham 0.96664398 0.03335602\n", + " spam 0.98750000 0.01250000\n", + "\n", + " acton\n", + "trainSet$label F T\n", + " ham 0.9734513274 0.0265486726\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " acts\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.976666667 0.023333333\n", + "\n", + " actua\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " actual\n", + "trainSet$label F T\n", + " ham 0.96426140 0.03573860\n", + " spam 0.96916667 0.03083333\n", + "\n", + " actualized\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 1.000000000 0.000000000\n", + "\n", + " actually\n", + "trainSet$label F T\n", + " ham 0.991490810 0.008509190\n", + " spam 0.990833333 0.009166667\n", + "\n", + " actuals\n", + "trainSet$label F T\n", + " ham 0.92239619 0.07760381\n", + " spam 1.00000000 0.00000000\n", + "\n", + " acy\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " acyclovir\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " adam\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99500000 0.00500000\n", + "\n", + " adams\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.995000000 0.005000000\n", + "\n", + " adapter\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " add\n", + "trainSet$label F T\n", + " ham 0.96800545 0.03199455\n", + " spam 0.96750000 0.03250000\n", + "\n", + " added\n", + "trainSet$label F T\n", + " ham 0.97583390 0.02416610\n", + " spam 0.98833333 0.01166667\n", + "\n", + " adding\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.996666667 0.003333333\n", + "\n", + " addition\n", + "trainSet$label F T\n", + " ham 0.97174949 0.02825051\n", + " spam 0.99000000 0.01000000\n", + "\n", + " additiona\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.990833333 0.009166667\n", + "\n", + " additional\n", + "trainSet$label F T\n", + " ham 0.95677332 0.04322668\n", + " spam 0.96416667 0.03583333\n", + "\n", + " additionally\n", + "trainSet$label F T\n", + " ham 0.976514636 0.023485364\n", + " spam 0.995833333 0.004166667\n", + "\n", + " additions\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " address\n", + "trainSet$label F T\n", + " ham 0.97140912 0.02859088\n", + " spam 0.92833333 0.07166667\n", + "\n", + " addressed\n", + "trainSet$label F T\n", + " ham 0.991490810 0.008509190\n", + " spam 0.996666667 0.003333333\n", + "\n", + " addressee\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " addresses\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.991666667 0.008333333\n", + "\n", + " adds\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " adequate\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " adios\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " adipex\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " adipren\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " adjust\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.998333333 0.001666667\n", + "\n", + " adjustable\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " adjusted\n", + "trainSet$label F T\n", + " ham 0.98978897 0.01021103\n", + " spam 1.00000000 0.00000000\n", + "\n", + " adjustment\n", + "trainSet$label F T\n", + " ham 0.99285228 0.00714772\n", + " spam 1.00000000 0.00000000\n", + "\n", + " adjustments\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 1.000000000 0.000000000\n", + "\n", + " admin\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 1.000000000 0.000000000\n", + "\n", + " administration\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.995833333 0.004166667\n", + "\n", + " administrative\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.995833333 0.004166667\n", + "\n", + " administrator\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " administrators\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " admiral\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " admiration\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " adobbe\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " adobe\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9658333333 0.0341666667\n", + "\n", + " adolph\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " adonis\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " adopted\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " adoption\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " ads\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " adsero\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " adsl\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " adult\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9866666667 0.0133333333\n", + "\n", + " adv\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " advance\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.995833333 0.004166667\n", + "\n", + " advanced\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9816666667 0.0183333333\n", + "\n", + " advantage\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.978333333 0.021666667\n", + "\n", + " advantages\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " adventure\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " advertisement\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9850000000 0.0150000000\n", + "\n", + " advertisements\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " advertising\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9875000000 0.0125000000\n", + "\n", + " advice\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.958333333 0.041666667\n", + "\n", + " advise\n", + "trainSet$label F T\n", + " ham 0.963580667 0.036419333\n", + " spam 0.990833333 0.009166667\n", + "\n", + " advised\n", + "trainSet$label F T\n", + " ham 0.9894486 0.0105514\n", + " spam 0.9850000 0.0150000\n", + "\n", + " advises\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9783333333 0.0216666667\n", + "\n", + " advisor\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.974166667 0.025833333\n", + "\n", + " advisors\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " advisory\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " adware\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " aeor\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.97416667 0.02583333\n", + "\n", + " aep\n", + "trainSet$label F T\n", + " ham 0.98774677 0.01225323\n", + " spam 1.00000000 0.00000000\n", + "\n", + " aepin\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 1.000000000 0.000000000\n", + "\n", + " aerofoam\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " affairs\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " affect\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.995000000 0.005000000\n", + "\n", + " affected\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.995833333 0.004166667\n", + "\n", + " affecting\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 1.000000000 0.000000000\n", + "\n", + " affects\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " affiiiate\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " affiliate\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.980000000 0.020000000\n", + "\n", + " affiliated\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9866666667 0.0133333333\n", + "\n", + " affiliates\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.997500000 0.002500000\n", + "\n", + " afford\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99250000 0.00750000\n", + "\n", + " affordable\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9808333333 0.0191666667\n", + "\n", + " afloat\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " aforementioned\n", + "trainSet$label F T\n", + " ham 0.9976174268 0.0023825732\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " afraid\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.995833333 0.004166667\n", + "\n", + " africa\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9875000000 0.0125000000\n", + "\n", + " aftermath\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " afternoon\n", + "trainSet$label F T\n", + " ham 0.972770592 0.027229408\n", + " spam 0.998333333 0.001666667\n", + "\n", + " agate\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " age\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.975833333 0.024166667\n", + "\n", + " aged\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " agencies\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " agency\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.995000000 0.005000000\n", + "\n", + " agenda\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.997500000 0.002500000\n", + "\n", + " agent\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.990000000 0.010000000\n", + "\n", + " agents\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " ages\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " aggie\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " aggies\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " aggragate\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " aggregate\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " aggressive\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9841666667 0.0158333333\n", + "\n", + " aging\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " agmt\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ago\n", + "trainSet$label F T\n", + " ham 0.990810075 0.009189925\n", + " spam 0.980833333 0.019166667\n", + "\n", + " agra\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " agree\n", + "trainSet$label F T\n", + " ham 0.9642614 0.0357386\n", + " spam 0.9900000 0.0100000\n", + "\n", + " agreed\n", + "trainSet$label F T\n", + " ham 0.988087134 0.011912866\n", + " spam 0.990833333 0.009166667\n", + "\n", + " agreement\n", + "trainSet$label F T\n", + " ham 0.94486045 0.05513955\n", + " spam 0.97666667 0.02333333\n", + "\n", + " agreements\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.997500000 0.002500000\n", + "\n", + " agrees\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " agricultural\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " agriculture\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " agua\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 1.000000000 0.000000000\n", + "\n", + " aguayo\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ahead\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 0.995000000 0.005000000\n", + "\n", + " aid\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9916666667 0.0083333333\n", + "\n", + " aids\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " ail\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9875 0.0125\n", + "\n", + " aim\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.995000000 0.005000000\n", + "\n", + " aimee\n", + "trainSet$label F T\n", + " ham 0.96732471 0.03267529\n", + " spam 1.00000000 0.00000000\n", + "\n", + " aimemail\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ain\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " air\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.986666667 0.013333333\n", + "\n", + " aiready\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " airline\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " airlines\n", + "trainSet$label F T\n", + " ham 0.9972770592 0.0027229408\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " airmail\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " airmass\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " airpanel\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " airplane\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " airport\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " aiso\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " aiways\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " ajax\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " ajello\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " aka\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " akin\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " alabama\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " alamo\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " alan\n", + "trainSet$label F T\n", + " ham 0.9972770592 0.0027229408\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " alarm\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " alaska\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " albert\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " alberta\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " albrecht\n", + "trainSet$label F T\n", + " ham 0.9942137509 0.0057862491\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " alcatel\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " alcoa\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " alcohol\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9825 0.0175\n", + "\n", + " aldermen\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " alert\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.979166667 0.020833333\n", + "\n", + " alex\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " alexander\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " alfonso\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ali\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.966666667 0.033333333\n", + "\n", + " alia\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " alias\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " align\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.987500000 0.012500000\n", + "\n", + " alike\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " aliquot\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " alisave\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " alium\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " alive\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.993333333 0.006666667\n", + "\n", + " alka\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " allan\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " alland\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 1.000000000 0.000000000\n", + "\n", + " allen\n", + "trainSet$label F T\n", + " ham 0.968005446 0.031994554\n", + " spam 0.995833333 0.004166667\n", + "\n", + " allergy\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9900000000 0.0100000000\n", + "\n", + " alles\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " alliance\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " allison\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " alliterate\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " allixon\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " allocatable\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " allocate\n", + "trainSet$label F T\n", + " ham 0.986044929 0.013955071\n", + " spam 0.998333333 0.001666667\n", + "\n", + " allocated\n", + "trainSet$label F T\n", + " ham 0.96562287 0.03437713\n", + " spam 1.00000000 0.00000000\n", + "\n", + " allocates\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " allocating\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 1.000000000 0.000000000\n", + "\n", + " allocation\n", + "trainSet$label F T\n", + " ham 0.9768550034 0.0231449966\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " allocations\n", + "trainSet$label F T\n", + " ham 0.98978897 0.01021103\n", + " spam 1.00000000 0.00000000\n", + "\n", + " allotted\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " allow\n", + "trainSet$label F T\n", + " ham 0.98264125 0.01735875\n", + " spam 0.98333333 0.01666667\n", + "\n", + " allowed\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.997500000 0.002500000\n", + "\n", + " allowing\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.998333333 0.001666667\n", + "\n", + " allows\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.991666667 0.008333333\n", + "\n", + " ally\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " almagest\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " almaguer\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " almost\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.982500000 0.017500000\n", + "\n", + " alone\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.990833333 0.009166667\n", + "\n", + " along\n", + "trainSet$label F T\n", + " ham 0.98910824 0.01089176\n", + " spam 0.99000000 0.01000000\n", + "\n", + " alot\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " aloud\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " alpha\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " alpine\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " already\n", + "trainSet$label F T\n", + " ham 0.96800545 0.03199455\n", + " spam 0.97333333 0.02666667\n", + "\n", + " also\n", + "trainSet$label F T\n", + " ham 0.8846154 0.1153846\n", + " spam 0.8900000 0.1100000\n", + "\n", + " alt\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.991666667 0.008333333\n", + "\n", + " alternate\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " alternative\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.986666667 0.013333333\n", + "\n", + " alternatives\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " althaus\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " although\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.990833333 0.009166667\n", + "\n", + " altra\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " alumni\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " alvin\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.998333333 0.001666667\n", + "\n", + " always\n", + "trainSet$label F T\n", + " ham 0.98502383 0.01497617\n", + " spam 0.94500000 0.05500000\n", + "\n", + " alysia\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " amanda\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " amateur\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " amazing\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.985000000 0.015000000\n", + "\n", + " amazon\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " ambien\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.985 0.015\n", + "\n", + " ambient\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " amblen\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " ambulate\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " amelia\n", + "trainSet$label F T\n", + " ham 0.9945541184 0.0054458816\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " amen\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " amend\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " amende\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " amended\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.996666667 0.003333333\n", + "\n", + " amendment\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " amerada\n", + "trainSet$label F T\n", + " ham 0.9959155888 0.0040844112\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " america\n", + "trainSet$label F T\n", + " ham 0.93362832 0.06637168\n", + " spam 0.96833333 0.03166667\n", + "\n", + " american\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.984166667 0.015833333\n", + "\n", + " americans\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " americas\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.998333333 0.001666667\n", + "\n", + " amherst\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " ami\n", + "trainSet$label F T\n", + " ham 0.94383935 0.05616065\n", + " spam 0.99750000 0.00250000\n", + "\n", + " amoco\n", + "trainSet$label F T\n", + " ham 0.9976174268 0.0023825732\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " among\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.983333333 0.016666667\n", + "\n", + " amorous\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " amount\n", + "trainSet$label F T\n", + " ham 0.97447243 0.02552757\n", + " spam 0.98750000 0.01250000\n", + "\n", + " amounts\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 1.000000000 0.000000000\n", + "\n", + " amp\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " amsterdam\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " amt\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " amy\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.997500000 0.002500000\n", + "\n", + " ana\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " anadarko\n", + "trainSet$label F T\n", + " ham 0.9972770592 0.0027229408\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " anal\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " analysis\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 0.995000000 0.005000000\n", + "\n", + " analyst\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.996666667 0.003333333\n", + "\n", + " analysts\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.996666667 0.003333333\n", + "\n", + " analyze\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " anax\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " anbsp\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " anchorite\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " ancient\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " anderson\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.995000000 0.005000000\n", + "\n", + " andrea\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " andrew\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.996666667 0.003333333\n", + "\n", + " andrews\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " andy\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.997500000 0.002500000\n", + "\n", + " angela\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.998333333 0.001666667\n", + "\n", + " angeles\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.991666667 0.008333333\n", + "\n", + " angelina\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " anger\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " angie\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.997500000 0.002500000\n", + "\n", + " anglo\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " aniline\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " animal\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " aninherent\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " aniseikonic\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " anita\n", + "trainSet$label F T\n", + " ham 0.98230088 0.01769912\n", + " spam 1.00000000 0.00000000\n", + "\n", + " ann\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.997500000 0.002500000\n", + "\n", + " anna\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " annals\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " anne\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.994166667 0.005833333\n", + "\n", + " annette\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " anniversary\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " announce\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.993333333 0.006666667\n", + "\n", + " announced\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.984166667 0.015833333\n", + "\n", + " announcement\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.988333333 0.011666667\n", + "\n", + " announcements\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995000000 0.005000000\n", + "\n", + " announces\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9850000000 0.0150000000\n", + "\n", + " annual\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.987500000 0.012500000\n", + "\n", + " annually\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9916666667 0.0083333333\n", + "\n", + " anonymous\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " another\n", + "trainSet$label F T\n", + " ham 0.96324030 0.03675970\n", + " spam 0.97583333 0.02416667\n", + "\n", + " anp\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " answer\n", + "trainSet$label F T\n", + " ham 0.98264125 0.01735875\n", + " spam 0.98666667 0.01333333\n", + "\n", + " answered\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.997500000 0.002500000\n", + "\n", + " answers\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.996666667 0.003333333\n", + "\n", + " anterior\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " anthony\n", + "trainSet$label F T\n", + " ham 0.9972770592 0.0027229408\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " anti\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9791666667 0.0208333333\n", + "\n", + " anticipate\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.995833333 0.004166667\n", + "\n", + " anticipated\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.973333333 0.026666667\n", + "\n", + " anticipates\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.97583333 0.02416667\n", + "\n", + " antivirus\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9908333333 0.0091666667\n", + "\n", + " antler\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " antoine\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " antoinette\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " antonio\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " anwar\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " anxiety\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9850000000 0.0150000000\n", + "\n", + " anxious\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " anybody\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " anymore\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.994166667 0.005833333\n", + "\n", + " anyone\n", + "trainSet$label F T\n", + " ham 0.97038802 0.02961198\n", + " spam 0.98750000 0.01250000\n", + "\n", + " anything\n", + "trainSet$label F T\n", + " ham 0.95915589 0.04084411\n", + " spam 0.98500000 0.01500000\n", + "\n", + " anytime\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.989166667 0.010833333\n", + "\n", + " anyway\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.996666667 0.003333333\n", + "\n", + " anywhere\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.986666667 0.013333333\n", + "\n", + " aoa\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " aoffa\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " aol\n", + "trainSet$label F T\n", + " ham 0.987746767 0.012253233\n", + " spam 0.996666667 0.003333333\n", + "\n", + " aopen\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.97166667 0.02833333\n", + "\n", + " apace\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " apache\n", + "trainSet$label F T\n", + " ham 0.98672566 0.01327434\n", + " spam 0.99750000 0.00250000\n", + "\n", + " apap\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " apapl\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " apart\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.993333333 0.006666667\n", + "\n", + " apc\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.97166667 0.02833333\n", + "\n", + " apologies\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " apologize\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.997500000 0.002500000\n", + "\n", + " app\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " appall\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " apparently\n", + "trainSet$label F T\n", + " ham 0.9908100749 0.0091899251\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " appeal\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " appear\n", + "trainSet$label F T\n", + " ham 0.986725664 0.013274336\n", + " spam 0.990833333 0.009166667\n", + "\n", + " appeared\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.995000000 0.005000000\n", + "\n", + " appears\n", + "trainSet$label F T\n", + " ham 0.986385296 0.013614704\n", + " spam 0.996666667 0.003333333\n", + "\n", + " appendix\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " appetite\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9900000000 0.0100000000\n", + "\n", + " apple\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " appliance\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " applicable\n", + "trainSet$label F T\n", + " ham 0.9945541184 0.0054458816\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " applicant\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " application\n", + "trainSet$label F T\n", + " ham 0.99149081 0.00850919\n", + " spam 0.97333333 0.02666667\n", + "\n", + " applications\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.986666667 0.013333333\n", + "\n", + " applied\n", + "trainSet$label F T\n", + " ham 0.9952348536 0.0047651464\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " applies\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " apply\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 0.987500000 0.012500000\n", + "\n", + " appoint\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " appointment\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99000000 0.01000000\n", + "\n", + " appointments\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " appr\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " appreciate\n", + "trainSet$label F T\n", + " ham 0.981960517 0.018039483\n", + " spam 0.996666667 0.003333333\n", + "\n", + " appreciated\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 1.000000000 0.000000000\n", + "\n", + " appreciation\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.996666667 0.003333333\n", + "\n", + " apprise\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " apprised\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " approach\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.994166667 0.005833333\n", + "\n", + " approaching\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " appropriate\n", + "trainSet$label F T\n", + " ham 0.98468346 0.01531654\n", + " spam 0.99750000 0.00250000\n", + "\n", + " appropriately\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " approval\n", + "trainSet$label F T\n", + " ham 0.98400272 0.01599728\n", + " spam 0.98333333 0.01666667\n", + "\n", + " approve\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.997500000 0.002500000\n", + "\n", + " approved\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.965000000 0.035000000\n", + "\n", + " approx\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.998333333 0.001666667\n", + "\n", + " approximate\n", + "trainSet$label F T\n", + " ham 0.9976174268 0.0023825732\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " approximateiy\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " approximately\n", + "trainSet$label F T\n", + " ham 0.97889721 0.02110279\n", + " spam 0.99000000 0.01000000\n", + "\n", + " apps\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " apr\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.993333333 0.006666667\n", + "\n", + " april\n", + "trainSet$label F T\n", + " ham 0.91865214 0.08134786\n", + " spam 0.99250000 0.00750000\n", + "\n", + " apwl\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " aqua\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " aquarius\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " aquila\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.998333333 0.001666667\n", + "\n", + " arabia\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " arafat\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " archaic\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " archer\n", + "trainSet$label F T\n", + " ham 0.986044929 0.013955071\n", + " spam 0.998333333 0.001666667\n", + "\n", + " architect\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.990833333 0.009166667\n", + "\n", + " architectural\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " architecture\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " arco\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " ard\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " arduous\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " area\n", + "trainSet$label F T\n", + " ham 0.98740640 0.01259360\n", + " spam 0.95916667 0.04083333\n", + "\n", + " areas\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.990000000 0.010000000\n", + "\n", + " aren\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.995833333 0.004166667\n", + "\n", + " arena\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " areveffo\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " arge\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " argest\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " argue\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " argus\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " arial\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.991666667 0.008333333\n", + "\n", + " arise\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.997500000 0.002500000\n", + "\n", + " arises\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " arizona\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " arm\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9916666667 0.0083333333\n", + "\n", + " armstrong\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 1.000000000 0.000000000\n", + "\n", + " army\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " arnold\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " around\n", + "trainSet$label F T\n", + " ham 0.97311096 0.02688904\n", + " spam 0.97500000 0.02500000\n", + "\n", + " arrange\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.994166667 0.005833333\n", + "\n", + " arranged\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " arrangement\n", + "trainSet$label F T\n", + " ham 0.9884275 0.0115725\n", + " spam 0.9975000 0.0025000\n", + "\n", + " arrangements\n", + "trainSet$label F T\n", + " ham 0.989108237 0.010891763\n", + " spam 0.995833333 0.004166667\n", + "\n", + " arrival\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " arrive\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.998333333 0.001666667\n", + "\n", + " arrived\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " arrives\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " arriving\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " arrow\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " ars\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " arsine\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " art\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.988333333 0.011666667\n", + "\n", + " arthritis\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " arthur\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " article\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.993333333 0.006666667\n", + "\n", + " artistes\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " artists\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " artprice\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " artwork\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " arty\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " aruba\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " asap\n", + "trainSet$label F T\n", + " ham 0.98332199 0.01667801\n", + " spam 0.99750000 0.00250000\n", + "\n", + " ascii\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.986666667 0.013333333\n", + "\n", + " ashland\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " ashley\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " ashman\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " asia\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.993333333 0.006666667\n", + "\n", + " aside\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " ask\n", + "trainSet$label F T\n", + " ham 0.98093941 0.01906059\n", + " spam 0.97750000 0.02250000\n", + "\n", + " asked\n", + "trainSet$label F T\n", + " ham 0.978556841 0.021443159\n", + " spam 0.990833333 0.009166667\n", + "\n", + " asking\n", + "trainSet$label F T\n", + " ham 0.989788972 0.010211028\n", + " spam 0.996666667 0.003333333\n", + "\n", + " asp\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.996666667 0.003333333\n", + "\n", + " aspect\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.998333333 0.001666667\n", + "\n", + " aspects\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995833333 0.004166667\n", + "\n", + " aspermont\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " asphyxiate\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " ass\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " assess\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " assessed\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " assessment\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " asset\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.995000000 0.005000000\n", + "\n", + " assets\n", + "trainSet$label F T\n", + " ham 0.99012934 0.00987066\n", + " spam 0.98750000 0.01250000\n", + "\n", + " assign\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.995833333 0.004166667\n", + "\n", + " assigned\n", + "trainSet$label F T\n", + " ham 0.99149081 0.00850919\n", + " spam 1.00000000 0.00000000\n", + "\n", + " assignment\n", + "trainSet$label F T\n", + " ham 0.9897889721 0.0102110279\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " assignments\n", + "trainSet$label F T\n", + " ham 0.9965963240 0.0034036760\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " assist\n", + "trainSet$label F T\n", + " ham 0.98978897 0.01021103\n", + " spam 0.98583333 0.01416667\n", + "\n", + " assistance\n", + "trainSet$label F T\n", + " ham 0.98570456 0.01429544\n", + " spam 0.98583333 0.01416667\n", + "\n", + " assistant\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.997500000 0.002500000\n", + "\n", + " assistants\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " assisting\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " associate\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.997500000 0.002500000\n", + "\n", + " associated\n", + "trainSet$label F T\n", + " ham 0.98536419 0.01463581\n", + " spam 0.99250000 0.00750000\n", + "\n", + " associates\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99500000 0.00500000\n", + "\n", + " association\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.993333333 0.006666667\n", + "\n", + " assume\n", + "trainSet$label F T\n", + " ham 0.991490810 0.008509190\n", + " spam 0.998333333 0.001666667\n", + "\n", + " assumed\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 1.000000000 0.000000000\n", + "\n", + " assuming\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 1.000000000 0.000000000\n", + "\n", + " assumption\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.997500000 0.002500000\n", + "\n", + " assumptions\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.975000000 0.025000000\n", + "\n", + " assurance\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98583333 0.01416667\n", + "\n", + " assure\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.995000000 0.005000000\n", + "\n", + " assured\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.98750000 0.01250000\n", + "\n", + " ast\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " astonish\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " astros\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " astroworld\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " asylum\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " ata\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " ate\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " ativan\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " atkins\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " atlanta\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " atlantis\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " atleast\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9775 0.0225\n", + "\n", + " atm\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " atmic\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " atmospheric\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " atp\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " atr\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " att\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " attach\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.998333333 0.001666667\n", + "\n", + " attached\n", + "trainSet$label F T\n", + " ham 0.76446562 0.23553438\n", + " spam 0.98916667 0.01083333\n", + "\n", + " attachment\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 0.997500000 0.002500000\n", + "\n", + " attachments\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.998333333 0.001666667\n", + "\n", + " attack\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9925000000 0.0075000000\n", + "\n", + " attacks\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " attempt\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.993333333 0.006666667\n", + "\n", + " attempted\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " attempting\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " attempts\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " attend\n", + "trainSet$label F T\n", + " ham 0.991490810 0.008509190\n", + " spam 0.994166667 0.005833333\n", + "\n", + " attended\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " attending\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 1.000000000 0.000000000\n", + "\n", + " attention\n", + "trainSet$label F T\n", + " ham 0.98706603 0.01293397\n", + " spam 0.97500000 0.02500000\n", + "\n", + " attire\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " attitude\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " attl\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 1.000000000 0.000000000\n", + "\n", + " attn\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " attorney\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995000000 0.005000000\n", + "\n", + " attract\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " attractions\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " attractive\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995000000 0.005000000\n", + "\n", + " auburndale\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " auction\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " audience\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.993333333 0.006666667\n", + "\n", + " audio\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9900000000 0.0100000000\n", + "\n", + " audit\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.996666667 0.003333333\n", + "\n", + " auditions\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " auditor\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.990833333 0.009166667\n", + "\n", + " audrey\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " auf\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " aug\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 0.993333333 0.006666667\n", + "\n", + " august\n", + "trainSet$label F T\n", + " ham 0.945541184 0.054458816\n", + " spam 0.990833333 0.009166667\n", + "\n", + " austin\n", + "trainSet$label F T\n", + " ham 0.9908100749 0.0091899251\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " australia\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.991666667 0.008333333\n", + "\n", + " australian\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " authentic\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " author\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " authorisation\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " authorised\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " authority\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.992500000 0.007500000\n", + "\n", + " authorization\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " authorized\n", + "trainSet$label F T\n", + " ham 0.9955752212 0.0044247788\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " auto\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.988333333 0.011666667\n", + "\n", + " autodesk\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " automate\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " automated\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " automatic\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995833333 0.004166667\n", + "\n", + " automatically\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.991666667 0.008333333\n", + "\n", + " automation\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " autonoms\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " autry\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " avaiiabie\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " avaiiable\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.991666667 0.008333333\n", + "\n", + " availabie\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " availabilities\n", + "trainSet$label F T\n", + " ham 0.99149081 0.00850919\n", + " spam 1.00000000 0.00000000\n", + "\n", + " availability\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.968333333 0.031666667\n", + "\n", + " available\n", + "trainSet$label F T\n", + " ham 0.95609258 0.04390742\n", + " spam 0.89916667 0.10083333\n", + "\n", + " avails\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ave\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.991666667 0.008333333\n", + "\n", + " avec\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " avenue\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " average\n", + "trainSet$label F T\n", + " ham 0.99149081 0.00850919\n", + " spam 0.99000000 0.01000000\n", + "\n", + " averaging\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " avg\n", + "trainSet$label F T\n", + " ham 0.9962559564 0.0037440436\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " avila\n", + "trainSet$label F T\n", + " ham 0.98059905 0.01940095\n", + " spam 1.00000000 0.00000000\n", + "\n", + " avoid\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.983333333 0.016666667\n", + "\n", + " avoidance\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " avoided\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " await\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " awaiting\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " awake\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " award\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9900000000 0.0100000000\n", + "\n", + " awarded\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " awards\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " aware\n", + "trainSet$label F T\n", + " ham 0.98468346 0.01531654\n", + " spam 0.97250000 0.02750000\n", + "\n", + " away\n", + "trainSet$label F T\n", + " ham 0.990810075 0.009189925\n", + " spam 0.972500000 0.027500000\n", + "\n", + " awesome\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.986666667 0.013333333\n", + "\n", + " awhile\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " axcp\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " axle\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " aybar\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " aye\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " azimuthal\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " azurix\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " babe\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " babes\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " baby\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.990833333 0.009166667\n", + "\n", + " babysit\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " bac\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " bachelor\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " back\n", + "trainSet$label F T\n", + " ham 0.90844112 0.09155888\n", + " spam 0.91583333 0.08416667\n", + "\n", + " backed\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.998333333 0.001666667\n", + "\n", + " backgammon\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " background\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.992500000 0.007500000\n", + "\n", + " backlog\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " backout\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " backup\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " backwards\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " bad\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.977500000 0.022500000\n", + "\n", + " badly\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " bag\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.998333333 0.001666667\n", + "\n", + " bahamas\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " baker\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " bakery\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " balance\n", + "trainSet$label F T\n", + " ham 0.98434309 0.01565691\n", + " spam 0.99000000 0.01000000\n", + "\n", + " balanced\n", + "trainSet$label F T\n", + " ham 0.9945541184 0.0054458816\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " balances\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " balancing\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " balfour\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.997500000 0.002500000\n", + "\n", + " ball\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.995000000 0.005000000\n", + "\n", + " ballard\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " ballot\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " ballots\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " balls\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " baltic\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " balustrade\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " bamako\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " bammel\n", + "trainSet$label F T\n", + " ham 0.98978897 0.01021103\n", + " spam 1.00000000 0.00000000\n", + "\n", + " bammelyoungfamilies\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " band\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " bandwidth\n", + "trainSet$label F T\n", + " ham 0.9976174268 0.0023825732\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " bane\n", + "trainSet$label F T\n", + " ham 0.9931926481 0.0068073519\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " bang\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " banister\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " bank\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.970000000 0.030000000\n", + "\n", + " banking\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.987500000 0.012500000\n", + "\n", + " bankrupt\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " bankruptcy\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.984166667 0.015833333\n", + "\n", + " banks\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.993333333 0.006666667\n", + "\n", + " banner\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " bar\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.995833333 0.004166667\n", + "\n", + " barbados\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " barbara\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 1.000000000 0.000000000\n", + "\n", + " barcelona\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " barclays\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " barge\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " barkowsky\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " barnes\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " barnett\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " baron\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " barreis\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " barrels\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " barrett\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 1.000000000 0.000000000\n", + "\n", + " barring\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " barry\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.997500000 0.002500000\n", + "\n", + " bart\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " base\n", + "trainSet$label F T\n", + " ham 0.98536419 0.01463581\n", + " spam 0.98500000 0.01500000\n", + "\n", + " baseboard\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " based\n", + "trainSet$label F T\n", + " ham 0.94894486 0.05105514\n", + " spam 0.94833333 0.05166667\n", + "\n", + " baseload\n", + "trainSet$label F T\n", + " ham 0.9894486 0.0105514\n", + " spam 1.0000000 0.0000000\n", + "\n", + " baseman\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " basetxt\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " basic\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.996666667 0.003333333\n", + "\n", + " basically\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " basin\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " basis\n", + "trainSet$label F T\n", + " ham 0.9758339 0.0241661\n", + " spam 0.9875000 0.0125000\n", + "\n", + " basket\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " basketball\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " bass\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.997500000 0.002500000\n", + "\n", + " bassinet\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " batch\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.990833333 0.009166667\n", + "\n", + " batchelder\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " bates\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " batteries\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " battery\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9925000000 0.0075000000\n", + "\n", + " battle\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " baumbach\n", + "trainSet$label F T\n", + " ham 0.98059905 0.01940095\n", + " spam 1.00000000 0.00000000\n", + "\n", + " bauxite\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " bav\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 1.000000000 0.000000000\n", + "\n", + " baxter\n", + "trainSet$label F T\n", + " ham 0.9925119129 0.0074880871\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " bay\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.994166667 0.005833333\n", + "\n", + " bayer\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " baylor\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " bayou\n", + "trainSet$label F T\n", + " ham 0.9972770592 0.0027229408\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " bayport\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.998333333 0.001666667\n", + "\n", + " baytown\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " bazaar\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " bcc\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " bci\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " bcp\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " beach\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.993333333 0.006666667\n", + "\n", + " beale\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " bean\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " bear\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.994166667 0.005833333\n", + "\n", + " beard\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.998333333 0.001666667\n", + "\n", + " beat\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.997500000 0.002500000\n", + "\n", + " beaty\n", + "trainSet$label F T\n", + " ham 0.98672566 0.01327434\n", + " spam 1.00000000 0.00000000\n", + "\n", + " beaumont\n", + "trainSet$label F T\n", + " ham 0.98025868 0.01974132\n", + " spam 0.99750000 0.00250000\n", + "\n", + " beautiful\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.991666667 0.008333333\n", + "\n", + " beauty\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9866666667 0.0133333333\n", + "\n", + " became\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99500000 0.00500000\n", + "\n", + " beck\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 0.998333333 0.001666667\n", + "\n", + " beckon\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " becky\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.998333333 0.001666667\n", + "\n", + " become\n", + "trainSet$label F T\n", + " ham 0.990810075 0.009189925\n", + " spam 0.970833333 0.029166667\n", + "\n", + " becomes\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.996666667 0.003333333\n", + "\n", + " becoming\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.994166667 0.005833333\n", + "\n", + " bed\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.989166667 0.010833333\n", + "\n", + " bedridden\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " bedroom\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " bedspread\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " beemer\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 1.000000000 0.000000000\n", + "\n", + " beer\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " began\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.994166667 0.005833333\n", + "\n", + " begin\n", + "trainSet$label F T\n", + " ham 0.98502383 0.01497617\n", + " spam 0.98000000 0.02000000\n", + "\n", + " beginning\n", + "trainSet$label F T\n", + " ham 0.965963240 0.034036760\n", + " spam 0.993333333 0.006666667\n", + "\n", + " begins\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.998333333 0.001666667\n", + "\n", + " beguile\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " begun\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.994166667 0.005833333\n", + "\n", + " behalf\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 0.993333333 0.006666667\n", + "\n", + " behave\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " behind\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.992500000 0.007500000\n", + "\n", + " beiieve\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " beiieves\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " bel\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " belch\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " belief\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995833333 0.004166667\n", + "\n", + " beliefs\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9816666667 0.0183333333\n", + "\n", + " believe\n", + "trainSet$label F T\n", + " ham 0.97004765 0.02995235\n", + " spam 0.95333333 0.04666667\n", + "\n", + " believed\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " believes\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.975833333 0.024166667\n", + "\n", + " belize\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9883333333 0.0116666667\n", + "\n", + " bell\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " bellamy\n", + "trainSet$label F T\n", + " ham 0.978216474 0.021783526\n", + " spam 0.998333333 0.001666667\n", + "\n", + " beloit\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " belong\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " belongs\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.998333333 0.001666667\n", + "\n", + " belt\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " beman\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " ben\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.997500000 0.002500000\n", + "\n", + " bender\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " beneath\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " benedict\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.997500000 0.002500000\n", + "\n", + " beneficial\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.998333333 0.001666667\n", + "\n", + " beneficiary\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.991666667 0.008333333\n", + "\n", + " benefit\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.991666667 0.008333333\n", + "\n", + " benefits\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.986666667 0.013333333\n", + "\n", + " benin\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " benjamin\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " bennett\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.996666667 0.003333333\n", + "\n", + " bennick\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " benoit\n", + "trainSet$label F T\n", + " ham 0.9911504425 0.0088495575\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " benson\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " bequest\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " bereave\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " berke\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " bernard\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " bernstein\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " berryman\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " bertram\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " best\n", + "trainSet$label F T\n", + " ham 0.97277059 0.02722941\n", + " spam 0.84916667 0.15083333\n", + "\n", + " bet\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " beth\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.998333333 0.001666667\n", + "\n", + " better\n", + "trainSet$label F T\n", + " ham 0.98025868 0.01974132\n", + " spam 0.94416667 0.05583333\n", + "\n", + " betty\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " bev\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 1.000000000 0.000000000\n", + "\n", + " beverage\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " beverly\n", + "trainSet$label F T\n", + " ham 0.98502383 0.01497617\n", + " spam 0.99750000 0.00250000\n", + "\n", + " beware\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " beyond\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.995000000 0.005000000\n", + "\n", + " bezel\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " bgcolor\n", + "trainSet$label F T\n", + " ham 1.00 0.00\n", + " spam 0.99 0.01\n", + "\n", + " bherod\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " bialystok\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " biank\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " bias\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98583333 0.01416667\n", + "\n", + " bibi\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " bible\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " bicameral\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " bid\n", + "trainSet$label F T\n", + " ham 0.990810075 0.009189925\n", + " spam 0.997500000 0.002500000\n", + "\n", + " bidirectional\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " bids\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " bidweek\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " biel\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " big\n", + "trainSet$label F T\n", + " ham 0.98468346 0.01531654\n", + " spam 0.97833333 0.02166667\n", + "\n", + " bigfoot\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " bigger\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9891666667 0.0108333333\n", + "\n", + " biggest\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.989166667 0.010833333\n", + "\n", + " biilion\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " bike\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " bilberry\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " bilharziasis\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " bilinear\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " bill\n", + "trainSet$label F T\n", + " ham 0.98808713 0.01191287\n", + " spam 0.96500000 0.03500000\n", + "\n", + " billed\n", + "trainSet$label F T\n", + " ham 0.9874064 0.0125936\n", + " spam 1.0000000 0.0000000\n", + "\n", + " billing\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.995000000 0.005000000\n", + "\n", + " billion\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.983333333 0.016666667\n", + "\n", + " billions\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " bills\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.995000000 0.005000000\n", + "\n", + " billy\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.998333333 0.001666667\n", + "\n", + " bin\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " binary\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " binder\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " binding\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.995833333 0.004166667\n", + "\n", + " bingham\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " binghamton\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " bingo\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " bingoline\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " bio\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " biochemic\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " bioelectronics\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " biosphere\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " biota\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " bird\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " birk\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " birth\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " birthday\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " birthright\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " bisque\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " bit\n", + "trainSet$label F T\n", + " ham 0.991150442 0.008849558\n", + " spam 0.980833333 0.019166667\n", + "\n", + " biz\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9525 0.0475\n", + "\n", + " bjd\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " black\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.985833333 0.014166667\n", + "\n", + " blackjack\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " blah\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " blake\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " blanca\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " blanchard\n", + "trainSet$label F T\n", + " ham 0.9976174268 0.0023825732\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " blancpain\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " bland\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " blank\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.978333333 0.021666667\n", + "\n", + " blast\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " blay\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " bleed\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " bless\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.996666667 0.003333333\n", + "\n", + " blest\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " blevins\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " blink\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " blk\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " block\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.997500000 0.002500000\n", + "\n", + " blockbuster\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " blocks\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " blocky\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " blood\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.989166667 0.010833333\n", + "\n", + " bloodbath\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " blow\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.996666667 0.003333333\n", + "\n", + " blown\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " blue\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.992500000 0.007500000\n", + "\n", + " bluedolphin\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " bluetooth\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " bluish\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " bluster\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " blustery\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " blvd\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.986666667 0.013333333\n", + "\n", + " bmar\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " bmw\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " bnp\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " board\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.990000000 0.010000000\n", + "\n", + " boas\n", + "trainSet$label F T\n", + " ham 0.98808713 0.01191287\n", + " spam 1.00000000 0.00000000\n", + "\n", + " boat\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " boatload\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " bob\n", + "trainSet$label F T\n", + " ham 0.899251191 0.100748809\n", + " spam 0.996666667 0.003333333\n", + "\n", + " bobbie\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " bobby\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.995833333 0.004166667\n", + "\n", + " boca\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " bod\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " bodies\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " body\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.959166667 0.040833333\n", + "\n", + " boeing\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " bold\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.994166667 0.005833333\n", + "\n", + " bolivia\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " bolt\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " bonded\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " bone\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " bonfire\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " bonus\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.991666667 0.008333333\n", + "\n", + " book\n", + "trainSet$label F T\n", + " ham 0.98093941 0.01906059\n", + " spam 0.98333333 0.01666667\n", + "\n", + " bookbind\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " booked\n", + "trainSet$label F T\n", + " ham 0.9863852961 0.0136147039\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " bookend\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " booking\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " books\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.991666667 0.008333333\n", + "\n", + " boom\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " boost\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9866666667 0.0133333333\n", + "\n", + " booth\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " border\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9825000000 0.0175000000\n", + "\n", + " boris\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " borland\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " born\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995000000 0.005000000\n", + "\n", + " borneo\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " borrow\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " bose\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " boss\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " boston\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " bottle\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.990833333 0.009166667\n", + "\n", + " bottles\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " bottom\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.984166667 0.015833333\n", + "\n", + " boudar\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " bought\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.984166667 0.015833333\n", + "\n", + " boule\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " boulevard\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " bounce\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995833333 0.004166667\n", + "\n", + " bound\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " boundary\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.995833333 0.004166667\n", + "\n", + " bow\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " bowen\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.997500000 0.002500000\n", + "\n", + " bowie\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " bowl\n", + "trainSet$label F T\n", + " ham 0.9972770592 0.0027229408\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " box\n", + "trainSet$label F T\n", + " ham 0.9894486 0.0105514\n", + " spam 0.9725000 0.0275000\n", + "\n", + " boxes\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " boy\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9891666667 0.0108333333\n", + "\n", + " boyce\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " boys\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " bpd\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " bpl\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " bra\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " braband\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 1.000000000 0.000000000\n", + "\n", + " brackett\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " bractive\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " brad\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 1.000000000 0.000000000\n", + "\n", + " braden\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " bradford\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " bradley\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " bradshaw\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " brady\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " brain\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.995833333 0.004166667\n", + "\n", + " bramble\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " branch\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " brand\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.95833333 0.04166667\n", + "\n", + " branded\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " brandee\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " brandon\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.998333333 0.001666667\n", + "\n", + " brands\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9883333333 0.0116666667\n", + "\n", + " brandywine\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.998333333 0.001666667\n", + "\n", + " brant\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " bravado\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " brazaitis\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " brazil\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " brazilian\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " brazoria\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " brazos\n", + "trainSet$label F T\n", + " ham 0.99149081 0.00850919\n", + " spam 1.00000000 0.00000000\n", + "\n", + " brbr\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " brcc\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 1.000000000 0.000000000\n", + "\n", + " breach\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " break\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.989166667 0.010833333\n", + "\n", + " breakdown\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " breakfast\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " breaking\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.985000000 0.015000000\n", + "\n", + " breakout\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.992500000 0.007500000\n", + "\n", + " breast\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " breastplate\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " brec\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " breguet\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " breitling\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " brenda\n", + "trainSet$label F T\n", + " ham 0.9775357386 0.0224642614\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " brendan\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " brennan\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 1.000000000 0.000000000\n", + "\n", + " brent\n", + "trainSet$label F T\n", + " ham 0.9908100749 0.0091899251\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " breslau\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " bretz\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 1.000000000 0.000000000\n", + "\n", + " brewer\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " brex\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " brfont\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " brian\n", + "trainSet$label F T\n", + " ham 0.96460177 0.03539823\n", + " spam 0.99750000 0.00250000\n", + "\n", + " bridegroom\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " bridge\n", + "trainSet$label F T\n", + " ham 0.98808713 0.01191287\n", + " spam 0.98916667 0.01083333\n", + "\n", + " bridgeback\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " bridged\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " bridgeline\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " bridges\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " bridgette\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " bridging\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " brief\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.996666667 0.003333333\n", + "\n", + " briefly\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " bright\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " briley\n", + "trainSet$label F T\n", + " ham 0.991150442 0.008849558\n", + " spam 1.000000000 0.000000000\n", + "\n", + " bring\n", + "trainSet$label F T\n", + " ham 0.98400272 0.01599728\n", + " spam 0.98250000 0.01750000\n", + "\n", + " bringing\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.993333333 0.006666667\n", + "\n", + " brings\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " britain\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " british\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " broad\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995000000 0.005000000\n", + "\n", + " broadband\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.991666667 0.008333333\n", + "\n", + " broadcast\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " broadcasting\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " broadway\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " brochure\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " brock\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " broke\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " broken\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.996666667 0.003333333\n", + "\n", + " broker\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.981666667 0.018333333\n", + "\n", + " brokerage\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " brokered\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 1.000000000 0.000000000\n", + "\n", + " bronco\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " broomcorn\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " broth\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " brother\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.990000000 0.010000000\n", + "\n", + " brought\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.995833333 0.004166667\n", + "\n", + " brown\n", + "trainSet$label F T\n", + " ham 0.989788972 0.010211028\n", + " spam 0.995833333 0.004166667\n", + "\n", + " browse\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " browser\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.950000000 0.050000000\n", + "\n", + " brrating\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " bruce\n", + "trainSet$label F T\n", + " ham 0.9853641933 0.0146358067\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " bryan\n", + "trainSet$label F T\n", + " ham 0.97957794 0.02042206\n", + " spam 1.00000000 0.00000000\n", + "\n", + " bryant\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " bryce\n", + "trainSet$label F T\n", + " ham 0.9931926481 0.0068073519\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " btu\n", + "trainSet$label F T\n", + " ham 0.9819605174 0.0180394826\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " bubba\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " bubert\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " buchanan\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " buck\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " buckley\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 1.000000000 0.000000000\n", + "\n", + " bucks\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " bucolic\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " bud\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " buddy\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.994166667 0.005833333\n", + "\n", + " budget\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.990833333 0.009166667\n", + "\n", + " budgets\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " buffet\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " buffett\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " bug\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " bugle\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " buhler\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " build\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.982500000 0.017500000\n", + "\n", + " builder\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " building\n", + "trainSet$label F T\n", + " ham 0.99149081 0.00850919\n", + " spam 0.99250000 0.00750000\n", + "\n", + " buildings\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " built\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.991666667 0.008333333\n", + "\n", + " bulk\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9900000000 0.0100000000\n", + "\n", + " bull\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " bulletin\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995833333 0.004166667\n", + "\n", + " bump\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " bundle\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " bundled\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " bunny\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " buoy\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " bupropion\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " burch\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " burchfield\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " burden\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " burdock\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " buried\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " burke\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " burn\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.995000000 0.005000000\n", + "\n", + " burning\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " burns\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " burp\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " burst\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " bus\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " busby\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " bush\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.998333333 0.001666667\n", + "\n", + " business\n", + "trainSet$label F T\n", + " ham 0.95473111 0.04526889\n", + " spam 0.92250000 0.07750000\n", + "\n", + " businesses\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.983333333 0.016666667\n", + "\n", + " buspar\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " buss\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " bussell\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 1.000000000 0.000000000\n", + "\n", + " busy\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.995833333 0.004166667\n", + "\n", + " butalbital\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " butane\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " butt\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " button\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.990833333 0.009166667\n", + "\n", + " buttons\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.996666667 0.003333333\n", + "\n", + " buy\n", + "trainSet$label F T\n", + " ham 0.97889721 0.02110279\n", + " spam 0.94333333 0.05666667\n", + "\n", + " buyback\n", + "trainSet$label F T\n", + " ham 0.97889721 0.02110279\n", + " spam 1.00000000 0.00000000\n", + "\n", + " buybacks\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 1.000000000 0.000000000\n", + "\n", + " buyer\n", + "trainSet$label F T\n", + " ham 0.9884275 0.0115725\n", + " spam 1.0000000 0.0000000\n", + "\n", + " buyers\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " buying\n", + "trainSet$label F T\n", + " ham 0.987066031 0.012933969\n", + " spam 0.996666667 0.003333333\n", + "\n", + " buys\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 1.000000000 0.000000000\n", + "\n", + " buzzing\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " bvjkiu\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " bvlgari\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " bye\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9916666667 0.0083333333\n", + "\n", + " bypass\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.996666667 0.003333333\n", + "\n", + " byroad\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " byron\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " byronellis\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " byte\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " byzantine\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " bze\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " cabinet\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " cable\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9833333333 0.0166666667\n", + "\n", + " cackle\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " cadenza\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " caffeine\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " caiifornia\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " cakewalk\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " cal\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.996666667 0.003333333\n", + "\n", + " calamity\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " calcagno\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " calcite\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " calculable\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " calculate\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " calculated\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " calculating\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " calculation\n", + "trainSet$label F T\n", + " ham 0.9965963240 0.0034036760\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " calendar\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.995000000 0.005000000\n", + "\n", + " calendars\n", + "trainSet$label F T\n", + " ham 0.9969366916 0.0030633084\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " calgary\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " california\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.992500000 0.007500000\n", + "\n", + " call\n", + "trainSet$label F T\n", + " ham 0.8665759 0.1334241\n", + " spam 0.9650000 0.0350000\n", + "\n", + " called\n", + "trainSet$label F T\n", + " ham 0.97515317 0.02484683\n", + " spam 0.97833333 0.02166667\n", + "\n", + " calling\n", + "trainSet$label F T\n", + " ham 0.989788972 0.010211028\n", + " spam 0.996666667 0.003333333\n", + "\n", + " calls\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 0.991666667 0.008333333\n", + "\n", + " calorized\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " calpine\n", + "trainSet$label F T\n", + " ham 0.98093941 0.01906059\n", + " spam 1.00000000 0.00000000\n", + "\n", + " calvert\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " calvin\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " cam\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " cambric\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " camcorder\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " camden\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.997500000 0.002500000\n", + "\n", + " came\n", + "trainSet$label F T\n", + " ham 0.98876787 0.01123213\n", + " spam 0.98583333 0.01416667\n", + "\n", + " camera\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.988333333 0.011666667\n", + "\n", + " cameras\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " cameron\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " camille\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " camlem\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " camp\n", + "trainSet$label F T\n", + " ham 0.970388019 0.029611981\n", + " spam 0.998333333 0.001666667\n", + "\n", + " campaign\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9858333333 0.0141666667\n", + "\n", + " campbell\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " campos\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " campus\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " can\n", + "trainSet$label F T\n", + " ham 0.7763785 0.2236215\n", + " spam 0.7391667 0.2608333\n", + "\n", + " canaan\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " canada\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.946666667 0.053333333\n", + "\n", + " canadian\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9925000000 0.0075000000\n", + "\n", + " canales\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " cancel\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.993333333 0.006666667\n", + "\n", + " cancelled\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.997500000 0.002500000\n", + "\n", + " cancer\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.994166667 0.005833333\n", + "\n", + " candace\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " candidate\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " candidates\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " candle\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " candy\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " canm\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " cannon\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.997500000 0.002500000\n", + "\n", + " canon\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.96666667 0.03333333\n", + "\n", + " canopy\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " cant\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " cantrell\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " canus\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " canvas\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " cap\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.982500000 0.017500000\n", + "\n", + " capabilities\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.990000000 0.010000000\n", + "\n", + " capability\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.998333333 0.001666667\n", + "\n", + " capable\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " capacity\n", + "trainSet$label F T\n", + " ham 0.990129340 0.009870660\n", + " spam 0.993333333 0.006666667\n", + "\n", + " capital\n", + "trainSet$label F T\n", + " ham 0.98298162 0.01701838\n", + " spam 0.98250000 0.01750000\n", + "\n", + " capitol\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " caps\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " capsule\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " captain\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " captaincy\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " capture\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.995833333 0.004166667\n", + "\n", + " captured\n", + "trainSet$label F T\n", + " ham 0.9972770592 0.0027229408\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " captures\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " car\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.984166667 0.015833333\n", + "\n", + " carbaugh\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " carbide\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.996666667 0.003333333\n", + "\n", + " card\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.980833333 0.019166667\n", + "\n", + " cards\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.991666667 0.008333333\n", + "\n", + " care\n", + "trainSet$label F T\n", + " ham 0.98604493 0.01395507\n", + " spam 0.97333333 0.02666667\n", + "\n", + " career\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " careful\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " carefully\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.996666667 0.003333333\n", + "\n", + " carey\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.998333333 0.001666667\n", + "\n", + " cargo\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " caribbean\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " carisoprodol\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " carl\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " carla\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " carlos\n", + "trainSet$label F T\n", + " ham 0.9656228727 0.0343771273\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " carol\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.998333333 0.001666667\n", + "\n", + " carolina\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " carolyn\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " carouse\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " carrie\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 1.000000000 0.000000000\n", + "\n", + " carried\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995000000 0.005000000\n", + "\n", + " carrier\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9916666667 0.0083333333\n", + "\n", + " carriere\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 1.000000000 0.000000000\n", + "\n", + " carriers\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " carries\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " carrizo\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " carry\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.985000000 0.015000000\n", + "\n", + " carrying\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " cars\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " carson\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " cart\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.995000000 0.005000000\n", + "\n", + " carter\n", + "trainSet$label F T\n", + " ham 0.9959155888 0.0040844112\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " carthage\n", + "trainSet$label F T\n", + " ham 0.980258679 0.019741321\n", + " spam 0.998333333 0.001666667\n", + "\n", + " cartier\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.991666667 0.008333333\n", + "\n", + " cartilage\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " carton\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " cartoon\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " cartoons\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " cartridge\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " cartridges\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " cartwheel\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 0.998333333 0.001666667\n", + "\n", + " case\n", + "trainSet$label F T\n", + " ham 0.98196052 0.01803948\n", + " spam 0.97500000 0.02500000\n", + "\n", + " cases\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.997500000 0.002500000\n", + "\n", + " casework\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " casey\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " cash\n", + "trainSet$label F T\n", + " ham 0.98944860 0.01055140\n", + " spam 0.96083333 0.03916667\n", + "\n", + " cashout\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " casing\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " casino\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " cass\n", + "trainSet$label F T\n", + " ham 0.98706603 0.01293397\n", + " spam 1.00000000 0.00000000\n", + "\n", + " cassette\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " cast\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " casual\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " casualties\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " cat\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9925000000 0.0075000000\n", + "\n", + " catalog\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " catalogue\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " catastrophic\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " catch\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.992500000 0.007500000\n", + "\n", + " catechism\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " categories\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " category\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.985833333 0.014166667\n", + "\n", + " cater\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " catherine\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.995833333 0.004166667\n", + "\n", + " cathy\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.997500000 0.002500000\n", + "\n", + " catkin\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " cats\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " cattle\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " caught\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " cause\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.958333333 0.041666667\n", + "\n", + " caused\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.996666667 0.003333333\n", + "\n", + " causes\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.997500000 0.002500000\n", + "\n", + " causey\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " causing\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.997500000 0.002500000\n", + "\n", + " caution\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " cautioned\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98833333 0.01166667\n", + "\n", + " cautious\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " cavern\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " cbs\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " ccffo\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " ccgm\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " cco\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " ccs\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 1.000000000 0.000000000\n", + "\n", + " cdnow\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " cdp\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " cdrw\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " cds\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995833333 0.004166667\n", + "\n", + " cdyv\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " cease\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " cec\n", + "trainSet$label F T\n", + " ham 0.991150442 0.008849558\n", + " spam 1.000000000 0.000000000\n", + "\n", + " cecilia\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " celanese\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " celebrate\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99500000 0.00500000\n", + "\n", + " celebration\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " celebrex\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " cell\n", + "trainSet$label F T\n", + " ham 0.989788972 0.010211028\n", + " spam 0.996666667 0.003333333\n", + "\n", + " cellpadding\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.990833333 0.009166667\n", + "\n", + " cells\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " cellspacing\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " cellular\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.995833333 0.004166667\n", + "\n", + " census\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " cent\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.996666667 0.003333333\n", + "\n", + " centana\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 1.000000000 0.000000000\n", + "\n", + " center\n", + "trainSet$label F T\n", + " ham 0.98366236 0.01633764\n", + " spam 0.97833333 0.02166667\n", + "\n", + " centera\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " centerfont\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " centers\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.995000000 0.005000000\n", + "\n", + " central\n", + "trainSet$label F T\n", + " ham 0.98400272 0.01599728\n", + " spam 0.99000000 0.01000000\n", + "\n", + " centre\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " cents\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.994166667 0.005833333\n", + "\n", + " ceo\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.985000000 0.015000000\n", + "\n", + " ceos\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " cernosek\n", + "trainSet$label F T\n", + " ham 0.97957794 0.02042206\n", + " spam 1.00000000 0.00000000\n", + "\n", + " certain\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.961666667 0.038333333\n", + "\n", + " certainly\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " certificate\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.994166667 0.005833333\n", + "\n", + " certificates\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " certified\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9900000000 0.0100000000\n", + "\n", + " ces\n", + "trainSet$label F T\n", + " ham 0.9894486 0.0105514\n", + " spam 0.9950000 0.0050000\n", + "\n", + " cfp\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " cfr\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " cgi\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " chad\n", + "trainSet$label F T\n", + " ham 0.985704561 0.014295439\n", + " spam 0.998333333 0.001666667\n", + "\n", + " chain\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " chains\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " chair\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.995000000 0.005000000\n", + "\n", + " chairman\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.994166667 0.005833333\n", + "\n", + " chalcedony\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " chalcocite\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " challenge\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " challenged\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " challenges\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " chamber\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " chambers\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.998333333 0.001666667\n", + "\n", + " champion\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " chan\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " chance\n", + "trainSet$label F T\n", + " ham 0.98434309 0.01565691\n", + " spam 0.98666667 0.01333333\n", + "\n", + " chances\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.996666667 0.003333333\n", + "\n", + " chandelier\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " chanel\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " change\n", + "trainSet$label F T\n", + " ham 0.89754935 0.10245065\n", + " spam 0.93916667 0.06083333\n", + "\n", + " changed\n", + "trainSet$label F T\n", + " ham 0.96596324 0.03403676\n", + " spam 0.99500000 0.00500000\n", + "\n", + " changes\n", + "trainSet$label F T\n", + " ham 0.939754935 0.060245065\n", + " spam 0.994166667 0.005833333\n", + "\n", + " changing\n", + "trainSet$label F T\n", + " ham 0.989448604 0.010551396\n", + " spam 0.996666667 0.003333333\n", + "\n", + " channel\n", + "trainSet$label F T\n", + " ham 0.98808713 0.01191287\n", + " spam 0.98666667 0.01333333\n", + "\n", + " channels\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9916666667 0.0083333333\n", + "\n", + " channelview\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " chantelle\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " chaplaincy\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " chapman\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " chapter\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " charge\n", + "trainSet$label F T\n", + " ham 0.98944860 0.01055140\n", + " spam 0.96916667 0.03083333\n", + "\n", + " charged\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.998333333 0.001666667\n", + "\n", + " charges\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.995000000 0.005000000\n", + "\n", + " charging\n", + "trainSet$label F T\n", + " ham 0.9976174268 0.0023825732\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " charity\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " charlene\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 1.000000000 0.000000000\n", + "\n", + " charles\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 0.995833333 0.004166667\n", + "\n", + " charlie\n", + "trainSet$label F T\n", + " ham 0.970388019 0.029611981\n", + " spam 0.995833333 0.004166667\n", + "\n", + " charlotte\n", + "trainSet$label F T\n", + " ham 0.99012934 0.00987066\n", + " spam 0.99750000 0.00250000\n", + "\n", + " charset\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.978333333 0.021666667\n", + "\n", + " chart\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.998333333 0.001666667\n", + "\n", + " charts\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " charybdis\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " chase\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " chat\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.994166667 0.005833333\n", + "\n", + " che\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " cheap\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9566666667 0.0433333333\n", + "\n", + " cheaper\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " cheapest\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98333333 0.01666667\n", + "\n", + " cheat\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " cheating\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " check\n", + "trainSet$label F T\n", + " ham 0.95473111 0.04526889\n", + " spam 0.93833333 0.06166667\n", + "\n", + " checked\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.998333333 0.001666667\n", + "\n", + " checking\n", + "trainSet$label F T\n", + " ham 0.9955752212 0.0044247788\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " checkout\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.995833333 0.004166667\n", + "\n", + " checks\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " cheeap\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " cheesy\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " chemical\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 1.000000000 0.000000000\n", + "\n", + " chemicals\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " cherry\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 0.997500000 0.002500000\n", + "\n", + " cheryl\n", + "trainSet$label F T\n", + " ham 0.9823008850 0.0176991150\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " cheshire\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " chest\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " chevron\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.996666667 0.003333333\n", + "\n", + " chfc\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " chicago\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " chief\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.995000000 0.005000000\n", + "\n", + " child\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.994166667 0.005833333\n", + "\n", + " childers\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " children\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.984166667 0.015833333\n", + "\n", + " childrens\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " chimney\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " china\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9908333333 0.0091666667\n", + "\n", + " chinese\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " chip\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " choate\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 1.000000000 0.000000000\n", + "\n", + " chocolate\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " choice\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.987500000 0.012500000\n", + "\n", + " choices\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " chokshi\n", + "trainSet$label F T\n", + " ham 0.95132743 0.04867257\n", + " spam 1.00000000 0.00000000\n", + "\n", + " cholesterol\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9875 0.0125\n", + "\n", + " cholinesterase\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " choose\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.975000000 0.025000000\n", + "\n", + " chopard\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " choral\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " chose\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " chosen\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " chris\n", + "trainSet$label F T\n", + " ham 0.9891082369 0.0108917631\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " christ\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " christensen\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " christi\n", + "trainSet$label F T\n", + " ham 0.9969366916 0.0030633084\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " christian\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.994166667 0.005833333\n", + "\n", + " christiansen\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " christina\n", + "trainSet$label F T\n", + " ham 0.9972770592 0.0027229408\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " christine\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.998333333 0.001666667\n", + "\n", + " christmas\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.991666667 0.008333333\n", + "\n", + " christopher\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.997500000 0.002500000\n", + "\n", + " christy\n", + "trainSet$label F T\n", + " ham 0.98978897 0.01021103\n", + " spam 1.00000000 0.00000000\n", + "\n", + " chromium\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " chronic\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " chuck\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 1.000000000 0.000000000\n", + "\n", + " chuckle\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " chummy\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " chun\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " church\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.995000000 0.005000000\n", + "\n", + " chutney\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " chyral\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " cia\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98583333 0.01416667\n", + "\n", + " cial\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " cialiis\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " cialis\n", + "trainSet$label F T\n", + " ham 1.00 0.00\n", + " spam 0.95 0.05\n", + "\n", + " cialls\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " cico\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " cigarette\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " ciilck\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " cilco\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " cindy\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.998333333 0.001666667\n", + "\n", + " cinergy\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " cingular\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " cinm\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " cipco\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " circle\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " circulating\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " circulation\n", + "trainSet$label F T\n", + " ham 1.00 0.00\n", + " spam 0.99 0.01\n", + "\n", + " circumstances\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " cisco\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9716666667 0.0283333333\n", + "\n", + " citce\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " citgo\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " citibank\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " cities\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.995833333 0.004166667\n", + "\n", + " citizen\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " citizensr\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " citrate\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " city\n", + "trainSet$label F T\n", + " ham 0.98434309 0.01565691\n", + " spam 0.96166667 0.03833333\n", + "\n", + " civil\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " claim\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.982500000 0.017500000\n", + "\n", + " claimed\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " claiming\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9925000000 0.0075000000\n", + "\n", + " claims\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99000000 0.01000000\n", + "\n", + " clal\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " clalis\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " clalls\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " clara\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " claremont\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " clarification\n", + "trainSet$label F T\n", + " ham 0.9945541184 0.0054458816\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " clarify\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.998333333 0.001666667\n", + "\n", + " clarissa\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 1.000000000 0.000000000\n", + "\n", + " clark\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " clarke\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " clarkston\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 1.000000000 0.000000000\n", + "\n", + " class\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.993333333 0.006666667\n", + "\n", + " classes\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.997500000 0.002500000\n", + "\n", + " classic\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " claudio\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " clay\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.997500000 0.002500000\n", + "\n", + " clean\n", + "trainSet$label F T\n", + " ham 0.99012934 0.00987066\n", + " spam 0.99500000 0.00500000\n", + "\n", + " cleaned\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " cleaner\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " cleaning\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " cleanup\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.995833333 0.004166667\n", + "\n", + " clear\n", + "trainSet$label F T\n", + " ham 0.97753574 0.02246426\n", + " spam 0.98666667 0.01333333\n", + "\n", + " clearance\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.968333333 0.031666667\n", + "\n", + " cleared\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 1.000000000 0.000000000\n", + "\n", + " clearing\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.998333333 0.001666667\n", + "\n", + " clearly\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.996666667 0.003333333\n", + "\n", + " cleburne\n", + "trainSet$label F T\n", + " ham 0.98468346 0.01531654\n", + " spam 1.00000000 0.00000000\n", + "\n", + " cleco\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " clem\n", + "trainSet$label F T\n", + " ham 0.97413206 0.02586794\n", + " spam 1.00000000 0.00000000\n", + "\n", + " clerk\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " cli\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " click\n", + "trainSet$label F T\n", + " ham 0.9737917 0.0262083\n", + " spam 0.8600000 0.1400000\n", + "\n", + " clickathome\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " clickathomepilot\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " clicking\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.998333333 0.001666667\n", + "\n", + " client\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.992500000 0.007500000\n", + "\n", + " clients\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.993333333 0.006666667\n", + "\n", + " cliff\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " clinch\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " clint\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " clinton\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " cllick\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " clmp\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " cloak\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " clobber\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " clock\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9900000000 0.0100000000\n", + "\n", + " close\n", + "trainSet$label F T\n", + " ham 0.97787611 0.02212389\n", + " spam 0.98583333 0.01416667\n", + "\n", + " closed\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.994166667 0.005833333\n", + "\n", + " closely\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.998333333 0.001666667\n", + "\n", + " closer\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " closes\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " closing\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.996666667 0.003333333\n", + "\n", + " closure\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " clothes\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.996666667 0.003333333\n", + "\n", + " cloud\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " cloudburst\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " clu\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " club\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.995000000 0.005000000\n", + "\n", + " clubs\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " clue\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " clynes\n", + "trainSet$label F T\n", + " ham 0.95098707 0.04901293\n", + " spam 1.00000000 0.00000000\n", + "\n", + " cma\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " cmltrochta\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " cnn\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " coach\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.997500000 0.002500000\n", + "\n", + " coaching\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " coachwork\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " coal\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.997500000 0.002500000\n", + "\n", + " coast\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.995000000 0.005000000\n", + "\n", + " coastal\n", + "trainSet$label F T\n", + " ham 0.9918311777 0.0081688223\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " cob\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " cobra\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " coc\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " coca\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " cocavessis\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " cochrane\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " cock\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " cockcrow\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " cocks\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " coco\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " coconut\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " coconutmodem\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " code\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.985833333 0.014166667\n", + "\n", + " codes\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " codin\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " cody\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.998333333 0.001666667\n", + "\n", + " coffee\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " coffer\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " coffey\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.997500000 0.002500000\n", + "\n", + " cogen\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " cogent\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " cognate\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " cognitive\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " coherent\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " coin\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " cokinos\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 1.000000000 0.000000000\n", + "\n", + " cola\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " colander\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " colbert\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " cold\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.993333333 0.006666667\n", + "\n", + " cole\n", + "trainSet$label F T\n", + " ham 0.9962559564 0.0037440436\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " coleman\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " colgate\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " collateral\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " colleague\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " collect\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.997500000 0.002500000\n", + "\n", + " collecting\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " collection\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.989166667 0.010833333\n", + "\n", + " collections\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " college\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.993333333 0.006666667\n", + "\n", + " collins\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " colloquy\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " cologne\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " color\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.979166667 0.020833333\n", + "\n", + " colorado\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.996666667 0.003333333\n", + "\n", + " colspan\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " columbia\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " columbiagas\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " columbus\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " column\n", + "trainSet$label F T\n", + " ham 0.989448604 0.010551396\n", + " spam 0.996666667 0.003333333\n", + "\n", + " columns\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " com\n", + "trainSet$label F T\n", + " ham 0.8369639 0.1630361\n", + " spam 0.7075000 0.2925000\n", + "\n", + " combination\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.994166667 0.005833333\n", + "\n", + " combine\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " combined\n", + "trainSet$label F T\n", + " ham 0.9962559564 0.0037440436\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " combines\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " come\n", + "trainSet$label F T\n", + " ham 0.96868618 0.03131382\n", + " spam 0.94750000 0.05250000\n", + "\n", + " comello\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " comes\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.977500000 0.022500000\n", + "\n", + " comfort\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9833333333 0.0166666667\n", + "\n", + " comfortable\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.995000000 0.005000000\n", + "\n", + " comic\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " coming\n", + "trainSet$label F T\n", + " ham 0.974472430 0.025527570\n", + " spam 0.995833333 0.004166667\n", + "\n", + " comitas\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " command\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " commence\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.998333333 0.001666667\n", + "\n", + " commenced\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " commences\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " commencing\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " comment\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " comments\n", + "trainSet$label F T\n", + " ham 0.98093941 0.01906059\n", + " spam 1.00000000 0.00000000\n", + "\n", + " commerce\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.993333333 0.006666667\n", + "\n", + " commercial\n", + "trainSet$label F T\n", + " ham 0.98876787 0.01123213\n", + " spam 0.96250000 0.03750000\n", + "\n", + " commercialization\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " commercials\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " commissariat\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " commission\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.990833333 0.009166667\n", + "\n", + " commissioner\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " commitment\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.993333333 0.006666667\n", + "\n", + " committed\n", + "trainSet$label F T\n", + " ham 0.984343091 0.015656909\n", + " spam 0.993333333 0.006666667\n", + "\n", + " committee\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.996666667 0.003333333\n", + "\n", + " committeemen\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " commodities\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " commodity\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.997500000 0.002500000\n", + "\n", + " common\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.986666667 0.013333333\n", + "\n", + " commonwealth\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " communicate\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.993333333 0.006666667\n", + "\n", + " communicated\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 1.000000000 0.000000000\n", + "\n", + " communicating\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " communication\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.980833333 0.019166667\n", + "\n", + " communications\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.989166667 0.010833333\n", + "\n", + " community\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.990833333 0.009166667\n", + "\n", + " comp\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " compact\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " compagnie\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " companies\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.950000000 0.050000000\n", + "\n", + " company\n", + "trainSet$label F T\n", + " ham 0.94656229 0.05343771\n", + " spam 0.91583333 0.08416667\n", + "\n", + " companys\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " compaq\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.971666667 0.028333333\n", + "\n", + " compare\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.98416667 0.01583333\n", + "\n", + " compared\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9866666667 0.0133333333\n", + "\n", + " comparing\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " comparison\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.995000000 0.005000000\n", + "\n", + " compartment\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " compartments\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " compass\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " compatible\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9925000000 0.0075000000\n", + "\n", + " compendia\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " compensate\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " compensated\n", + "trainSet$label F T\n", + " ham 1.00 0.00\n", + " spam 0.99 0.01\n", + "\n", + " compensation\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.98083333 0.01916667\n", + "\n", + " compete\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995000000 0.005000000\n", + "\n", + " competing\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995000000 0.005000000\n", + "\n", + " competition\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.98416667 0.01583333\n", + "\n", + " competitive\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.990833333 0.009166667\n", + "\n", + " competitors\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " compieted\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " compieteness\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " compilation\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " compile\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " compiled\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " compiling\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " complaints\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9708333333 0.0291666667\n", + "\n", + " complementary\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " complete\n", + "trainSet$label F T\n", + " ham 0.97753574 0.02246426\n", + " spam 0.97166667 0.02833333\n", + "\n", + " completed\n", + "trainSet$label F T\n", + " ham 0.98400272 0.01599728\n", + " spam 0.98333333 0.01666667\n", + "\n", + " completely\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.986666667 0.013333333\n", + "\n", + " completeness\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9875 0.0125\n", + "\n", + " completes\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " completing\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 1.000000000 0.000000000\n", + "\n", + " completion\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.994166667 0.005833333\n", + "\n", + " complex\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.994166667 0.005833333\n", + "\n", + " compliance\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.950000000 0.050000000\n", + "\n", + " compliant\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " complications\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " compliment\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " complimentary\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " comply\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " components\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995833333 0.004166667\n", + "\n", + " composition\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " comprehension\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " comprehensive\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.992500000 0.007500000\n", + "\n", + " compression\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " compressor\n", + "trainSet$label F T\n", + " ham 0.9945541184 0.0054458816\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " comprise\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " comprises\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " compromised\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " compuserve\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " computer\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.965833333 0.034166667\n", + "\n", + " computers\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.993333333 0.006666667\n", + "\n", + " computing\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " computron\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.97166667 0.02833333\n", + "\n", + " comstock\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 1.000000000 0.000000000\n", + "\n", + " comtex\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " con\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " conant\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " concentration\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " concentric\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " concept\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.995833333 0.004166667\n", + "\n", + " concern\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.982500000 0.017500000\n", + "\n", + " concerned\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 0.998333333 0.001666667\n", + "\n", + " concerning\n", + "trainSet$label F T\n", + " ham 0.99012934 0.00987066\n", + " spam 0.99750000 0.00250000\n", + "\n", + " concerns\n", + "trainSet$label F T\n", + " ham 0.985364193 0.014635807\n", + " spam 0.996666667 0.003333333\n", + "\n", + " concert\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " conciliatory\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " conciusion\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " conclude\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995833333 0.004166667\n", + "\n", + " concluded\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " conclusion\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9891666667 0.0108333333\n", + "\n", + " concord\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " concrete\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " condition\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9925000000 0.0075000000\n", + "\n", + " conditional\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " conditioning\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " conditions\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.983333333 0.016666667\n", + "\n", + " conduct\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.998333333 0.001666667\n", + "\n", + " conducted\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.995833333 0.004166667\n", + "\n", + " conducting\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.996666667 0.003333333\n", + "\n", + " conf\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " conference\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.995000000 0.005000000\n", + "\n", + " conferred\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " confess\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.997500000 0.002500000\n", + "\n", + " confession\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " confidence\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.989166667 0.010833333\n", + "\n", + " confident\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.997500000 0.002500000\n", + "\n", + " confidential\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 0.981666667 0.018333333\n", + "\n", + " confidentiality\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.984166667 0.015833333\n", + "\n", + " confiict\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " confirm\n", + "trainSet$label F T\n", + " ham 0.97413206 0.02586794\n", + " spam 0.97583333 0.02416667\n", + "\n", + " confirmation\n", + "trainSet$label F T\n", + " ham 0.98604493 0.01395507\n", + " spam 0.98833333 0.01166667\n", + "\n", + " confirmations\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 1.000000000 0.000000000\n", + "\n", + " confirmed\n", + "trainSet$label F T\n", + " ham 0.980258679 0.019741321\n", + " spam 0.994166667 0.005833333\n", + "\n", + " confirming\n", + "trainSet$label F T\n", + " ham 0.9965963240 0.0034036760\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " confirms\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " confiscate\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " conflict\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9741666667 0.0258333333\n", + "\n", + " conflicts\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " confrere\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " confront\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " confused\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " confusing\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " confusion\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 1.000000000 0.000000000\n", + "\n", + " congratulate\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " congratulating\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 1.000000000 0.000000000\n", + "\n", + " congratulations\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.993333333 0.006666667\n", + "\n", + " congratulatory\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " congress\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9708333333 0.0291666667\n", + "\n", + " conjunction\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " conjuncture\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " connect\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.996666667 0.003333333\n", + "\n", + " connected\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.993333333 0.006666667\n", + "\n", + " connection\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.985000000 0.015000000\n", + "\n", + " connectivity\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " conner\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.998333333 0.001666667\n", + "\n", + " connevey\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 1.000000000 0.000000000\n", + "\n", + " connie\n", + "trainSet$label F T\n", + " ham 0.9908100749 0.0091899251\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " connor\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " conoco\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 1.000000000 0.000000000\n", + "\n", + " conquer\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " consemiu\n", + "trainSet$label F T\n", + " ham 0.990810075 0.009189925\n", + " spam 1.000000000 0.000000000\n", + "\n", + " consensus\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " consent\n", + "trainSet$label F T\n", + " ham 0.9962559564 0.0037440436\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " consequently\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.991666667 0.008333333\n", + "\n", + " conservative\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995833333 0.004166667\n", + "\n", + " consider\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.989166667 0.010833333\n", + "\n", + " considerable\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " consideration\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.995833333 0.004166667\n", + "\n", + " considerations\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " considered\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.958333333 0.041666667\n", + "\n", + " considering\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " consignment\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " consist\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " consistent\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.994166667 0.005833333\n", + "\n", + " consistently\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " consisting\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " consolidate\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.997500000 0.002500000\n", + "\n", + " consolidated\n", + "trainSet$label F T\n", + " ham 0.9972770592 0.0027229408\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " consolidation\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " constant\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " constantly\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " constitute\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9900000000 0.0100000000\n", + "\n", + " constitutes\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98416667 0.01583333\n", + "\n", + " construction\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.994166667 0.005833333\n", + "\n", + " constructive\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " construed\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.97416667 0.02583333\n", + "\n", + " consult\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " consultant\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " consultants\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " consultation\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9858333333 0.0141666667\n", + "\n", + " consulting\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.993333333 0.006666667\n", + "\n", + " consumer\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.991666667 0.008333333\n", + "\n", + " consumers\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.983333333 0.016666667\n", + "\n", + " consummated\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " consumption\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.994166667 0.005833333\n", + "\n", + " contact\n", + "trainSet$label F T\n", + " ham 0.9285228 0.0714772\n", + " spam 0.9375000 0.0625000\n", + "\n", + " contacted\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.993333333 0.006666667\n", + "\n", + " contacting\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.995000000 0.005000000\n", + "\n", + " contacts\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 0.996666667 0.003333333\n", + "\n", + " contain\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.991666667 0.008333333\n", + "\n", + " contained\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.979166667 0.020833333\n", + "\n", + " containing\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.994166667 0.005833333\n", + "\n", + " contains\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.965833333 0.034166667\n", + "\n", + " contemporary\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " content\n", + "trainSet$label F T\n", + " ham 0.98910824 0.01089176\n", + " spam 0.97500000 0.02500000\n", + "\n", + " contents\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.980000000 0.020000000\n", + "\n", + " context\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " continent\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " continue\n", + "trainSet$label F T\n", + " ham 0.96800545 0.03199455\n", + " spam 0.97250000 0.02750000\n", + "\n", + " continued\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 0.992500000 0.007500000\n", + "\n", + " continues\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.992500000 0.007500000\n", + "\n", + " continuing\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.990833333 0.009166667\n", + "\n", + " continuity\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " continuo\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " continuous\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.991666667 0.008333333\n", + "\n", + " continuously\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " contr\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " contract\n", + "trainSet$label F T\n", + " ham 0.87916950 0.12083050\n", + " spam 0.98666667 0.01333333\n", + "\n", + " contracted\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " contracting\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " contractor\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " contracts\n", + "trainSet$label F T\n", + " ham 0.962899932 0.037100068\n", + " spam 0.993333333 0.006666667\n", + "\n", + " contractual\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.993333333 0.006666667\n", + "\n", + " contradistinction\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " contrary\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995833333 0.004166667\n", + "\n", + " contrast\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " contribute\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.996666667 0.003333333\n", + "\n", + " contribution\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.996666667 0.003333333\n", + "\n", + " contributions\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.998333333 0.001666667\n", + "\n", + " contro\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " control\n", + "trainSet$label F T\n", + " ham 0.97106875 0.02893125\n", + " spam 0.97000000 0.03000000\n", + "\n", + " controlled\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " controller\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " controls\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.996666667 0.003333333\n", + "\n", + " controversial\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " convenience\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.993333333 0.006666667\n", + "\n", + " convenient\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.988333333 0.011666667\n", + "\n", + " conversation\n", + "trainSet$label F T\n", + " ham 0.9874063989 0.0125936011\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " conversion\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995000000 0.005000000\n", + "\n", + " convert\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995000000 0.005000000\n", + "\n", + " converted\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " converts\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " convivial\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " convoy\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " cony\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " coo\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " cook\n", + "trainSet$label F T\n", + " ham 0.991150442 0.008849558\n", + " spam 1.000000000 0.000000000\n", + "\n", + " cookbook\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " cooke\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " cool\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.995000000 0.005000000\n", + "\n", + " cooper\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " cooperation\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.995833333 0.004166667\n", + "\n", + " coordinate\n", + "trainSet$label F T\n", + " ham 0.99285228 0.00714772\n", + " spam 0.99750000 0.00250000\n", + "\n", + " coordinated\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " coordinating\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " coordination\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 1.000000000 0.000000000\n", + "\n", + " coordinator\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.997500000 0.002500000\n", + "\n", + " copano\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 1.000000000 0.000000000\n", + "\n", + " copanos\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " copied\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.998333333 0.001666667\n", + "\n", + " copier\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " copies\n", + "trainSet$label F T\n", + " ham 0.991150442 0.008849558\n", + " spam 0.997500000 0.002500000\n", + "\n", + " copper\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " copy\n", + "trainSet$label F T\n", + " ham 0.96970728 0.03029272\n", + " spam 0.94166667 0.05833333\n", + "\n", + " copying\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.996666667 0.003333333\n", + "\n", + " copyright\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99500000 0.00500000\n", + "\n", + " copyrighted\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " cora\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " coral\n", + "trainSet$label F T\n", + " ham 0.9952348536 0.0047651464\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " cordes\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " core\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.992500000 0.007500000\n", + "\n", + " corel\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.97666667 0.02333333\n", + "\n", + " corn\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " cornelius\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " corner\n", + "trainSet$label F T\n", + " ham 0.9972770592 0.0027229408\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " cornhusker\n", + "trainSet$label F T\n", + " ham 0.98264125 0.01735875\n", + " spam 1.00000000 0.00000000\n", + "\n", + " corp\n", + "trainSet$label F T\n", + " ham 0.7920354 0.2079646\n", + " spam 0.9825000 0.0175000\n", + "\n", + " corporate\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.982500000 0.017500000\n", + "\n", + " corporation\n", + "trainSet$label F T\n", + " ham 0.98230088 0.01769912\n", + " spam 0.98416667 0.01583333\n", + "\n", + " corporations\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.992500000 0.007500000\n", + "\n", + " corpus\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.997500000 0.002500000\n", + "\n", + " correct\n", + "trainSet$label F T\n", + " ham 0.95643295 0.04356705\n", + " spam 0.98916667 0.01083333\n", + "\n", + " corrected\n", + "trainSet$label F T\n", + " ham 0.9894486045 0.0105513955\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " correction\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 1.000000000 0.000000000\n", + "\n", + " corrections\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " correctly\n", + "trainSet$label F T\n", + " ham 0.9843430905 0.0156569095\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " correspond\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " correspondence\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.994166667 0.005833333\n", + "\n", + " correspondences\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " corresponding\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.998333333 0.001666667\n", + "\n", + " corridor\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " cory\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " cosby\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " cosmic\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " cost\n", + "trainSet$label F T\n", + " ham 0.98536419 0.01463581\n", + " spam 0.95083333 0.04916667\n", + "\n", + " costa\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " costilla\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " costing\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " costs\n", + "trainSet$label F T\n", + " ham 0.99285228 0.00714772\n", + " spam 0.98000000 0.02000000\n", + "\n", + " cote\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " cotten\n", + "trainSet$label F T\n", + " ham 0.95643295 0.04356705\n", + " spam 1.00000000 0.00000000\n", + "\n", + " cotton\n", + "trainSet$label F T\n", + " ham 0.97311096 0.02688904\n", + " spam 0.99750000 0.00250000\n", + "\n", + " cottonwood\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " cough\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " couid\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98833333 0.01166667\n", + "\n", + " couldn\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.990833333 0.009166667\n", + "\n", + " council\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " counsel\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " counselor\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " count\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.995000000 0.005000000\n", + "\n", + " counter\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.996666667 0.003333333\n", + "\n", + " counterfeit\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " counterpart\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " counterparties\n", + "trainSet$label F T\n", + " ham 0.99149081 0.00850919\n", + " spam 1.00000000 0.00000000\n", + "\n", + " counterparty\n", + "trainSet$label F T\n", + " ham 0.95336964 0.04663036\n", + " spam 1.00000000 0.00000000\n", + "\n", + " counties\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " counting\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " countries\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.990000000 0.010000000\n", + "\n", + " country\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.964166667 0.035833333\n", + "\n", + " counts\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " county\n", + "trainSet$label F T\n", + " ham 0.99149081 0.00850919\n", + " spam 0.99500000 0.00500000\n", + "\n", + " couple\n", + "trainSet$label F T\n", + " ham 0.982981620 0.017018380\n", + " spam 0.993333333 0.006666667\n", + "\n", + " coupon\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " course\n", + "trainSet$label F T\n", + " ham 0.991150442 0.008849558\n", + " spam 0.982500000 0.017500000\n", + "\n", + " courses\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " court\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.995833333 0.004166667\n", + "\n", + " courtesy\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " courtney\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " cousin\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " cousino\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 1.000000000 0.000000000\n", + "\n", + " couvillon\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " cove\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.998333333 0.001666667\n", + "\n", + " covenants\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " cover\n", + "trainSet$label F T\n", + " ham 0.9748128 0.0251872\n", + " spam 0.9850000 0.0150000\n", + "\n", + " coverage\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.994166667 0.005833333\n", + "\n", + " covered\n", + "trainSet$label F T\n", + " ham 0.9935330157 0.0064669843\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " covering\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.996666667 0.003333333\n", + "\n", + " covers\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.998333333 0.001666667\n", + "\n", + " coveted\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " covington\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " cow\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " cowboy\n", + "trainSet$label F T\n", + " ham 0.9959155888 0.0040844112\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " coworker\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " cowtrap\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " cox\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.998333333 0.001666667\n", + "\n", + " cpi\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " cpr\n", + "trainSet$label F T\n", + " ham 0.99012934 0.00987066\n", + " spam 1.00000000 0.00000000\n", + "\n", + " cps\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " cqo\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " crack\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " cradle\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " craft\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " crafted\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " crag\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " craig\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.998333333 0.001666667\n", + "\n", + " crania\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " crankcase\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " crap\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " crash\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " cravings\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " crazy\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " cream\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " create\n", + "trainSet$label F T\n", + " ham 0.96392103 0.03607897\n", + " spam 0.98666667 0.01333333\n", + "\n", + " created\n", + "trainSet$label F T\n", + " ham 0.95847515 0.04152485\n", + " spam 0.98916667 0.01083333\n", + "\n", + " creates\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " creating\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.995000000 0.005000000\n", + "\n", + " creation\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.998333333 0.001666667\n", + "\n", + " creative\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9641666667 0.0358333333\n", + "\n", + " credential\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " credit\n", + "trainSet$label F T\n", + " ham 0.991150442 0.008849558\n", + " spam 0.963333333 0.036666667\n", + "\n", + " credited\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.995833333 0.004166667\n", + "\n", + " creditors\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " credits\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " creek\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.995833333 0.004166667\n", + "\n", + " crew\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " crib\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " cried\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " cringe\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " crisis\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " critical\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 0.996666667 0.003333333\n", + "\n", + " crm\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " croatia\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " crodrig\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " crook\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " cross\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.993333333 0.006666667\n", + "\n", + " crossing\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " crosstex\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 1.000000000 0.000000000\n", + "\n", + " crow\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " crowd\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " crown\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " crt\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " crude\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.995833333 0.004166667\n", + "\n", + " cruise\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " cry\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " cryptogram\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " crystal\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " csgt\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " csgu\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " csikos\n", + "trainSet$label F T\n", + " ham 0.9874064 0.0125936\n", + " spam 1.0000000 0.0000000\n", + "\n", + " cst\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " ctprty\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " ctr\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " cuba\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " cubic\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " cuccia\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " cum\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " cummings\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " cummins\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " cumulative\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " cup\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " cure\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " curious\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " curran\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " currency\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " current\n", + "trainSet$label F T\n", + " ham 0.96221920 0.03778080\n", + " spam 0.95166667 0.04833333\n", + "\n", + " currentiy\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " currently\n", + "trainSet$label F T\n", + " ham 0.94417971 0.05582029\n", + " spam 0.96833333 0.03166667\n", + "\n", + " curricular\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " curry\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " curt\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " curtailment\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " curve\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.995833333 0.004166667\n", + "\n", + " custody\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " custom\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " customer\n", + "trainSet$label F T\n", + " ham 0.97004765 0.02995235\n", + " spam 0.97166667 0.02833333\n", + "\n", + " customers\n", + "trainSet$label F T\n", + " ham 0.98298162 0.01701838\n", + " spam 0.95666667 0.04333333\n", + "\n", + " customerservice\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.97166667 0.02833333\n", + "\n", + " customized\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " cut\n", + "trainSet$label F T\n", + " ham 0.986725664 0.013274336\n", + " spam 0.991666667 0.008333333\n", + "\n", + " cute\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " cuts\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " cutting\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.994166667 0.005833333\n", + "\n", + " cwtd\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " cyber\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " cycle\n", + "trainSet$label F T\n", + " ham 0.9976174268 0.0023825732\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " cyclen\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " cyclist\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " cyclobenzaprine\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " cyndie\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " cynergy\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " cynthia\n", + "trainSet$label F T\n", + " ham 0.976514636 0.023485364\n", + " spam 0.998333333 0.001666667\n", + "\n", + " dad\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " daddy\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995833333 0.004166667\n", + "\n", + " dagger\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " daigle\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " dailies\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " daily\n", + "trainSet$label F T\n", + " ham 0.90878148 0.09121852\n", + " spam 0.98666667 0.01333333\n", + "\n", + " dainty\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " dale\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 1.000000000 0.000000000\n", + "\n", + " dallas\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.997500000 0.002500000\n", + "\n", + " damage\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " damn\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " dan\n", + "trainSet$label F T\n", + " ham 0.9853641933 0.0146358067\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " dana\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.996666667 0.003333333\n", + "\n", + " dance\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " dandy\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " dang\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " danger\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " dangerous\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " daniel\n", + "trainSet$label F T\n", + " ham 0.9897889721 0.0102110279\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " daniels\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " danny\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.998333333 0.001666667\n", + "\n", + " dans\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " daren\n", + "trainSet$label F T\n", + " ham 0.7236215 0.2763785\n", + " spam 1.0000000 0.0000000\n", + "\n", + " darial\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " darialbr\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " darialfont\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " dark\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " darken\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " darpa\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " darrel\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 1.000000000 0.000000000\n", + "\n", + " darren\n", + "trainSet$label F T\n", + " ham 0.96085773 0.03914227\n", + " spam 1.00000000 0.00000000\n", + "\n", + " darrin\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " darron\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 1.000000000 0.000000000\n", + "\n", + " das\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " dashboard\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " dat\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.998333333 0.001666667\n", + "\n", + " data\n", + "trainSet$label F T\n", + " ham 0.97243022 0.02756978\n", + " spam 0.97500000 0.02500000\n", + "\n", + " database\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 0.985000000 0.015000000\n", + "\n", + " databases\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " datacenter\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " datasets\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " date\n", + "trainSet$label F T\n", + " ham 0.94588155 0.05411845\n", + " spam 0.96250000 0.03750000\n", + "\n", + " dated\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.996666667 0.003333333\n", + "\n", + " dates\n", + "trainSet$label F T\n", + " ham 0.9894486 0.0105514\n", + " spam 0.9975000 0.0025000\n", + "\n", + " dating\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.987500000 0.012500000\n", + "\n", + " daugherty\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " daughter\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.994166667 0.005833333\n", + "\n", + " dave\n", + "trainSet$label F T\n", + " ham 0.974472430 0.025527570\n", + " spam 0.998333333 0.001666667\n", + "\n", + " david\n", + "trainSet$label F T\n", + " ham 0.94349898 0.05650102\n", + " spam 0.99500000 0.00500000\n", + "\n", + " davidson\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " davies\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " davis\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.995000000 0.005000000\n", + "\n", + " dawes\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " dawn\n", + "trainSet$label F T\n", + " ham 0.9928522805 0.0071477195\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " day\n", + "trainSet$label F T\n", + " ham 0.85091899 0.14908101\n", + " spam 0.93583333 0.06416667\n", + "\n", + " daydream\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " days\n", + "trainSet$label F T\n", + " ham 0.93294758 0.06705242\n", + " spam 0.95416667 0.04583333\n", + "\n", + " daze\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " dba\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " dcent\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " dcenter\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " dcenterfont\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " dcenterstrongfont\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " dcl\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " ddsr\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " dead\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.995000000 0.005000000\n", + "\n", + " deadline\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.998333333 0.001666667\n", + "\n", + " deadlines\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " deadlock\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " deal\n", + "trainSet$label F T\n", + " ham 0.74948945 0.25051055\n", + " spam 0.98083333 0.01916667\n", + "\n", + " dealer\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.95916667 0.04083333\n", + "\n", + " dealers\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9733333333 0.0266666667\n", + "\n", + " dealing\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.997500000 0.002500000\n", + "\n", + " dealmaker\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " deals\n", + "trainSet$label F T\n", + " ham 0.90776038 0.09223962\n", + " spam 0.95750000 0.04250000\n", + "\n", + " dean\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " deanna\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " dear\n", + "trainSet$label F T\n", + " ham 0.99012934 0.00987066\n", + " spam 0.96833333 0.03166667\n", + "\n", + " death\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.986666667 0.013333333\n", + "\n", + " deaton\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " debacle\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " debate\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " debbie\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.997500000 0.002500000\n", + "\n", + " debenture\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " debit\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " deboisblanc\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " deborah\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " debra\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " debt\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.990000000 0.010000000\n", + "\n", + " debug\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " debussy\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " dec\n", + "trainSet$label F T\n", + " ham 0.96970728 0.03029272\n", + " spam 0.98250000 0.01750000\n", + "\n", + " decade\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " decades\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " decatherms\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " deceased\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " december\n", + "trainSet$label F T\n", + " ham 0.953029272 0.046970728\n", + " spam 0.991666667 0.008333333\n", + "\n", + " decertify\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " decide\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.998333333 0.001666667\n", + "\n", + " decided\n", + "trainSet$label F T\n", + " ham 0.989448604 0.010551396\n", + " spam 0.991666667 0.008333333\n", + "\n", + " deciding\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9750000000 0.0250000000\n", + "\n", + " decimal\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " decision\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.989166667 0.010833333\n", + "\n", + " decisions\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.995000000 0.005000000\n", + "\n", + " decisive\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " deck\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " declare\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " declined\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " decoration\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " decrease\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 0.997500000 0.002500000\n", + "\n", + " decreased\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " dedicate\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " dedicated\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.995000000 0.005000000\n", + "\n", + " deduct\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " deducted\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " deduction\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " deductions\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " deem\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " deemed\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " deep\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995833333 0.004166667\n", + "\n", + " deer\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.997500000 0.002500000\n", + "\n", + " default\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.995833333 0.004166667\n", + "\n", + " defeat\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " defense\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " defensive\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " deficiency\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " deficit\n", + "trainSet$label F T\n", + " ham 1.00 0.00\n", + " spam 0.99 0.01\n", + "\n", + " define\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " defined\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.995833333 0.004166667\n", + "\n", + " definite\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " definitely\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.998333333 0.001666667\n", + "\n", + " definition\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " definitive\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " defs\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " degeneracy\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " degradation\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " degree\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.990833333 0.009166667\n", + "\n", + " degrees\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.995833333 0.004166667\n", + "\n", + " del\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.997500000 0.002500000\n", + "\n", + " delainey\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " delay\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.993333333 0.006666667\n", + "\n", + " delays\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.993333333 0.006666667\n", + "\n", + " delete\n", + "trainSet$label F T\n", + " ham 0.991490810 0.008509190\n", + " spam 0.995833333 0.004166667\n", + "\n", + " deleted\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " deletion\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " delhi\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " delighted\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " delinvest\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " deliquescent\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " deliver\n", + "trainSet$label F T\n", + " ham 0.990810075 0.009189925\n", + " spam 0.990000000 0.010000000\n", + "\n", + " delivered\n", + "trainSet$label F T\n", + " ham 0.98230088 0.01769912\n", + " spam 0.98500000 0.01500000\n", + "\n", + " deliveries\n", + "trainSet$label F T\n", + " ham 0.9622191967 0.0377808033\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " delivering\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.998333333 0.001666667\n", + "\n", + " delivers\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.994166667 0.005833333\n", + "\n", + " delivery\n", + "trainSet$label F T\n", + " ham 0.95268890 0.04731110\n", + " spam 0.96833333 0.03166667\n", + "\n", + " dell\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.968333333 0.031666667\n", + "\n", + " delma\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " delphi\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.991666667 0.008333333\n", + "\n", + " delta\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " delux\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " deluxe\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " demagnify\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " demagogue\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " demand\n", + "trainSet$label F T\n", + " ham 0.97413206 0.02586794\n", + " spam 0.98583333 0.01416667\n", + "\n", + " demanding\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.997500000 0.002500000\n", + "\n", + " demands\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " demokritos\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.97333333 0.02666667\n", + "\n", + " demonstrate\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995000000 0.005000000\n", + "\n", + " demountable\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " den\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " denise\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " dennis\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.997500000 0.002500000\n", + "\n", + " denny\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " denoted\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " density\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " dent\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " dental\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " denton\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " denture\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " denver\n", + "trainSet$label F T\n", + " ham 0.9965963240 0.0034036760\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " department\n", + "trainSet$label F T\n", + " ham 0.99149081 0.00850919\n", + " spam 0.95500000 0.04500000\n", + "\n", + " departure\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.998333333 0.001666667\n", + "\n", + " depend\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " dependent\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " depending\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " deposit\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.990833333 0.009166667\n", + "\n", + " deposited\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9925000000 0.0075000000\n", + "\n", + " deposits\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " depressant\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " depressants\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " depression\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " dept\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.996666667 0.003333333\n", + "\n", + " depth\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99500000 0.00500000\n", + "\n", + " der\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.990833333 0.009166667\n", + "\n", + " deregulated\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " deregulation\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " derivatives\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " derive\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " derm\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " des\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " describe\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " described\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.994166667 0.005833333\n", + "\n", + " description\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.988333333 0.011666667\n", + "\n", + " deserve\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9916666667 0.0083333333\n", + "\n", + " design\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.985833333 0.014166667\n", + "\n", + " designated\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.995000000 0.005000000\n", + "\n", + " designed\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.977500000 0.022500000\n", + "\n", + " desire\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.992500000 0.007500000\n", + "\n", + " desired\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.996666667 0.003333333\n", + "\n", + " desires\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " desk\n", + "trainSet$label F T\n", + " ham 0.94962560 0.05037440\n", + " spam 0.98833333 0.01166667\n", + "\n", + " desks\n", + "trainSet$label F T\n", + " ham 0.99285228 0.00714772\n", + " spam 1.00000000 0.00000000\n", + "\n", + " desktop\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.993333333 0.006666667\n", + "\n", + " desmond\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " desperate\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " despite\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " destination\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.995833333 0.004166667\n", + "\n", + " detail\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 0.995000000 0.005000000\n", + "\n", + " detailed\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.989166667 0.010833333\n", + "\n", + " detailing\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " details\n", + "trainSet$label F T\n", + " ham 0.98162015 0.01837985\n", + " spam 0.93166667 0.06833333\n", + "\n", + " detect\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " determination\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " determine\n", + "trainSet$label F T\n", + " ham 0.98536419 0.01463581\n", + " spam 0.99500000 0.00500000\n", + "\n", + " determined\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.995000000 0.005000000\n", + "\n", + " determines\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " determining\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " detm\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " detonated\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " deveioped\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " deveioping\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " deveiopment\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " develop\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.992500000 0.007500000\n", + "\n", + " developed\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.987500000 0.012500000\n", + "\n", + " developer\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " developing\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.995000000 0.005000000\n", + "\n", + " development\n", + "trainSet$label F T\n", + " ham 0.98502383 0.01497617\n", + " spam 0.98000000 0.02000000\n", + "\n", + " developmental\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " developments\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.993333333 0.006666667\n", + "\n", + " develops\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " device\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9891666667 0.0108333333\n", + "\n", + " devices\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " devon\n", + "trainSet$label F T\n", + " ham 0.9870660313 0.0129339687\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " dew\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " dewbre\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " dewey\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " dewpoint\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " dfarmer\n", + "trainSet$label F T\n", + " ham 0.9748128 0.0251872\n", + " spam 1.0000000 0.0000000\n", + "\n", + " dfs\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " dheineke\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " dhttp\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " dia\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " diabetes\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " dial\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.989166667 0.010833333\n", + "\n", + " diamond\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.991666667 0.008333333\n", + "\n", + " diamonds\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " diana\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " diane\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.997500000 0.002500000\n", + "\n", + " dianne\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " dick\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.998333333 0.001666667\n", + "\n", + " dickinson\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " dickson\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " dictionary\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " didn\n", + "trainSet$label F T\n", + " ham 0.98502383 0.01497617\n", + " spam 0.98666667 0.01333333\n", + "\n", + " didnt\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " die\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " died\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.986666667 0.013333333\n", + "\n", + " diedrich\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " diet\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " dieting\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.990833333 0.009166667\n", + "\n", + " dietrich\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.997500000 0.002500000\n", + "\n", + " dietz\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " differ\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9633333333 0.0366666667\n", + "\n", + " difference\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 0.990833333 0.009166667\n", + "\n", + " differences\n", + "trainSet$label F T\n", + " ham 0.9969366916 0.0030633084\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " different\n", + "trainSet$label F T\n", + " ham 0.97515317 0.02484683\n", + " spam 0.98083333 0.01916667\n", + "\n", + " differential\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " differently\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 1.000000000 0.000000000\n", + "\n", + " difficult\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.994166667 0.005833333\n", + "\n", + " difficulties\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " difficulty\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " diffuse\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " diflucan\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " dig\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " digging\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " digital\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.98166667 0.01833333\n", + "\n", + " diiigence\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " diligence\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.980833333 0.019166667\n", + "\n", + " diligent\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " dilute\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " dimension\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " dimetapp\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " din\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " dinari\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " dinner\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 1.000000000 0.000000000\n", + "\n", + " dior\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " diploma\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " diplomatic\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " dir\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " direct\n", + "trainSet$label F T\n", + " ham 0.97651464 0.02348536\n", + " spam 0.97583333 0.02416667\n", + "\n", + " directed\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 1.000000000 0.000000000\n", + "\n", + " direction\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.997500000 0.002500000\n", + "\n", + " directions\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " directly\n", + "trainSet$label F T\n", + " ham 0.98332199 0.01667801\n", + " spam 0.98333333 0.01666667\n", + "\n", + " director\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.973333333 0.026666667\n", + "\n", + " directors\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.993333333 0.006666667\n", + "\n", + " directory\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " dirty\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " dis\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " disappear\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " disappointed\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " disaster\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " discioses\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " discipline\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " disclaimer\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " disclose\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.991666667 0.008333333\n", + "\n", + " discloses\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.990833333 0.009166667\n", + "\n", + " disclosure\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.998333333 0.001666667\n", + "\n", + " discontinue\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " discount\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.976666667 0.023333333\n", + "\n", + " discounted\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " discounts\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.990000000 0.010000000\n", + "\n", + " discover\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9925000000 0.0075000000\n", + "\n", + " discovered\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.988333333 0.011666667\n", + "\n", + " discovery\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " discreet\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98333333 0.01666667\n", + "\n", + " discreetly\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " discrepancies\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 1.000000000 0.000000000\n", + "\n", + " discrepancy\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 1.000000000 0.000000000\n", + "\n", + " discrete\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98833333 0.01166667\n", + "\n", + " discretion\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " discuss\n", + "trainSet$label F T\n", + " ham 0.97651464 0.02348536\n", + " spam 0.99750000 0.00250000\n", + "\n", + " discussed\n", + "trainSet$label F T\n", + " ham 0.987746767 0.012253233\n", + " spam 0.998333333 0.001666667\n", + "\n", + " discussing\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " discussion\n", + "trainSet$label F T\n", + " ham 0.987406399 0.012593601\n", + " spam 0.995833333 0.004166667\n", + "\n", + " discussions\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 0.978333333 0.021666667\n", + "\n", + " disease\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9925000000 0.0075000000\n", + "\n", + " dishwasher\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " disk\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " dislike\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " dismantle\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " disolve\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " disorders\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " dispatch\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " display\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " displayed\n", + "trainSet$label F T\n", + " ham 0.9969366916 0.0030633084\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " disposal\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " disposition\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " dispute\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " disregard\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 1.000000000 0.000000000\n", + "\n", + " dissemination\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " dissolve\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " distance\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.995833333 0.004166667\n", + "\n", + " distribute\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.991666667 0.008333333\n", + "\n", + " distributed\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.996666667 0.003333333\n", + "\n", + " distribution\n", + "trainSet$label F T\n", + " ham 0.98740640 0.01259360\n", + " spam 0.98666667 0.01333333\n", + "\n", + " distributor\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " distributorjebel\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9825 0.0175\n", + "\n", + " distributors\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " district\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " ditch\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " div\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " diverse\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.991666667 0.008333333\n", + "\n", + " diversified\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " divert\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " divide\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " divided\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " dividend\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " division\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.993333333 0.006666667\n", + "\n", + " dixie\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " dizzy\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " dleftfont\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " dleftstrongemfont\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " dobb\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " dobbin\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " dobson\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " doc\n", + "trainSet$label F T\n", + " ham 0.964601770 0.035398230\n", + " spam 0.995833333 0.004166667\n", + "\n", + " dock\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " doctor\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.962500000 0.037500000\n", + "\n", + " doctors\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9758333333 0.0241666667\n", + "\n", + " document\n", + "trainSet$label F T\n", + " ham 0.985704561 0.014295439\n", + " spam 0.995833333 0.004166667\n", + "\n", + " documentation\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.997500000 0.002500000\n", + "\n", + " documented\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " documents\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.986666667 0.013333333\n", + "\n", + " dodge\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " doehrman\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " doesn\n", + "trainSet$label F T\n", + " ham 0.98944860 0.01055140\n", + " spam 0.98333333 0.01666667\n", + "\n", + " doesnt\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " dog\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9908333333 0.0091666667\n", + "\n", + " doilars\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " dol\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " doldrums\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " doll\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " dollar\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.986666667 0.013333333\n", + "\n", + " dollars\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.925000000 0.075000000\n", + "\n", + " dolphin\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.998333333 0.001666667\n", + "\n", + " domestic\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.992500000 0.007500000\n", + "\n", + " dominant\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " don\n", + "trainSet$label F T\n", + " ham 0.92545950 0.07454050\n", + " spam 0.91916667 0.08083333\n", + "\n", + " donald\n", + "trainSet$label F T\n", + " ham 0.972430225 0.027569775\n", + " spam 0.998333333 0.001666667\n", + "\n", + " donate\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " donation\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " donations\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " done\n", + "trainSet$label F T\n", + " ham 0.95439074 0.04560926\n", + " spam 0.98500000 0.01500000\n", + "\n", + " donna\n", + "trainSet$label F T\n", + " ham 0.9741320626 0.0258679374\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " donnie\n", + "trainSet$label F T\n", + " ham 0.9972770592 0.0027229408\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " donor\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " dont\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9891666667 0.0108333333\n", + "\n", + " doodle\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " door\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.970833333 0.029166667\n", + "\n", + " doorstep\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " dora\n", + "trainSet$label F T\n", + " ham 0.9976174268 0.0023825732\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " dorcheus\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 1.000000000 0.000000000\n", + "\n", + " dormant\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " dosage\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " dose\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98916667 0.01083333\n", + "\n", + " dot\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " double\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.988333333 0.011666667\n", + "\n", + " doubt\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.989166667 0.010833333\n", + "\n", + " doug\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.997500000 0.002500000\n", + "\n", + " douglas\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.998333333 0.001666667\n", + "\n", + " douse\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " dovekie\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " dow\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 0.992500000 0.007500000\n", + "\n", + " download\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.975833333 0.024166667\n", + "\n", + " downloadable\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " downloaded\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " downloading\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " downloads\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9916666667 0.0083333333\n", + "\n", + " downstream\n", + "trainSet$label F T\n", + " ham 0.9962559564 0.0037440436\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " downtime\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " downtown\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.996666667 0.003333333\n", + "\n", + " doyle\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " dozen\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " draft\n", + "trainSet$label F T\n", + " ham 0.98672566 0.01327434\n", + " spam 0.99750000 0.00250000\n", + "\n", + " drafted\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " drafts\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " draftsman\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " dragica\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " dragon\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " dramatic\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " dramatically\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " draw\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9775000000 0.0225000000\n", + "\n", + " drawing\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " drawn\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9925000000 0.0075000000\n", + "\n", + " draws\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " dream\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " dreams\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " dreamwaver\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.990833333 0.009166667\n", + "\n", + " dreamweaver\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " dress\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " drew\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " dreyfus\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " dreyfuss\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " drill\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.996666667 0.003333333\n", + "\n", + " drilled\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " drilling\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.995000000 0.005000000\n", + "\n", + " drink\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9916666667 0.0083333333\n", + "\n", + " drinks\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9866666667 0.0133333333\n", + "\n", + " driscoll\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " drive\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.968333333 0.031666667\n", + "\n", + " driven\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " driver\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.997500000 0.002500000\n", + "\n", + " drivers\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " drives\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " driving\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.995833333 0.004166667\n", + "\n", + " drn\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " drop\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.995000000 0.005000000\n", + "\n", + " dropped\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.993333333 0.006666667\n", + "\n", + " drops\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " drug\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9775 0.0225\n", + "\n", + " drugs\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9525 0.0475\n", + "\n", + " dry\n", + "trainSet$label F T\n", + " ham 0.9952348536 0.0047651464\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " dsco\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " dscottl\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " dsl\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " dtd\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " dth\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 1.000000000 0.000000000\n", + "\n", + " dtomi\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " dual\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " duane\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " duck\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " ducote\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " dudley\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.998333333 0.001666667\n", + "\n", + " due\n", + "trainSet$label F T\n", + " ham 0.95302927 0.04697073\n", + " spam 0.94833333 0.05166667\n", + "\n", + " duke\n", + "trainSet$label F T\n", + " ham 0.962899932 0.037100068\n", + " spam 0.998333333 0.001666667\n", + "\n", + " dulce\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 1.000000000 0.000000000\n", + "\n", + " dump\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " dune\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " dunn\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " duns\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " dupe\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " duplicate\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.995000000 0.005000000\n", + "\n", + " dupont\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.997500000 0.002500000\n", + "\n", + " durable\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " durango\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " duration\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " durham\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " durrell\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " dustin\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " dutch\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.995833333 0.004166667\n", + "\n", + " duties\n", + "trainSet$label F T\n", + " ham 0.9976174268 0.0023825732\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " duty\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.96916667 0.03083333\n", + "\n", + " dvd\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.987500000 0.012500000\n", + "\n", + " dvds\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " dvn\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 1.000000000 0.000000000\n", + "\n", + " dwight\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " dwl\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " dyersdale\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " dying\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " dynamic\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " dynegy\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 1.000000000 0.000000000\n", + "\n", + " dysfunction\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.990833333 0.009166667\n", + "\n", + " dystrophy\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " eading\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " eagle\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " ear\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " earl\n", + "trainSet$label F T\n", + " ham 0.98162015 0.01837985\n", + " spam 0.99750000 0.00250000\n", + "\n", + " earlier\n", + "trainSet$label F T\n", + " ham 0.988427502 0.011572498\n", + " spam 0.995833333 0.004166667\n", + "\n", + " earliest\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.998333333 0.001666667\n", + "\n", + " early\n", + "trainSet$label F T\n", + " ham 0.98366236 0.01633764\n", + " spam 0.98916667 0.01083333\n", + "\n", + " earn\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9925000000 0.0075000000\n", + "\n", + " earned\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.995000000 0.005000000\n", + "\n", + " earnest\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " earning\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9900000000 0.0100000000\n", + "\n", + " earnings\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.995000000 0.005000000\n", + "\n", + " earth\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.995833333 0.004166667\n", + "\n", + " earthlink\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " earthquake\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " ease\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9925000000 0.0075000000\n", + "\n", + " easement\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " eases\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " easier\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.996666667 0.003333333\n", + "\n", + " easily\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.984166667 0.015833333\n", + "\n", + " east\n", + "trainSet$label F T\n", + " ham 0.98366236 0.01633764\n", + " spam 0.98416667 0.01583333\n", + "\n", + " easter\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.997500000 0.002500000\n", + "\n", + " eastern\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " eastrans\n", + "trainSet$label F T\n", + " ham 0.96528251 0.03471749\n", + " spam 1.00000000 0.00000000\n", + "\n", + " easttexas\n", + "trainSet$label F T\n", + " ham 0.99149081 0.00850919\n", + " spam 1.00000000 0.00000000\n", + "\n", + " easy\n", + "trainSet$label F T\n", + " ham 0.99149081 0.00850919\n", + " spam 0.94500000 0.05500000\n", + "\n", + " eat\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.991666667 0.008333333\n", + "\n", + " ebay\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " ebb\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.996666667 0.003333333\n", + "\n", + " ebs\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ecf\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " echterhoff\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ecom\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ecommerce\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " econnect\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " economic\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.993333333 0.006666667\n", + "\n", + " economical\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " economics\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.998333333 0.001666667\n", + "\n", + " economy\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.996666667 0.003333333\n", + "\n", + " ecourse\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " ecs\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " ect\n", + "trainSet$label F T\n", + " ham 0.7549353 0.2450647\n", + " spam 0.9975000 0.0025000\n", + "\n", + " ects\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " eddie\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.996666667 0.003333333\n", + "\n", + " eddy\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " edgar\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " edge\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.991666667 0.008333333\n", + "\n", + " edi\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 1.000000000 0.000000000\n", + "\n", + " edinburgh\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " edison\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " edit\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.994166667 0.005833333\n", + "\n", + " edited\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " edith\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " edition\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.983333333 0.016666667\n", + "\n", + " editor\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " editorial\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " edmondson\n", + "trainSet$label F T\n", + " ham 0.98978897 0.01021103\n", + " spam 1.00000000 0.00000000\n", + "\n", + " edmund\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " edna\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " eds\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " edu\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " educated\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " education\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.990000000 0.010000000\n", + "\n", + " educational\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " edward\n", + "trainSet$label F T\n", + " ham 0.978897209 0.021102791\n", + " spam 0.996666667 0.003333333\n", + "\n", + " edwards\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " eecc\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " eel\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " ees\n", + "trainSet$label F T\n", + " ham 0.99012934 0.00987066\n", + " spam 1.00000000 0.00000000\n", + "\n", + " eex\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 1.000000000 0.000000000\n", + "\n", + " eff\n", + "trainSet$label F T\n", + " ham 0.9945541184 0.0054458816\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " efface\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " effect\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 0.988333333 0.011666667\n", + "\n", + " effected\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " effective\n", + "trainSet$label F T\n", + " ham 0.91865214 0.08134786\n", + " spam 0.96333333 0.03666667\n", + "\n", + " effectively\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.995833333 0.004166667\n", + "\n", + " effectiveness\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " effects\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9816666667 0.0183333333\n", + "\n", + " effervescent\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " efficiency\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " efficient\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.992500000 0.007500000\n", + "\n", + " efficiently\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " effloresce\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " effort\n", + "trainSet$label F T\n", + " ham 0.98978897 0.01021103\n", + " spam 0.97166667 0.02833333\n", + "\n", + " efforts\n", + "trainSet$label F T\n", + " ham 0.98978897 0.01021103\n", + " spam 0.99000000 0.01000000\n", + "\n", + " egal\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " egf\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " egg\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " egm\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " egmnom\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 1.000000000 0.000000000\n", + "\n", + " egpfc\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 1.000000000 0.000000000\n", + "\n", + " egypt\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " ehronline\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " eiben\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 1.000000000 0.000000000\n", + "\n", + " eight\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9866666667 0.0133333333\n", + "\n", + " eighteen\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " eileen\n", + "trainSet$label F T\n", + " ham 0.98264125 0.01735875\n", + " spam 1.00000000 0.00000000\n", + "\n", + " ein\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " either\n", + "trainSet$label F T\n", + " ham 0.96085773 0.03914227\n", + " spam 0.98000000 0.02000000\n", + "\n", + " ejaculation\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " ejrhxw\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " elaine\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " elastic\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " elder\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " elected\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 1.000000000 0.000000000\n", + "\n", + " election\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.998333333 0.001666667\n", + "\n", + " elections\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " electric\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.996666667 0.003333333\n", + "\n", + " electrical\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.992500000 0.007500000\n", + "\n", + " electricity\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.995000000 0.005000000\n", + "\n", + " electrolytic\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " electronic\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.994166667 0.005833333\n", + "\n", + " electronically\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " electronics\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " element\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " elements\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " elena\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " elgin\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " elide\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " elifrits\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " eligibility\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " eligible\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " eliminate\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.996666667 0.003333333\n", + "\n", + " eliminating\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " elimination\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " elisabeth\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " elite\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " elizabeth\n", + "trainSet$label F T\n", + " ham 0.9894486 0.0105514\n", + " spam 0.9975000 0.0025000\n", + "\n", + " ellen\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " ellenberger\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " elliott\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ellipsoid\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " ellis\n", + "trainSet$label F T\n", + " ham 0.9965963240 0.0034036760\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " ellison\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " eloise\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " elpaso\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " elsa\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 1.000000000 0.000000000\n", + "\n", + " else\n", + "trainSet$label F T\n", + " ham 0.97345133 0.02654867\n", + " spam 0.98666667 0.01333333\n", + "\n", + " elsewhere\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " elsie\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " elwood\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ema\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " emai\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " email\n", + "trainSet$label F T\n", + " ham 0.9390742 0.0609258\n", + " spam 0.8183333 0.1816667\n", + "\n", + " emails\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.978333333 0.021666667\n", + "\n", + " embargoes\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " embarrassment\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " embassy\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.996666667 0.003333333\n", + "\n", + " embedded\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " emerald\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " emergency\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.998333333 0.001666667\n", + "\n", + " emerging\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9883333333 0.0116666667\n", + "\n", + " emerson\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " emile\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " emily\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " emirates\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.97416667 0.02583333\n", + "\n", + " emission\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " emma\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " emory\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " emotional\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " emphasis\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " empire\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " employee\n", + "trainSet$label F T\n", + " ham 0.9863853 0.0136147\n", + " spam 1.0000000 0.0000000\n", + "\n", + " employees\n", + "trainSet$label F T\n", + " ham 0.979237577 0.020762423\n", + " spam 0.995833333 0.004166667\n", + "\n", + " employer\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " employers\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " employment\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " empty\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.995833333 0.004166667\n", + "\n", + " emv\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ena\n", + "trainSet$label F T\n", + " ham 0.94383935 0.05616065\n", + " spam 1.00000000 0.00000000\n", + "\n", + " enabied\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " enable\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.994166667 0.005833333\n", + "\n", + " enabled\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " enables\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " enabling\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " enbridge\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " encarta\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " encina\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " encoding\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9883333333 0.0116666667\n", + "\n", + " encounter\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " encourage\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.995833333 0.004166667\n", + "\n", + " encouraged\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " encryption\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " encyclopedia\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " end\n", + "trainSet$label F T\n", + " ham 0.95677332 0.04322668\n", + " spam 0.97166667 0.02833333\n", + "\n", + " ended\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 1.000000000 0.000000000\n", + "\n", + " endgame\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " ending\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.998333333 0.001666667\n", + "\n", + " ends\n", + "trainSet$label F T\n", + " ham 0.9969366916 0.0030633084\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " ene\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " enerfin\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 1.000000000 0.000000000\n", + "\n", + " energy\n", + "trainSet$label F T\n", + " ham 0.91558884 0.08441116\n", + " spam 0.96166667 0.03833333\n", + "\n", + " enfant\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " enforceable\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " engage\n", + "trainSet$label F T\n", + " ham 0.9938733833 0.0061266167\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " engaged\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " engel\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.998333333 0.001666667\n", + "\n", + " engine\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " engineer\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.995833333 0.004166667\n", + "\n", + " engineering\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " england\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.997500000 0.002500000\n", + "\n", + " english\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.990833333 0.009166667\n", + "\n", + " enhance\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.991666667 0.008333333\n", + "\n", + " enhanced\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.990833333 0.009166667\n", + "\n", + " enhancement\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.992500000 0.007500000\n", + "\n", + " enhancements\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.998333333 0.001666667\n", + "\n", + " enhancing\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995833333 0.004166667\n", + "\n", + " enjoy\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.978333333 0.021666667\n", + "\n", + " enjoyed\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " enjoying\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " enlarge\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " enlargement\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.990833333 0.009166667\n", + "\n", + " ennium\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " enom\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " enormous\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " enough\n", + "trainSet$label F T\n", + " ham 0.98944860 0.01055140\n", + " spam 0.97916667 0.02083333\n", + "\n", + " enquiries\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9725 0.0275\n", + "\n", + " enroll\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " enrolled\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " enrollment\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " enron\n", + "trainSet$label F T\n", + " ham 0.602791 0.397209\n", + " spam 1.000000 0.000000\n", + "\n", + " enronavailsl\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " enronavailso\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 1.000000000 0.000000000\n", + "\n", + " enrononline\n", + "trainSet$label F T\n", + " ham 0.991150442 0.008849558\n", + " spam 1.000000000 0.000000000\n", + "\n", + " enronoptions\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " enronxgate\n", + "trainSet$label F T\n", + " ham 0.98093941 0.01906059\n", + " spam 1.00000000 0.00000000\n", + "\n", + " enserch\n", + "trainSet$label F T\n", + " ham 0.976855 0.023145\n", + " spam 1.000000 0.000000\n", + "\n", + " ensure\n", + "trainSet$label F T\n", + " ham 0.98196052 0.01803948\n", + " spam 0.98916667 0.01083333\n", + "\n", + " ent\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " enter\n", + "trainSet$label F T\n", + " ham 0.97991831 0.02008169\n", + " spam 0.97666667 0.02333333\n", + "\n", + " entered\n", + "trainSet$label F T\n", + " ham 0.96119809 0.03880191\n", + " spam 0.98333333 0.01666667\n", + "\n", + " entergy\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " entering\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.997500000 0.002500000\n", + "\n", + " enterprise\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.982500000 0.017500000\n", + "\n", + " enterprises\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99500000 0.00500000\n", + "\n", + " enters\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " entertainment\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.984166667 0.015833333\n", + "\n", + " entex\n", + "trainSet$label F T\n", + " ham 0.98196052 0.01803948\n", + " spam 1.00000000 0.00000000\n", + "\n", + " entire\n", + "trainSet$label F T\n", + " ham 0.98672566 0.01327434\n", + " spam 0.98416667 0.01583333\n", + "\n", + " entirely\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " entities\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.994166667 0.005833333\n", + "\n", + " entitled\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " entity\n", + "trainSet$label F T\n", + " ham 0.98978897 0.01021103\n", + " spam 0.99750000 0.00250000\n", + "\n", + " entrance\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " entries\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.998333333 0.001666667\n", + "\n", + " entry\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 0.993333333 0.006666667\n", + "\n", + " envelope\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " environment\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.989166667 0.010833333\n", + "\n", + " environmental\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.992500000 0.007500000\n", + "\n", + " environmentally\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " environments\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " enw\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " eog\n", + "trainSet$label F T\n", + " ham 0.99285228 0.00714772\n", + " spam 1.00000000 0.00000000\n", + "\n", + " eogi\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " eogresources\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " eol\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 1.000000000 0.000000000\n", + "\n", + " eops\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " eott\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " epa\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " epgt\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 1.000000000 0.000000000\n", + "\n", + " epowered\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " epson\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9700000000 0.0300000000\n", + "\n", + " equal\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.995833333 0.004166667\n", + "\n", + " equally\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.995833333 0.004166667\n", + "\n", + " equipment\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.992500000 0.007500000\n", + "\n", + " equistar\n", + "trainSet$label F T\n", + " ham 0.98502383 0.01497617\n", + " spam 1.00000000 0.00000000\n", + "\n", + " equity\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.985833333 0.014166667\n", + "\n", + " equiv\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " equiva\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " equivalent\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995833333 0.004166667\n", + "\n", + " equivalents\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.990833333 0.009166667\n", + "\n", + " era\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " ercot\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " erect\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " erectile\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " erection\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.985 0.015\n", + "\n", + " erections\n", + "trainSet$label F T\n", + " ham 1.00 0.00\n", + " spam 0.98 0.02\n", + "\n", + " erhc\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " eric\n", + "trainSet$label F T\n", + " ham 0.987066031 0.012933969\n", + " spam 0.996666667 0.003333333\n", + "\n", + " erich\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " ericsson\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " erik\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " erms\n", + "trainSet$label F T\n", + " ham 0.9976174268 0.0023825732\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " ernest\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " ernie\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " error\n", + "trainSet$label F T\n", + " ham 0.98162015 0.01837985\n", + " spam 0.96333333 0.03666667\n", + "\n", + " erroring\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " errors\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 1.000000000 0.000000000\n", + "\n", + " esgic\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " eshopkey\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " especially\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.993333333 0.006666667\n", + "\n", + " espinoza\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " espn\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " ess\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995833333 0.004166667\n", + "\n", + " essential\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99500000 0.00500000\n", + "\n", + " essentially\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " est\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.986666667 0.013333333\n", + "\n", + " establish\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.995000000 0.005000000\n", + "\n", + " established\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.993333333 0.006666667\n", + "\n", + " establishing\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " establishment\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " estate\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.993333333 0.006666667\n", + "\n", + " esteem\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " esther\n", + "trainSet$label F T\n", + " ham 0.99285228 0.00714772\n", + " spam 1.00000000 0.00000000\n", + "\n", + " estimate\n", + "trainSet$label F T\n", + " ham 0.98570456 0.01429544\n", + " spam 0.99500000 0.00500000\n", + "\n", + " estimated\n", + "trainSet$label F T\n", + " ham 0.987066031 0.012933969\n", + " spam 0.991666667 0.008333333\n", + "\n", + " estimates\n", + "trainSet$label F T\n", + " ham 0.98706603 0.01293397\n", + " spam 0.97666667 0.02333333\n", + "\n", + " estimating\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " estoppel\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " etc\n", + "trainSet$label F T\n", + " ham 0.98025868 0.01974132\n", + " spam 0.98250000 0.01750000\n", + "\n", + " etgs\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ethane\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " ethernet\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " etoco\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ets\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " etter\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " eugene\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.995833333 0.004166667\n", + "\n", + " eugenio\n", + "trainSet$label F T\n", + " ham 0.9962559564 0.0037440436\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " eur\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " euridyce\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " euro\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " europe\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.987500000 0.012500000\n", + "\n", + " european\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.985833333 0.014166667\n", + "\n", + " euros\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " evaluate\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " evaluated\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " evaluation\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " evans\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " eve\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " evelyn\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " even\n", + "trainSet$label F T\n", + " ham 0.97787611 0.02212389\n", + " spam 0.91750000 0.08250000\n", + "\n", + " evening\n", + "trainSet$label F T\n", + " ham 0.989448604 0.010551396\n", + " spam 0.996666667 0.003333333\n", + "\n", + " event\n", + "trainSet$label F T\n", + " ham 0.99285228 0.00714772\n", + " spam 0.99250000 0.00750000\n", + "\n", + " events\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.965833333 0.034166667\n", + "\n", + " eventually\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.996666667 0.003333333\n", + "\n", + " ever\n", + "trainSet$label F T\n", + " ham 0.98910824 0.01089176\n", + " spam 0.95333333 0.04666667\n", + "\n", + " evergreen\n", + "trainSet$label F T\n", + " ham 0.990810075 0.009189925\n", + " spam 0.997500000 0.002500000\n", + "\n", + " everthything\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " every\n", + "trainSet$label F T\n", + " ham 0.97583390 0.02416610\n", + " spam 0.93583333 0.06416667\n", + "\n", + " everybody\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.995833333 0.004166667\n", + "\n", + " everyday\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.994166667 0.005833333\n", + "\n", + " everyone\n", + "trainSet$label F T\n", + " ham 0.97277059 0.02722941\n", + " spam 0.97416667 0.02583333\n", + "\n", + " everything\n", + "trainSet$label F T\n", + " ham 0.98400272 0.01599728\n", + " spam 0.97333333 0.02666667\n", + "\n", + " everywhere\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " evidence\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 1.000000000 0.000000000\n", + "\n", + " evil\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " evra\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " ews\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " exact\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.992500000 0.007500000\n", + "\n", + " exactly\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.960833333 0.039166667\n", + "\n", + " exam\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " examine\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " exampies\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.990833333 0.009166667\n", + "\n", + " example\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 0.991666667 0.008333333\n", + "\n", + " examples\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9841666667 0.0158333333\n", + "\n", + " exceed\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.995833333 0.004166667\n", + "\n", + " exceeding\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " excel\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.996666667 0.003333333\n", + "\n", + " excellent\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.995833333 0.004166667\n", + "\n", + " except\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 0.995833333 0.004166667\n", + "\n", + " exception\n", + "trainSet$label F T\n", + " ham 0.988767869 0.011232131\n", + " spam 0.998333333 0.001666667\n", + "\n", + " exceptional\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " exceptions\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 1.000000000 0.000000000\n", + "\n", + " excess\n", + "trainSet$label F T\n", + " ham 0.98774677 0.01225323\n", + " spam 0.99000000 0.01000000\n", + "\n", + " exchange\n", + "trainSet$label F T\n", + " ham 0.9863853 0.0136147\n", + " spam 0.9625000 0.0375000\n", + "\n", + " excite\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.995833333 0.004166667\n", + "\n", + " excited\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.995833333 0.004166667\n", + "\n", + " exciting\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.990833333 0.009166667\n", + "\n", + " exciusive\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " exclamation\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " excluding\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " exclusions\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " exclusive\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.97583333 0.02416667\n", + "\n", + " exclusively\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " excuria\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " excuse\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " exe\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.996666667 0.003333333\n", + "\n", + " exec\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " execute\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.995833333 0.004166667\n", + "\n", + " executed\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 1.000000000 0.000000000\n", + "\n", + " executing\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " execution\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.998333333 0.001666667\n", + "\n", + " executive\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.992500000 0.007500000\n", + "\n", + " executives\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " exempt\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.994166667 0.005833333\n", + "\n", + " exercise\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.98583333 0.01416667\n", + "\n", + " exercises\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " exhibit\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " exist\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " existing\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 0.980833333 0.019166667\n", + "\n", + " exists\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.997500000 0.002500000\n", + "\n", + " exit\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " expand\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.995000000 0.005000000\n", + "\n", + " expanded\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.995833333 0.004166667\n", + "\n", + " expanding\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.990833333 0.009166667\n", + "\n", + " expansion\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " expatriate\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " expatriates\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " expe\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " expect\n", + "trainSet$label F T\n", + " ham 0.98706603 0.01293397\n", + " spam 0.97500000 0.02500000\n", + "\n", + " expectations\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.973333333 0.026666667\n", + "\n", + " expected\n", + "trainSet$label F T\n", + " ham 0.98434309 0.01565691\n", + " spam 0.97916667 0.02083333\n", + "\n", + " expecting\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.995000000 0.005000000\n", + "\n", + " expects\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.978333333 0.021666667\n", + "\n", + " expedia\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " expedite\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " expedited\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " expense\n", + "trainSet$label F T\n", + " ham 0.989788972 0.010211028\n", + " spam 0.993333333 0.006666667\n", + "\n", + " expenses\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.983333333 0.016666667\n", + "\n", + " expensive\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9833333333 0.0166666667\n", + "\n", + " experience\n", + "trainSet$label F T\n", + " ham 0.99012934 0.00987066\n", + " spam 0.97083333 0.02916667\n", + "\n", + " experienced\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.987500000 0.012500000\n", + "\n", + " experiences\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.997500000 0.002500000\n", + "\n", + " experiencing\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.995833333 0.004166667\n", + "\n", + " expert\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9858333333 0.0141666667\n", + "\n", + " expertise\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " experts\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.990833333 0.009166667\n", + "\n", + " expiration\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.997500000 0.002500000\n", + "\n", + " expire\n", + "trainSet$label F T\n", + " ham 0.9976174268 0.0023825732\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " expired\n", + "trainSet$label F T\n", + " ham 0.982981620 0.017018380\n", + " spam 0.996666667 0.003333333\n", + "\n", + " expires\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.997500000 0.002500000\n", + "\n", + " explain\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.995000000 0.005000000\n", + "\n", + " explained\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.997500000 0.002500000\n", + "\n", + " explaining\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " explanation\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " explanations\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " explicit\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " explode\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9783333333 0.0216666667\n", + "\n", + " exploded\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " exploration\n", + "trainSet$label F T\n", + " ham 0.989788972 0.010211028\n", + " spam 0.994166667 0.005833333\n", + "\n", + " explore\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " explored\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " explorer\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.995833333 0.004166667\n", + "\n", + " explosion\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " explosive\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " explosives\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " exponential\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " export\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.96916667 0.03083333\n", + "\n", + " exports\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " exposure\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " express\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.971666667 0.028333333\n", + "\n", + " expressed\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.990000000 0.010000000\n", + "\n", + " expressions\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " ext\n", + "trainSet$label F T\n", + " ham 0.986725664 0.013274336\n", + " spam 0.996666667 0.003333333\n", + "\n", + " extend\n", + "trainSet$label F T\n", + " ham 0.976514636 0.023485364\n", + " spam 0.996666667 0.003333333\n", + "\n", + " extended\n", + "trainSet$label F T\n", + " ham 0.975833901 0.024166099\n", + " spam 0.993333333 0.006666667\n", + "\n", + " extender\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " extending\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " extends\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " extension\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 1.000000000 0.000000000\n", + "\n", + " extensive\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.993333333 0.006666667\n", + "\n", + " extent\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.995000000 0.005000000\n", + "\n", + " extenuate\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " external\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.992500000 0.007500000\n", + "\n", + " extra\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.982500000 0.017500000\n", + "\n", + " extract\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " extravaganza\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " extreme\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " extremely\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.986666667 0.013333333\n", + "\n", + " exxon\n", + "trainSet$label F T\n", + " ham 0.987406399 0.012593601\n", + " spam 0.998333333 0.001666667\n", + "\n", + " exxonkaty\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " exxonmobil\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " eye\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.990000000 0.010000000\n", + "\n", + " eyes\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.990000000 0.010000000\n", + "\n", + " eyesight\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " fabra\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " fabulous\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " fac\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " face\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.980000000 0.020000000\n", + "\n", + " faced\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " facilitate\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.996666667 0.003333333\n", + "\n", + " facilitation\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " facilities\n", + "trainSet$label F T\n", + " ham 0.988767869 0.011232131\n", + " spam 0.996666667 0.003333333\n", + "\n", + " facility\n", + "trainSet$label F T\n", + " ham 0.986725664 0.013274336\n", + " spam 0.995833333 0.004166667\n", + "\n", + " fact\n", + "trainSet$label F T\n", + " ham 0.99285228 0.00714772\n", + " spam 0.96083333 0.03916667\n", + "\n", + " factor\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.995000000 0.005000000\n", + "\n", + " factors\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.982500000 0.017500000\n", + "\n", + " factory\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " facts\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.975000000 0.025000000\n", + "\n", + " factua\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " factual\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9866666667 0.0133333333\n", + "\n", + " fade\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " fail\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995000000 0.005000000\n", + "\n", + " failed\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " fails\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " failure\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.990833333 0.009166667\n", + "\n", + " failures\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " fair\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " fairly\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " fairway\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " faith\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " faithfully\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " falbaum\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " fall\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.995833333 0.004166667\n", + "\n", + " fallen\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " fallon\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " fallout\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " falls\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " false\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " famiiiar\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " familiar\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.992500000 0.007500000\n", + "\n", + " families\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " family\n", + "trainSet$label F T\n", + " ham 0.98978897 0.01021103\n", + " spam 0.98000000 0.02000000\n", + "\n", + " famvir\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " fan\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " fancy\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " fans\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " fantastic\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " far\n", + "trainSet$label F T\n", + " ham 0.98944860 0.01055140\n", + " spam 0.98666667 0.01333333\n", + "\n", + " fare\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.996666667 0.003333333\n", + "\n", + " fares\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " faretracker\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " farm\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.994166667 0.005833333\n", + "\n", + " farmer\n", + "trainSet$label F T\n", + " ham 0.827433628 0.172566372\n", + " spam 0.996666667 0.003333333\n", + "\n", + " farmers\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " farms\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " fast\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.961666667 0.038333333\n", + "\n", + " faster\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.991666667 0.008333333\n", + "\n", + " fastest\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " fat\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9816666667 0.0183333333\n", + "\n", + " fatah\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " father\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.990833333 0.009166667\n", + "\n", + " fault\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " favor\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.995833333 0.004166667\n", + "\n", + " favorabie\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " favorable\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9925000000 0.0075000000\n", + "\n", + " favorite\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.994166667 0.005833333\n", + "\n", + " fax\n", + "trainSet$label F T\n", + " ham 0.95439074 0.04560926\n", + " spam 0.95000000 0.05000000\n", + "\n", + " faxed\n", + "trainSet$label F T\n", + " ham 0.9955752212 0.0044247788\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " faye\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " fbgo\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " fbi\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " fcc\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " fcv\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 1.000000000 0.000000000\n", + "\n", + " fda\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9858333333 0.0141666667\n", + "\n", + " fear\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9908333333 0.0091666667\n", + "\n", + " fears\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " feature\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.995000000 0.005000000\n", + "\n", + " featured\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9625000000 0.0375000000\n", + "\n", + " features\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.973333333 0.026666667\n", + "\n", + " featuring\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " feb\n", + "trainSet$label F T\n", + " ham 0.96051736 0.03948264\n", + " spam 0.99000000 0.01000000\n", + "\n", + " february\n", + "trainSet$label F T\n", + " ham 0.95677332 0.04322668\n", + " spam 0.99500000 0.00500000\n", + "\n", + " fed\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.998333333 0.001666667\n", + "\n", + " federal\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.958333333 0.041666667\n", + "\n", + " fedex\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " fee\n", + "trainSet$label F T\n", + " ham 0.96698434 0.03301566\n", + " spam 0.98333333 0.01666667\n", + "\n", + " feed\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.996666667 0.003333333\n", + "\n", + " feedback\n", + "trainSet$label F T\n", + " ham 0.98434309 0.01565691\n", + " spam 0.99750000 0.00250000\n", + "\n", + " feeds\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " feel\n", + "trainSet$label F T\n", + " ham 0.97072839 0.02927161\n", + " spam 0.95083333 0.04916667\n", + "\n", + " feeling\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.991666667 0.008333333\n", + "\n", + " feels\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " fees\n", + "trainSet$label F T\n", + " ham 0.988427502 0.011572498\n", + " spam 0.998333333 0.001666667\n", + "\n", + " feet\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9908333333 0.0091666667\n", + "\n", + " felicia\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " felipe\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 1.000000000 0.000000000\n", + "\n", + " fellow\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " felt\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.994166667 0.005833333\n", + "\n", + " female\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.991666667 0.008333333\n", + "\n", + " fence\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " ferc\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 1.000000000 0.000000000\n", + "\n", + " fercsr\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " ferries\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " fertility\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " fffbf\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " ffffff\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " ffffffnbsp\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " ffffffstrongfont\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " fffont\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " ffo\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " fiction\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " fidgeting\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " fieid\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " field\n", + "trainSet$label F T\n", + " ham 0.96732471 0.03267529\n", + " spam 0.98833333 0.01166667\n", + "\n", + " fields\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.995833333 0.004166667\n", + "\n", + " fifteen\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " fifty\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.995833333 0.004166667\n", + "\n", + " fig\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " fight\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.995833333 0.004166667\n", + "\n", + " figure\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.995833333 0.004166667\n", + "\n", + " figured\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " figures\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " fiiings\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " file\n", + "trainSet$label F T\n", + " ham 0.85908781 0.14091219\n", + " spam 0.98333333 0.01666667\n", + "\n", + " filed\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.998333333 0.001666667\n", + "\n", + " filename\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " files\n", + "trainSet$label F T\n", + " ham 0.98978897 0.01021103\n", + " spam 0.99250000 0.00750000\n", + "\n", + " filing\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " filings\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9850000000 0.0150000000\n", + "\n", + " fill\n", + "trainSet$label F T\n", + " ham 0.98978897 0.01021103\n", + " spam 0.97416667 0.02583333\n", + "\n", + " filled\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.993333333 0.006666667\n", + "\n", + " filling\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995833333 0.004166667\n", + "\n", + " filter\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995000000 0.005000000\n", + "\n", + " filters\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " filthy\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " fin\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " final\n", + "trainSet$label F T\n", + " ham 0.98400272 0.01599728\n", + " spam 0.98916667 0.01083333\n", + "\n", + " finalize\n", + "trainSet$label F T\n", + " ham 0.9952348536 0.0047651464\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " finalized\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 1.000000000 0.000000000\n", + "\n", + " finalizing\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " finally\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.983333333 0.016666667\n", + "\n", + " finance\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.989166667 0.010833333\n", + "\n", + " financia\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " financial\n", + "trainSet$label F T\n", + " ham 0.98502383 0.01497617\n", + " spam 0.97000000 0.03000000\n", + "\n", + " financially\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " financing\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.984166667 0.015833333\n", + "\n", + " find\n", + "trainSet$label F T\n", + " ham 0.95302927 0.04697073\n", + " spam 0.93916667 0.06083333\n", + "\n", + " finding\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.992500000 0.007500000\n", + "\n", + " findings\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " finds\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " fine\n", + "trainSet$label F T\n", + " ham 0.98876787 0.01123213\n", + " spam 0.99250000 0.00750000\n", + "\n", + " finest\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " fingertip\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " finish\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.998333333 0.001666667\n", + "\n", + " finished\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.995833333 0.004166667\n", + "\n", + " finland\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " fioricet\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " fire\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.990833333 0.009166667\n", + "\n", + " fired\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " firewall\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " fireworks\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.991666667 0.008333333\n", + "\n", + " firing\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " firm\n", + "trainSet$label F T\n", + " ham 0.969366916 0.030633084\n", + " spam 0.991666667 0.008333333\n", + "\n", + " firms\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.997500000 0.002500000\n", + "\n", + " first\n", + "trainSet$label F T\n", + " ham 0.93124575 0.06875425\n", + " spam 0.93333333 0.06666667\n", + "\n", + " firstname\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " fiscal\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " fischer\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " fish\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " fisher\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " fishing\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " fit\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.992500000 0.007500000\n", + "\n", + " fitness\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " fits\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " five\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.980833333 0.019166667\n", + "\n", + " fix\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.991666667 0.008333333\n", + "\n", + " fixed\n", + "trainSet$label F T\n", + " ham 0.98876787 0.01123213\n", + " spam 0.97833333 0.02166667\n", + "\n", + " fixtures\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " fka\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " flag\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 1.000000000 0.000000000\n", + "\n", + " flagged\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " flagstaff\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " flake\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " flanagan\n", + "trainSet$label F T\n", + " ham 0.9965963240 0.0034036760\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " flash\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.977500000 0.022500000\n", + "\n", + " flashed\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " flat\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.993333333 0.006666667\n", + "\n", + " flatulent\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " flaunt\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " flavin\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 1.000000000 0.000000000\n", + "\n", + " fletcher\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " flew\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " flex\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " flexeril\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " flexibility\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 1.000000000 0.000000000\n", + "\n", + " flexible\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.998333333 0.001666667\n", + "\n", + " flextra\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " flight\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.990833333 0.009166667\n", + "\n", + " flights\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " float\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9891666667 0.0108333333\n", + "\n", + " floated\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " floating\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " floor\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.995000000 0.005000000\n", + "\n", + " floors\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " floppy\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " florida\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.995000000 0.005000000\n", + "\n", + " flow\n", + "trainSet$label F T\n", + " ham 0.89448604 0.10551396\n", + " spam 0.98916667 0.01083333\n", + "\n", + " flowed\n", + "trainSet$label F T\n", + " ham 0.9737917 0.0262083\n", + " spam 1.0000000 0.0000000\n", + "\n", + " flowing\n", + "trainSet$label F T\n", + " ham 0.98298162 0.01701838\n", + " spam 1.00000000 0.00000000\n", + "\n", + " flows\n", + "trainSet$label F T\n", + " ham 0.99285228 0.00714772\n", + " spam 1.00000000 0.00000000\n", + "\n", + " fluctuation\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " flw\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " fly\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " flyer\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " flynn\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 0.998333333 0.001666667\n", + "\n", + " fnc\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " focus\n", + "trainSet$label F T\n", + " ham 0.99285228 0.00714772\n", + " spam 0.98916667 0.01083333\n", + "\n", + " focused\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.993333333 0.006666667\n", + "\n", + " folder\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " folders\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " folks\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 1.000000000 0.000000000\n", + "\n", + " follow\n", + "trainSet$label F T\n", + " ham 0.97719537 0.02280463\n", + " spam 0.95750000 0.04250000\n", + "\n", + " followed\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.994166667 0.005833333\n", + "\n", + " following\n", + "trainSet$label F T\n", + " ham 0.87916950 0.12083050\n", + " spam 0.97666667 0.02333333\n", + "\n", + " follows\n", + "trainSet$label F T\n", + " ham 0.9663036079 0.0336963921\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " followup\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " font\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9791666667 0.0208333333\n", + "\n", + " fontbr\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " fontfont\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " food\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.992500000 0.007500000\n", + "\n", + " fooled\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " foot\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.994166667 0.005833333\n", + "\n", + " football\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.998333333 0.001666667\n", + "\n", + " footlocker\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " footprint\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " forbid\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " force\n", + "trainSet$label F T\n", + " ham 0.99149081 0.00850919\n", + " spam 0.99250000 0.00750000\n", + "\n", + " forced\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.998333333 0.001666667\n", + "\n", + " forces\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995000000 0.005000000\n", + "\n", + " ford\n", + "trainSet$label F T\n", + " ham 0.9976174268 0.0023825732\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " fore\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " forecast\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.997500000 0.002500000\n", + "\n", + " forecasts\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " foreign\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.98083333 0.01916667\n", + "\n", + " foreigner\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " foresee\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9783333333 0.0216666667\n", + "\n", + " forest\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.998333333 0.001666667\n", + "\n", + " forever\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9841666667 0.0158333333\n", + "\n", + " forget\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.987500000 0.012500000\n", + "\n", + " forgot\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " forgotten\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " form\n", + "trainSet$label F T\n", + " ham 0.98332199 0.01667801\n", + " spam 0.95916667 0.04083333\n", + "\n", + " formal\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.996666667 0.003333333\n", + "\n", + " format\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.963333333 0.036666667\n", + "\n", + " formation\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995833333 0.004166667\n", + "\n", + " formats\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " formed\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " former\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.993333333 0.006666667\n", + "\n", + " formerly\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.996666667 0.003333333\n", + "\n", + " forming\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " formosa\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " forms\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.992500000 0.007500000\n", + "\n", + " formula\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9841666667 0.0158333333\n", + "\n", + " formulated\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " forster\n", + "trainSet$label F T\n", + " ham 0.9972770592 0.0027229408\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " fort\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " forth\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.985000000 0.015000000\n", + "\n", + " fortune\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.98916667 0.01083333\n", + "\n", + " forty\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " forum\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " forward\n", + "trainSet$label F T\n", + " ham 0.93737236 0.06262764\n", + " spam 0.95250000 0.04750000\n", + "\n", + " forwarded\n", + "trainSet$label F T\n", + " ham 0.7539142274 0.2460857726\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " forwarding\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.995000000 0.005000000\n", + "\n", + " fosdick\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 1.000000000 0.000000000\n", + "\n", + " fossil\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " foster\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " found\n", + "trainSet$label F T\n", + " ham 0.98230088 0.01769912\n", + " spam 0.97250000 0.02750000\n", + "\n", + " foundation\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " founded\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " founder\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " fountain\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " four\n", + "trainSet$label F T\n", + " ham 0.99149081 0.00850919\n", + " spam 0.97416667 0.02583333\n", + "\n", + " fourteen\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " fourth\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " foward\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " fox\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " fraction\n", + "trainSet$label F T\n", + " ham 1.00 0.00\n", + " spam 0.99 0.01\n", + "\n", + " frame\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.997500000 0.002500000\n", + "\n", + " france\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " francis\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " francisco\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995000000 0.005000000\n", + "\n", + " franck\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " frank\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.996666667 0.003333333\n", + "\n", + " frankfurt\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " franklin\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.997500000 0.002500000\n", + "\n", + " fraud\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " frayre\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " fred\n", + "trainSet$label F T\n", + " ham 0.98366236 0.01633764\n", + " spam 1.00000000 0.00000000\n", + "\n", + " frederic\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " free\n", + "trainSet$label F T\n", + " ham 0.95813479 0.04186521\n", + " spam 0.86000000 0.14000000\n", + "\n", + " freedom\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.998333333 0.001666667\n", + "\n", + " freehand\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " freehold\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " freeman\n", + "trainSet$label F T\n", + " ham 0.9972770592 0.0027229408\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " freeport\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " freeware\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " freight\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " french\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " frequency\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " frequently\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " fresh\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99250000 0.00750000\n", + "\n", + " frevert\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " fri\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.995000000 0.005000000\n", + "\n", + " friday\n", + "trainSet$label F T\n", + " ham 0.93839346 0.06160654\n", + " spam 0.98166667 0.01833333\n", + "\n", + " friedman\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " friend\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.976666667 0.023333333\n", + "\n", + " friendly\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.993333333 0.006666667\n", + "\n", + " friends\n", + "trainSet$label F T\n", + " ham 0.99149081 0.00850919\n", + " spam 0.98416667 0.01583333\n", + "\n", + " fritolay\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " frmly\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " front\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.981666667 0.018333333\n", + "\n", + " frontera\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " frustrating\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " fry\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " ftar\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " fte\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " ftworth\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 1.000000000 0.000000000\n", + "\n", + " fuck\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " fucked\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " fuel\n", + "trainSet$label F T\n", + " ham 0.96051736 0.03948264\n", + " spam 0.99500000 0.00500000\n", + "\n", + " fuels\n", + "trainSet$label F T\n", + " ham 0.9673247107 0.0326752893\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " fujitsu\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " fulfill\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " full\n", + "trainSet$label F T\n", + " ham 0.98706603 0.01293397\n", + " spam 0.95416667 0.04583333\n", + "\n", + " fuller\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " fully\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.981666667 0.018333333\n", + "\n", + " fun\n", + "trainSet$label F T\n", + " ham 0.99149081 0.00850919\n", + " spam 0.98166667 0.01833333\n", + "\n", + " function\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.997500000 0.002500000\n", + "\n", + " functional\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " functionality\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.998333333 0.001666667\n", + "\n", + " functions\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.998333333 0.001666667\n", + "\n", + " fund\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.977500000 0.022500000\n", + "\n", + " fundamentals\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " funding\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.993333333 0.006666667\n", + "\n", + " funds\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.986666667 0.013333333\n", + "\n", + " funky\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " funny\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " furnace\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " furnish\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " furthermore\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.990833333 0.009166667\n", + "\n", + " future\n", + "trainSet$label F T\n", + " ham 0.97447243 0.02552757\n", + " spam 0.92500000 0.07500000\n", + "\n", + " futureevents\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " fwd\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.982500000 0.017500000\n", + "\n", + " fyi\n", + "trainSet$label F T\n", + " ham 0.92307692 0.07692308\n", + " spam 1.00000000 0.00000000\n", + "\n", + " gabriel\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " gain\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.983333333 0.016666667\n", + "\n", + " gained\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " gaining\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " gains\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98166667 0.01833333\n", + "\n", + " gallanted\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " gallantry\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " galveston\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 1.000000000 0.000000000\n", + "\n", + " gambling\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " game\n", + "trainSet$label F T\n", + " ham 0.991150442 0.008849558\n", + " spam 0.989166667 0.010833333\n", + "\n", + " games\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.993333333 0.006666667\n", + "\n", + " gaming\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " gang\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " gap\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " garcia\n", + "trainSet$label F T\n", + " ham 0.9965963240 0.0034036760\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " garden\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.998333333 0.001666667\n", + "\n", + " gardens\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " gardner\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " garland\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " garner\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " garrett\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " garrick\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 1.000000000 0.000000000\n", + "\n", + " garrison\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " gary\n", + "trainSet$label F T\n", + " ham 0.932607216 0.067392784\n", + " spam 0.998333333 0.001666667\n", + "\n", + " garza\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " gas\n", + "trainSet$label F T\n", + " ham 0.69434990 0.30565010\n", + " spam 0.98416667 0.01583333\n", + "\n", + " gaslift\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " gasmsgboard\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " gasoline\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " gasper\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " gate\n", + "trainSet$label F T\n", + " ham 0.9969366916 0.0030633084\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " gatekeep\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " gates\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.995833333 0.004166667\n", + "\n", + " gateway\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.994166667 0.005833333\n", + "\n", + " gathered\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.984166667 0.015833333\n", + "\n", + " gathering\n", + "trainSet$label F T\n", + " ham 0.964601770 0.035398230\n", + " spam 0.996666667 0.003333333\n", + "\n", + " gave\n", + "trainSet$label F T\n", + " ham 0.988427502 0.011572498\n", + " spam 0.995833333 0.004166667\n", + "\n", + " gay\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 0.995833333 0.004166667\n", + "\n", + " gayle\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " gaza\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " gbic\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " gbl\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " gco\n", + "trainSet$label F T\n", + " ham 0.98978897 0.01021103\n", + " spam 1.00000000 0.00000000\n", + "\n", + " gcp\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " gcs\n", + "trainSet$label F T\n", + " ham 0.991150442 0.008849558\n", + " spam 1.000000000 0.000000000\n", + "\n", + " gdp\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 1.000000000 0.000000000\n", + "\n", + " gear\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " gecko\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " geec\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " gem\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " gemc\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " gen\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " genaro\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " genco\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " genera\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " general\n", + "trainSet$label F T\n", + " ham 0.9863853 0.0136147\n", + " spam 0.9800000 0.0200000\n", + "\n", + " generally\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.998333333 0.001666667\n", + "\n", + " generate\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.995833333 0.004166667\n", + "\n", + " generated\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.992500000 0.007500000\n", + "\n", + " generates\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " generating\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9900000000 0.0100000000\n", + "\n", + " generation\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.989166667 0.010833333\n", + "\n", + " generator\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " generic\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.96500000 0.03500000\n", + "\n", + " generlc\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " genex\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " gentle\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " gentlemen\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " genuine\n", + "trainSet$label F T\n", + " ham 1.00 0.00\n", + " spam 0.99 0.01\n", + "\n", + " geoff\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " geographic\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " geologists\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " geology\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " george\n", + "trainSet$label F T\n", + " ham 0.956432948 0.043567052\n", + " spam 0.994166667 0.005833333\n", + "\n", + " georgeanne\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " georgia\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " gepl\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ger\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " gerald\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 1.000000000 0.000000000\n", + "\n", + " gerard\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " german\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " germany\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.990000000 0.010000000\n", + "\n", + " get\n", + "trainSet$label F T\n", + " ham 0.8635126 0.1364874\n", + " spam 0.7516667 0.2483333\n", + "\n", + " getaway\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " getitbest\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " gets\n", + "trainSet$label F T\n", + " ham 0.991150442 0.008849558\n", + " spam 0.992500000 0.007500000\n", + "\n", + " getting\n", + "trainSet$label F T\n", + " ham 0.96868618 0.03131382\n", + " spam 0.96916667 0.03083333\n", + "\n", + " ggo\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " ggrant\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " ggts\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " ghz\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " giant\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " gif\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9900000000 0.0100000000\n", + "\n", + " gift\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.990000000 0.010000000\n", + "\n", + " gifts\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " gig\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " gilbert\n", + "trainSet$label F T\n", + " ham 0.9976174268 0.0023825732\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " giobal\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " girl\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.985833333 0.014166667\n", + "\n", + " girlfriend\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98833333 0.01166667\n", + "\n", + " girls\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.980000000 0.020000000\n", + "\n", + " giron\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 1.000000000 0.000000000\n", + "\n", + " gisb\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 1.000000000 0.000000000\n", + "\n", + " gissin\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " give\n", + "trainSet$label F T\n", + " ham 0.94758339 0.05241661\n", + " spam 0.94166667 0.05833333\n", + "\n", + " given\n", + "trainSet$label F T\n", + " ham 0.9874064 0.0125936\n", + " spam 0.9700000 0.0300000\n", + "\n", + " gives\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.992500000 0.007500000\n", + "\n", + " giving\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.985833333 0.014166667\n", + "\n", + " glad\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.992500000 0.007500000\n", + "\n", + " glass\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " glen\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " glenn\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " glo\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " global\n", + "trainSet$label F T\n", + " ham 0.97106875 0.02893125\n", + " spam 0.98500000 0.01500000\n", + "\n", + " globally\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9925000000 0.0075000000\n", + "\n", + " globe\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.995833333 0.004166667\n", + "\n", + " gloria\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " glory\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " glover\n", + "trainSet$label F T\n", + " ham 0.99012934 0.00987066\n", + " spam 1.00000000 0.00000000\n", + "\n", + " gmbh\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " gms\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " gmt\n", + "trainSet$label F T\n", + " ham 0.9976174268 0.0023825732\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " goais\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " goal\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.994166667 0.005833333\n", + "\n", + " goals\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.980833333 0.019166667\n", + "\n", + " god\n", + "trainSet$label F T\n", + " ham 0.991150442 0.008849558\n", + " spam 0.986666667 0.013333333\n", + "\n", + " godparent\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " goes\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 0.988333333 0.011666667\n", + "\n", + " goforth\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " gogh\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " going\n", + "trainSet$label F T\n", + " ham 0.94724302 0.05275698\n", + " spam 0.96250000 0.03750000\n", + "\n", + " gold\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " golden\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.994166667 0.005833333\n", + "\n", + " goldman\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " golf\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.998333333 0.001666667\n", + "\n", + " golfboxx\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " goliad\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " golly\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " gomes\n", + "trainSet$label F T\n", + " ham 0.9894486 0.0105514\n", + " spam 1.0000000 0.0000000\n", + "\n", + " gone\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.985833333 0.014166667\n", + "\n", + " gonzales\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " good\n", + "trainSet$label F T\n", + " ham 0.95949626 0.04050374\n", + " spam 0.92666667 0.07333333\n", + "\n", + " goodbye\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " goods\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " goodwill\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " google\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " gorbea\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " gordon\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " gore\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " gorgeous\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " gorons\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " gosnell\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " gossett\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 1.000000000 0.000000000\n", + "\n", + " got\n", + "trainSet$label F T\n", + " ham 0.97651464 0.02348536\n", + " spam 0.96500000 0.03500000\n", + "\n", + " gotta\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " gotten\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9708333333 0.0291666667\n", + "\n", + " gottlob\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 1.000000000 0.000000000\n", + "\n", + " gough\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " gov\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.993333333 0.006666667\n", + "\n", + " governer\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " government\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.973333333 0.026666667\n", + "\n", + " governor\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " gpa\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " gpgfin\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 1.000000000 0.000000000\n", + "\n", + " gra\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.97416667 0.02583333\n", + "\n", + " grab\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995833333 0.004166667\n", + "\n", + " grace\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " grade\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " gradually\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " grady\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " graham\n", + "trainSet$label F T\n", + " ham 0.9962559564 0.0037440436\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " gram\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " grand\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.994166667 0.005833333\n", + "\n", + " grandma\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " grant\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 0.998333333 0.001666667\n", + "\n", + " granted\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.998333333 0.001666667\n", + "\n", + " graphic\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " graphics\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98083333 0.01916667\n", + "\n", + " grass\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " grave\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " graves\n", + "trainSet$label F T\n", + " ham 0.959155888 0.040844112\n", + " spam 0.998333333 0.001666667\n", + "\n", + " gray\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.995833333 0.004166667\n", + "\n", + " grease\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " great\n", + "trainSet$label F T\n", + " ham 0.97277059 0.02722941\n", + " spam 0.93500000 0.06500000\n", + "\n", + " greater\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.988333333 0.011666667\n", + "\n", + " greatest\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.995000000 0.005000000\n", + "\n", + " greatly\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.996666667 0.003333333\n", + "\n", + " grecian\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " greedy\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " green\n", + "trainSet$label F T\n", + " ham 0.98774677 0.01225323\n", + " spam 0.98416667 0.01583333\n", + "\n", + " greenbriar\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " greene\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " greengrocer\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " greenhouse\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " greetings\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " greg\n", + "trainSet$label F T\n", + " ham 0.9891082369 0.0108917631\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " gregg\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.998333333 0.001666667\n", + "\n", + " gregory\n", + "trainSet$label F T\n", + " ham 0.9959155888 0.0040844112\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " greif\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 1.000000000 0.000000000\n", + "\n", + " greta\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " grew\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.996666667 0.003333333\n", + "\n", + " grid\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " griffin\n", + "trainSet$label F T\n", + " ham 0.9942137509 0.0057862491\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " griffith\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 1.000000000 0.000000000\n", + "\n", + " gross\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " ground\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.994166667 0.005833333\n", + "\n", + " group\n", + "trainSet$label F T\n", + " ham 0.94928523 0.05071477\n", + " spam 0.96333333 0.03666667\n", + "\n", + " groups\n", + "trainSet$label F T\n", + " ham 0.988427502 0.011572498\n", + " spam 0.995833333 0.004166667\n", + "\n", + " grow\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.988333333 0.011666667\n", + "\n", + " growing\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.990000000 0.010000000\n", + "\n", + " grown\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " grows\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " growth\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.964166667 0.035833333\n", + "\n", + " grumble\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " grumman\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " gspm\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " gss\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " gtc\n", + "trainSet$label F T\n", + " ham 0.99149081 0.00850919\n", + " spam 1.00000000 0.00000000\n", + "\n", + " gte\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " guaaraantees\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " guadalupe\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 1.000000000 0.000000000\n", + "\n", + " guarante\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " guarantee\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.96333333 0.03666667\n", + "\n", + " guaranteed\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.972500000 0.027500000\n", + "\n", + " guaranteee\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " guarantees\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.995833333 0.004166667\n", + "\n", + " guaranty\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " guatemaia\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " gucci\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " guess\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 0.993333333 0.006666667\n", + "\n", + " guest\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 1.000000000 0.000000000\n", + "\n", + " guests\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " guidance\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.993333333 0.006666667\n", + "\n", + " guide\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.994166667 0.005833333\n", + "\n", + " guidelines\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.996666667 0.003333333\n", + "\n", + " gulf\n", + "trainSet$label F T\n", + " ham 0.9894486045 0.0105513955\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " gullion\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " guns\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " guthrie\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " guy\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.995000000 0.005000000\n", + "\n", + " guyana\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " guys\n", + "trainSet$label F T\n", + " ham 0.981620150 0.018379850\n", + " spam 0.991666667 0.008333333\n", + "\n", + " haarder\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " haas\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " habe\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " haben\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " habit\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " habits\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " hackett\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " hacking\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " haden\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " hades\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " hadix\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " hail\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " hair\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.990833333 0.009166667\n", + "\n", + " hairy\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " hakeem\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " hakemack\n", + "trainSet$label F T\n", + " ham 0.98434309 0.01565691\n", + " spam 1.00000000 0.00000000\n", + "\n", + " haley\n", + "trainSet$label F T\n", + " ham 0.9962559564 0.0037440436\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " half\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.971666667 0.028333333\n", + "\n", + " hall\n", + "trainSet$label F T\n", + " ham 0.9823008850 0.0176991150\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " hamas\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " hamilton\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " hampden\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " hampshire\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " hampton\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " hand\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.989166667 0.010833333\n", + "\n", + " handheldmed\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " handle\n", + "trainSet$label F T\n", + " ham 0.9737917 0.0262083\n", + " spam 0.9950000 0.0050000\n", + "\n", + " handled\n", + "trainSet$label F T\n", + " ham 0.9914908101 0.0085091899\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " handley\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " handling\n", + "trainSet$label F T\n", + " ham 0.987746767 0.012253233\n", + " spam 0.996666667 0.003333333\n", + "\n", + " hands\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.993333333 0.006666667\n", + "\n", + " handset\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " hang\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " hank\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " hankins\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " hanks\n", + "trainSet$label F T\n", + " ham 0.9659632403 0.0340367597\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " hannah\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " hansen\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 1.000000000 0.000000000\n", + "\n", + " hanson\n", + "trainSet$label F T\n", + " ham 0.9894486 0.0105514\n", + " spam 0.9975000 0.0025000\n", + "\n", + " happen\n", + "trainSet$label F T\n", + " ham 0.99012934 0.00987066\n", + " spam 0.99500000 0.00500000\n", + "\n", + " happened\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.995000000 0.005000000\n", + "\n", + " happening\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.985833333 0.014166667\n", + "\n", + " happens\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.996666667 0.003333333\n", + "\n", + " happenstance\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " happier\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " happiness\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " happy\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 0.970000000 0.030000000\n", + "\n", + " harassment\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " harbor\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " hard\n", + "trainSet$label F T\n", + " ham 0.99149081 0.00850919\n", + " spam 0.96666667 0.03333333\n", + "\n", + " hardcore\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " harder\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.995000000 0.005000000\n", + "\n", + " hardware\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " hardy\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 1.000000000 0.000000000\n", + "\n", + " hare\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.998333333 0.001666667\n", + "\n", + " harm\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " harmon\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " harold\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " harrington\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " harris\n", + "trainSet$label F T\n", + " ham 0.988767869 0.011232131\n", + " spam 0.998333333 0.001666667\n", + "\n", + " harrison\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 1.000000000 0.000000000\n", + "\n", + " harry\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " harwood\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " hassle\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9925000000 0.0075000000\n", + "\n", + " hassles\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " hastings\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " hat\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995833333 0.004166667\n", + "\n", + " hate\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.988333333 0.011666667\n", + "\n", + " haul\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " haven\n", + "trainSet$label F T\n", + " ham 0.990810075 0.009189925\n", + " spam 0.997500000 0.002500000\n", + "\n", + " hawaii\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " hawkins\n", + "trainSet$label F T\n", + " ham 0.9921715453 0.0078284547\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " hawks\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " haynes\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " hayward\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " hbcamp\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " hcl\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " hdpe\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " hdtv\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " hea\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " head\n", + "trainSet$label F T\n", + " ham 0.9894486 0.0105514\n", + " spam 0.9750000 0.0250000\n", + "\n", + " headache\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " headaches\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " headed\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.996666667 0.003333333\n", + "\n", + " header\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 1.000000000 0.000000000\n", + "\n", + " heading\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " headlines\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " headquartered\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " heads\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 1.000000000 0.000000000\n", + "\n", + " headset\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " heal\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.998333333 0.001666667\n", + "\n", + " healing\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " health\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9575000000 0.0425000000\n", + "\n", + " healthcare\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " healthier\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " healthy\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9925000000 0.0075000000\n", + "\n", + " hear\n", + "trainSet$label F T\n", + " ham 0.98638530 0.01361470\n", + " spam 0.98666667 0.01333333\n", + "\n", + " heard\n", + "trainSet$label F T\n", + " ham 0.98876787 0.01123213\n", + " spam 0.99000000 0.01000000\n", + "\n", + " hearing\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.993333333 0.006666667\n", + "\n", + " heart\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.984166667 0.015833333\n", + "\n", + " heat\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " heath\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " heather\n", + "trainSet$label F T\n", + " ham 0.991150442 0.008849558\n", + " spam 1.000000000 0.000000000\n", + "\n", + " heatherloch\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " heatherlock\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " heating\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " heavy\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.98916667 0.01083333\n", + "\n", + " hectic\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " hector\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.998333333 0.001666667\n", + "\n", + " hedge\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " hedstrom\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 1.000000000 0.000000000\n", + "\n", + " heidi\n", + "trainSet$label F T\n", + " ham 0.98876787 0.01123213\n", + " spam 1.00000000 0.00000000\n", + "\n", + " height\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9916666667 0.0083333333\n", + "\n", + " heineke\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " heinrich\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.997500000 0.002500000\n", + "\n", + " held\n", + "trainSet$label F T\n", + " ham 0.99012934 0.00987066\n", + " spam 0.98416667 0.01583333\n", + "\n", + " helen\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " hell\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " heller\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " hello\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.960833333 0.039166667\n", + "\n", + " hellosoft\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " helmerich\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " helmrich\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " help\n", + "trainSet$label F T\n", + " ham 0.91933288 0.08066712\n", + " spam 0.94500000 0.05500000\n", + "\n", + " helpdesk\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " helped\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.995833333 0.004166667\n", + "\n", + " helpful\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.995000000 0.005000000\n", + "\n", + " helping\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.995833333 0.004166667\n", + "\n", + " helps\n", + "trainSet$label F T\n", + " ham 0.992852280 0.007147720\n", + " spam 0.993333333 0.006666667\n", + "\n", + " helton\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " helvetica\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " hemisphere\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " hence\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.98916667 0.01083333\n", + "\n", + " henderson\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 1.000000000 0.000000000\n", + "\n", + " hendricks\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " hendrickson\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " henry\n", + "trainSet$label F T\n", + " ham 0.9976174268 0.0023825732\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " herbal\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " hereby\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " heree\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " herein\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.972500000 0.027500000\n", + "\n", + " hereto\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.997500000 0.002500000\n", + "\n", + " heretofore\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " heritage\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " herman\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " hermann\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " hermes\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " hernandez\n", + "trainSet$label F T\n", + " ham 0.99285228 0.00714772\n", + " spam 1.00000000 0.00000000\n", + "\n", + " herod\n", + "trainSet$label F T\n", + " ham 0.98196052 0.01803948\n", + " spam 1.00000000 0.00000000\n", + "\n", + " herrera\n", + "trainSet$label F T\n", + " ham 0.990810075 0.009189925\n", + " spam 1.000000000 0.000000000\n", + "\n", + " hesco\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 1.000000000 0.000000000\n", + "\n", + " hesitate\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.994166667 0.005833333\n", + "\n", + " hess\n", + "trainSet$label F T\n", + " ham 0.9959155888 0.0040844112\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " hesse\n", + "trainSet$label F T\n", + " ham 0.9802586794 0.0197413206\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " heuer\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " hewitt\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " hewlett\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.97083333 0.02916667\n", + "\n", + " hey\n", + "trainSet$label F T\n", + " ham 0.98570456 0.01429544\n", + " spam 0.97916667 0.02083333\n", + "\n", + " heya\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " hgh\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " hgm\n", + "trainSet$label F T\n", + " ham 0.9962559564 0.0037440436\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " hgpl\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " hiatt\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " hicks\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " hidden\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " hier\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " higgins\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " high\n", + "trainSet$label F T\n", + " ham 0.96664398 0.03335602\n", + " spam 0.91750000 0.08250000\n", + "\n", + " higher\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 0.984166667 0.015833333\n", + "\n", + " highest\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.983333333 0.016666667\n", + "\n", + " highiy\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " highland\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " highlight\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " highlighted\n", + "trainSet$label F T\n", + " ham 0.9945541184 0.0054458816\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " highlights\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " highly\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.979166667 0.020833333\n", + "\n", + " hilcorp\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " hill\n", + "trainSet$label F T\n", + " ham 0.9860449285 0.0139550715\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " hillary\n", + "trainSet$label F T\n", + " ham 0.99285228 0.00714772\n", + " spam 1.00000000 0.00000000\n", + "\n", + " hilliard\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 1.000000000 0.000000000\n", + "\n", + " hillier\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " hills\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " hilton\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " hin\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " hints\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " hippa\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " hire\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " hired\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " hiring\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " hisd\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " historic\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " historica\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " historical\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.984166667 0.015833333\n", + "\n", + " historically\n", + "trainSet$label F T\n", + " ham 0.9962559564 0.0037440436\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " history\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.969166667 0.030833333\n", + "\n", + " hit\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.993333333 0.006666667\n", + "\n", + " hitch\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " hits\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " hitting\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " hiv\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " hlavaty\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 1.000000000 0.000000000\n", + "\n", + " hms\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 1.000000000 0.000000000\n", + "\n", + " hodge\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.997500000 0.002500000\n", + "\n", + " hodges\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " hoff\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " hoffman\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " hogan\n", + "trainSet$label F T\n", + " ham 0.9976174268 0.0023825732\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " hol\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 1.000000000 0.000000000\n", + "\n", + " holcomb\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " hold\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.990833333 0.009166667\n", + "\n", + " holder\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " holders\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " holding\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.981666667 0.018333333\n", + "\n", + " holdings\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.98916667 0.01083333\n", + "\n", + " holds\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9925000000 0.0075000000\n", + "\n", + " holes\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " holiday\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.992500000 0.007500000\n", + "\n", + " holidays\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.997500000 0.002500000\n", + "\n", + " holland\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " hollomon\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " holly\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " holmes\n", + "trainSet$label F T\n", + " ham 0.98570456 0.01429544\n", + " spam 1.00000000 0.00000000\n", + "\n", + " home\n", + "trainSet$label F T\n", + " ham 0.97821647 0.02178353\n", + " spam 0.93083333 0.06916667\n", + "\n", + " homeland\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " homeostasis\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " homeowner\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " homeownernews\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " homepage\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " homes\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " honest\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " honesty\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " honey\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " hong\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " honor\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " hood\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " hook\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9916666667 0.0083333333\n", + "\n", + " hookup\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " hoop\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.996666667 0.003333333\n", + "\n", + " hoopitup\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " hoosier\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " hop\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " hope\n", + "trainSet$label F T\n", + " ham 0.97208986 0.02791014\n", + " spam 0.98083333 0.01916667\n", + "\n", + " hopefully\n", + "trainSet$label F T\n", + " ham 0.991150442 0.008849558\n", + " spam 1.000000000 0.000000000\n", + "\n", + " hopes\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " hoping\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " hopkinsville\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " hormone\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " horn\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " horny\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " horoscope\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " horse\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " horton\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " hoskins\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " hospital\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.991666667 0.008333333\n", + "\n", + " hospitals\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " host\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99500000 0.00500000\n", + "\n", + " hosting\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9916666667 0.0083333333\n", + "\n", + " hot\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.96000000 0.04000000\n", + "\n", + " hotel\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.995000000 0.005000000\n", + "\n", + " hotels\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995833333 0.004166667\n", + "\n", + " hotline\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.998333333 0.001666667\n", + "\n", + " hotlist\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " hotmail\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.998333333 0.001666667\n", + "\n", + " hottest\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9925000000 0.0075000000\n", + "\n", + " hottlist\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " hou\n", + "trainSet$label F T\n", + " ham 0.7624234173 0.2375765827\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " hour\n", + "trainSet$label F T\n", + " ham 0.990810075 0.009189925\n", + " spam 0.985833333 0.014166667\n", + "\n", + " hourly\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " hours\n", + "trainSet$label F T\n", + " ham 0.98025868 0.01974132\n", + " spam 0.94000000 0.06000000\n", + "\n", + " house\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.979166667 0.020833333\n", + "\n", + " household\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " housing\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " houston\n", + "trainSet$label F T\n", + " ham 0.92818244 0.07181756\n", + " spam 0.99500000 0.00500000\n", + "\n", + " howard\n", + "trainSet$label F T\n", + " ham 0.966643975 0.033356025\n", + " spam 0.998333333 0.001666667\n", + "\n", + " however\n", + "trainSet$label F T\n", + " ham 0.95064670 0.04935330\n", + " spam 0.98833333 0.01166667\n", + "\n", + " hpl\n", + "trainSet$label F T\n", + " ham 0.7011572 0.2988428\n", + " spam 1.0000000 0.0000000\n", + "\n", + " hplc\n", + "trainSet$label F T\n", + " ham 0.96562287 0.03437713\n", + " spam 1.00000000 0.00000000\n", + "\n", + " hpll\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " hplnl\n", + "trainSet$label F T\n", + " ham 0.98502383 0.01497617\n", + " spam 1.00000000 0.00000000\n", + "\n", + " hplno\n", + "trainSet$label F T\n", + " ham 0.97072839 0.02927161\n", + " spam 1.00000000 0.00000000\n", + "\n", + " hplnol\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 1.000000000 0.000000000\n", + "\n", + " hplo\n", + "trainSet$label F T\n", + " ham 0.97208986 0.02791014\n", + " spam 1.00000000 0.00000000\n", + "\n", + " hplol\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " hplr\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 1.000000000 0.000000000\n", + "\n", + " href\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.975 0.025\n", + "\n", + " hrs\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.993333333 0.006666667\n", + "\n", + " hrweb\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " hsc\n", + "trainSet$label F T\n", + " ham 0.96119809 0.03880191\n", + " spam 1.00000000 0.00000000\n", + "\n", + " hstj\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " htm\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 0.982500000 0.017500000\n", + "\n", + " html\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.945000000 0.055000000\n", + "\n", + " htmlimg\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " htmlview\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " http\n", + "trainSet$label F T\n", + " ham 0.96255956 0.03744044\n", + " spam 0.68750000 0.31250000\n", + "\n", + " https\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " huahao\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " hub\n", + "trainSet$label F T\n", + " ham 0.98910824 0.01089176\n", + " spam 0.99750000 0.00250000\n", + "\n", + " hubco\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " huble\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " huffsmith\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " huge\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.96500000 0.03500000\n", + "\n", + " hughes\n", + "trainSet$label F T\n", + " ham 0.9908100749 0.0091899251\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " hull\n", + "trainSet$label F T\n", + " ham 0.990810075 0.009189925\n", + " spam 1.000000000 0.000000000\n", + "\n", + " human\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.993333333 0.006666667\n", + "\n", + " humble\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.998333333 0.001666667\n", + "\n", + " hump\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " hunaid\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " hundred\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.983333333 0.016666667\n", + "\n", + " hundreds\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.98416667 0.01583333\n", + "\n", + " hung\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " hunt\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.998333333 0.001666667\n", + "\n", + " hunter\n", + "trainSet$label F T\n", + " ham 0.9952348536 0.0047651464\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " huntley\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " hurd\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " hurricane\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " hurry\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.990833333 0.009166667\n", + "\n", + " hurt\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " hurta\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " husband\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9883333333 0.0116666667\n", + "\n", + " huthmacher\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " hyatt\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " hydrocarbon\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 1.000000000 0.000000000\n", + "\n", + " hydrocarbons\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.998333333 0.001666667\n", + "\n", + " hydrocodone\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98916667 0.01083333\n", + "\n", + " hyvl\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " iaagra\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " iagra\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " ialis\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " ian\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " ibc\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " ibm\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9666666667 0.0333333333\n", + "\n", + " ice\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.992500000 0.007500000\n", + "\n", + " ich\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " icon\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " idea\n", + "trainSet$label F T\n", + " ham 0.992852280 0.007147720\n", + " spam 0.990833333 0.009166667\n", + "\n", + " ideal\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " ideas\n", + "trainSet$label F T\n", + " ham 0.99012934 0.00987066\n", + " spam 0.99250000 0.00750000\n", + "\n", + " identical\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " identification\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " identified\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.969166667 0.030833333\n", + "\n", + " identify\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.994166667 0.005833333\n", + "\n", + " identifying\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.996666667 0.003333333\n", + "\n", + " identity\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9916666667 0.0083333333\n", + "\n", + " ids\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ieee\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " iferc\n", + "trainSet$label F T\n", + " ham 0.96868618 0.03131382\n", + " spam 1.00000000 0.00000000\n", + "\n", + " ifhsc\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ifont\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " ignite\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " ignore\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " igts\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " iii\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.967500000 0.032500000\n", + "\n", + " iit\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.97333333 0.02666667\n", + "\n", + " ike\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " ill\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " illegal\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " illinois\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " illustrator\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98333333 0.01666667\n", + "\n", + " ilyushin\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " image\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.977500000 0.022500000\n", + "\n", + " images\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.990833333 0.009166667\n", + "\n", + " imagine\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.990833333 0.009166667\n", + "\n", + " imbalance\n", + "trainSet$label F T\n", + " ham 0.9836623553 0.0163376447\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " imbalances\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 1.000000000 0.000000000\n", + "\n", + " imceanotes\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 1.000000000 0.000000000\n", + "\n", + " imelda\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " img\n", + "trainSet$label F T\n", + " ham 1.00 0.00\n", + " spam 0.99 0.01\n", + "\n", + " imitation\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " imited\n", + "trainSet$label F T\n", + " ham 1.00 0.00\n", + " spam 0.99 0.01\n", + "\n", + " immediate\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.980000000 0.020000000\n", + "\n", + " immediately\n", + "trainSet$label F T\n", + " ham 0.98638530 0.01361470\n", + " spam 0.97333333 0.02666667\n", + "\n", + " immigrants\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " immune\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " impact\n", + "trainSet$label F T\n", + " ham 0.98740640 0.01259360\n", + " spam 0.98916667 0.01083333\n", + "\n", + " impacted\n", + "trainSet$label F T\n", + " ham 0.9972770592 0.0027229408\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " impacting\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " impacts\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " imperial\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " impiied\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " implement\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " implementation\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.998333333 0.001666667\n", + "\n", + " implemented\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " implementing\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " importance\n", + "trainSet$label F T\n", + " ham 0.9887678693 0.0112321307\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " important\n", + "trainSet$label F T\n", + " ham 0.98536419 0.01463581\n", + " spam 0.96666667 0.03333333\n", + "\n", + " imported\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " imports\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " imposed\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " impossible\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9908333333 0.0091666667\n", + "\n", + " impotence\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98166667 0.01833333\n", + "\n", + " impotent\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " impress\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " impression\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " impressive\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " improve\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.986666667 0.013333333\n", + "\n", + " improved\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.98750000 0.01250000\n", + "\n", + " improvement\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.996666667 0.003333333\n", + "\n", + " improvements\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " improving\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " imts\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " ina\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " inactivate\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " inactivated\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " inactive\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.997500000 0.002500000\n", + "\n", + " inadvertently\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " inbound\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " inbox\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " inc\n", + "trainSet$label F T\n", + " ham 0.96426140 0.03573860\n", + " spam 0.94416667 0.05583333\n", + "\n", + " incentive\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " inception\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " incest\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " inch\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9908333333 0.0091666667\n", + "\n", + " inches\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9791666667 0.0208333333\n", + "\n", + " incident\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " inciude\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.990833333 0.009166667\n", + "\n", + " inciudes\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " inciuding\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " include\n", + "trainSet$label F T\n", + " ham 0.97991831 0.02008169\n", + " spam 0.94000000 0.06000000\n", + "\n", + " included\n", + "trainSet$label F T\n", + " ham 0.97855684 0.02144316\n", + " spam 0.98416667 0.01583333\n", + "\n", + " includes\n", + "trainSet$label F T\n", + " ham 0.98638530 0.01361470\n", + " spam 0.97416667 0.02583333\n", + "\n", + " including\n", + "trainSet$label F T\n", + " ham 0.97957794 0.02042206\n", + " spam 0.95333333 0.04666667\n", + "\n", + " inclusive\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " income\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.995000000 0.005000000\n", + "\n", + " incomplete\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " inconvenience\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.997500000 0.002500000\n", + "\n", + " incorporate\n", + "trainSet$label F T\n", + " ham 0.9976174268 0.0023825732\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " incorporated\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " incorrect\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 0.998333333 0.001666667\n", + "\n", + " incorrectly\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 1.000000000 0.000000000\n", + "\n", + " increase\n", + "trainSet$label F T\n", + " ham 0.97311096 0.02688904\n", + " spam 0.95416667 0.04583333\n", + "\n", + " increased\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.976666667 0.023333333\n", + "\n", + " increases\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.994166667 0.005833333\n", + "\n", + " increasing\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.990000000 0.010000000\n", + "\n", + " increasingly\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " incredible\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9875000000 0.0125000000\n", + "\n", + " incredibly\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " increment\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " incremental\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 1.000000000 0.000000000\n", + "\n", + " incumbent\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " incur\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " incurred\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " independent\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.990833333 0.009166667\n", + "\n", + " index\n", + "trainSet$label F T\n", + " ham 0.98434309 0.01565691\n", + " spam 0.97666667 0.02333333\n", + "\n", + " india\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " indian\n", + "trainSet$label F T\n", + " ham 0.9976174268 0.0023825732\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " indianapolis\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " indicate\n", + "trainSet$label F T\n", + " ham 0.989788972 0.010211028\n", + " spam 0.993333333 0.006666667\n", + "\n", + " indicated\n", + "trainSet$label F T\n", + " ham 0.9901293397 0.0098706603\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " indicates\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.996666667 0.003333333\n", + "\n", + " indicating\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.974166667 0.025833333\n", + "\n", + " indications\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " indicative\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98583333 0.01416667\n", + "\n", + " indicator\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " individual\n", + "trainSet$label F T\n", + " ham 0.99012934 0.00987066\n", + " spam 0.98916667 0.01083333\n", + "\n", + " individuals\n", + "trainSet$label F T\n", + " ham 0.992852280 0.007147720\n", + " spam 0.993333333 0.006666667\n", + "\n", + " industrial\n", + "trainSet$label F T\n", + " ham 0.9863853 0.0136147\n", + " spam 0.9925000 0.0075000\n", + "\n", + " industrials\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.998333333 0.001666667\n", + "\n", + " industrialsmonthly\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " industries\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.995000000 0.005000000\n", + "\n", + " industry\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.954166667 0.045833333\n", + "\n", + " indutrial\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " ine\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.991666667 0.008333333\n", + "\n", + " inefficient\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " inexpensive\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " inf\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " infected\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " infections\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " inflatables\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " influence\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " influential\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " info\n", + "trainSet$label F T\n", + " ham 0.97957794 0.02042206\n", + " spam 0.92583333 0.07416667\n", + "\n", + " infodele\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " inform\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.989166667 0.010833333\n", + "\n", + " information\n", + "trainSet$label F T\n", + " ham 0.8863172 0.1136828\n", + " spam 0.8558333 0.1441667\n", + "\n", + " informational\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " informative\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " informed\n", + "trainSet$label F T\n", + " ham 0.985023826 0.014976174\n", + " spam 0.996666667 0.003333333\n", + "\n", + " infotex\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " infrastructure\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.996666667 0.003333333\n", + "\n", + " ing\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " ingredient\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9858333333 0.0141666667\n", + "\n", + " ings\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " inherent\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9733333333 0.0266666667\n", + "\n", + " inheritor\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " initial\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.990000000 0.010000000\n", + "\n", + " initially\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 1.000000000 0.000000000\n", + "\n", + " initiative\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " inja\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " injection\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " injections\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " injured\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " injuries\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " ink\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " inkjet\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " inlet\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 1.000000000 0.000000000\n", + "\n", + " inline\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " innocent\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " innovation\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " innovative\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9916666667 0.0083333333\n", + "\n", + " input\n", + "trainSet$label F T\n", + " ham 0.98978897 0.01021103\n", + " spam 0.99750000 0.00250000\n", + "\n", + " inquiries\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.998333333 0.001666667\n", + "\n", + " inquiry\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " inserted\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " inside\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.985833333 0.014166667\n", + "\n", + " insider\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " insiders\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " insight\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " install\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.995000000 0.005000000\n", + "\n", + " installation\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.995833333 0.004166667\n", + "\n", + " installed\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.997500000 0.002500000\n", + "\n", + " instance\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.997500000 0.002500000\n", + "\n", + " instances\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " instant\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.990000000 0.010000000\n", + "\n", + " instantly\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " instead\n", + "trainSet$label F T\n", + " ham 0.988087134 0.011912866\n", + " spam 0.990833333 0.009166667\n", + "\n", + " institutions\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.995833333 0.004166667\n", + "\n", + " instructed\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " instruction\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " instructions\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.969166667 0.030833333\n", + "\n", + " instrument\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " instrumental\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " insurance\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.994166667 0.005833333\n", + "\n", + " insure\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.998333333 0.001666667\n", + "\n", + " int\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " integrate\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " integrated\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.994166667 0.005833333\n", + "\n", + " integration\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.995833333 0.004166667\n", + "\n", + " integrity\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.995833333 0.004166667\n", + "\n", + " intel\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.97083333 0.02916667\n", + "\n", + " intelligence\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " intelligent\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " intellinet\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.97166667 0.02833333\n", + "\n", + " intend\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.985000000 0.015000000\n", + "\n", + " intended\n", + "trainSet$label F T\n", + " ham 0.98536419 0.01463581\n", + " spam 0.96750000 0.03250000\n", + "\n", + " intends\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.996666667 0.003333333\n", + "\n", + " intent\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.985833333 0.014166667\n", + "\n", + " intention\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " inter\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.997500000 0.002500000\n", + "\n", + " intercompany\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 1.000000000 0.000000000\n", + "\n", + " interconnect\n", + "trainSet$label F T\n", + " ham 0.98910824 0.01089176\n", + " spam 1.00000000 0.00000000\n", + "\n", + " interconnecting\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " interconnects\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 1.000000000 0.000000000\n", + "\n", + " intercourse\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " interdesk\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " interest\n", + "trainSet$label F T\n", + " ham 0.990810075 0.009189925\n", + " spam 0.942500000 0.057500000\n", + "\n", + " interested\n", + "trainSet$label F T\n", + " ham 0.98468346 0.01531654\n", + " spam 0.96833333 0.03166667\n", + "\n", + " interesting\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " interests\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.995833333 0.004166667\n", + "\n", + " interface\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.990833333 0.009166667\n", + "\n", + " interim\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.998333333 0.001666667\n", + "\n", + " intern\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " internal\n", + "trainSet$label F T\n", + " ham 0.991490810 0.008509190\n", + " spam 0.996666667 0.003333333\n", + "\n", + " internally\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " internationa\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.991666667 0.008333333\n", + "\n", + " international\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.950833333 0.049166667\n", + "\n", + " internet\n", + "trainSet$label F T\n", + " ham 0.98740640 0.01259360\n", + " spam 0.93166667 0.06833333\n", + "\n", + " interpretation\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.989166667 0.010833333\n", + "\n", + " interprovincial\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " interruptible\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " interstate\n", + "trainSet$label F T\n", + " ham 0.9969366916 0.0030633084\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " interval\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " interview\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 1.000000000 0.000000000\n", + "\n", + " interviewed\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " interviewing\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " interviews\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " intimacy\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " intimate\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " intra\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 1.000000000 0.000000000\n", + "\n", + " intraday\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 1.000000000 0.000000000\n", + "\n", + " intranet\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " intrastate\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 1.000000000 0.000000000\n", + "\n", + " intrastates\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " introduce\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.994166667 0.005833333\n", + "\n", + " introduced\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " introducing\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.993333333 0.006666667\n", + "\n", + " introduction\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " intuit\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " invalidate\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " inventory\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " invest\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.981666667 0.018333333\n", + "\n", + " investigate\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " investigation\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " investing\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.962500000 0.037500000\n", + "\n", + " investment\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.937500000 0.062500000\n", + "\n", + " investments\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.987500000 0.012500000\n", + "\n", + " investor\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.979166667 0.020833333\n", + "\n", + " investors\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.970833333 0.029166667\n", + "\n", + " invidious\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " invitation\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.991666667 0.008333333\n", + "\n", + " invite\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " invited\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " invoice\n", + "trainSet$label F T\n", + " ham 0.975833901 0.024166099\n", + " spam 0.998333333 0.001666667\n", + "\n", + " invoiced\n", + "trainSet$label F T\n", + " ham 0.991150442 0.008849558\n", + " spam 1.000000000 0.000000000\n", + "\n", + " invoices\n", + "trainSet$label F T\n", + " ham 0.9894486 0.0105514\n", + " spam 1.0000000 0.0000000\n", + "\n", + " invoicing\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 1.000000000 0.000000000\n", + "\n", + " invoive\n", + "trainSet$label F T\n", + " ham 1.00 0.00\n", + " spam 0.99 0.01\n", + "\n", + " invoiving\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " involve\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.970833333 0.029166667\n", + "\n", + " involved\n", + "trainSet$label F T\n", + " ham 0.988427502 0.011572498\n", + " spam 0.990833333 0.009166667\n", + "\n", + " involvement\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " involving\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9891666667 0.0108333333\n", + "\n", + " iogn\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " iomega\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.97166667 0.02833333\n", + "\n", + " ion\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98666667 0.01333333\n", + "\n", + " iona\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " ionaalphonso\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " ionamin\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " ipcy\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " ipod\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " iraqi\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " ire\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " irena\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " irene\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " iron\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " irremovable\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " irving\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " isc\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " iscsi\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " ise\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " island\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.995833333 0.004166667\n", + "\n", + " isn\n", + "trainSet$label F T\n", + " ham 0.990810075 0.009189925\n", + " spam 0.994166667 0.005833333\n", + "\n", + " iso\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98666667 0.01333333\n", + "\n", + " isp\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " israel\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " israeli\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " issue\n", + "trainSet$label F T\n", + " ham 0.95302927 0.04697073\n", + " spam 0.99000000 0.01000000\n", + "\n", + " issued\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.990833333 0.009166667\n", + "\n", + " issues\n", + "trainSet$label F T\n", + " ham 0.963580667 0.036419333\n", + " spam 0.994166667 0.005833333\n", + "\n", + " ist\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " istorage\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " italian\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " itc\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " itec\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " itecs\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " item\n", + "trainSet$label F T\n", + " ham 0.988767869 0.011232131\n", + " spam 0.996666667 0.003333333\n", + "\n", + " items\n", + "trainSet$label F T\n", + " ham 0.980939415 0.019060585\n", + " spam 0.993333333 0.006666667\n", + "\n", + " itinerary\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " itoy\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " itra\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " itst\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " ium\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " ivhm\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ivoire\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " iwc\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " iwon\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " jack\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.995833333 0.004166667\n", + "\n", + " jackie\n", + "trainSet$label F T\n", + " ham 0.9680054459 0.0319945541\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " jackson\n", + "trainSet$label F T\n", + " ham 0.9894486 0.0105514\n", + " spam 0.9975000 0.0025000\n", + "\n", + " jacqueline\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.997500000 0.002500000\n", + "\n", + " jaeger\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " jaime\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.997500000 0.002500000\n", + "\n", + " jake\n", + "trainSet$label F T\n", + " ham 0.9969366916 0.0030633084\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " james\n", + "trainSet$label F T\n", + " ham 0.96153846 0.03846154\n", + " spam 0.99500000 0.00500000\n", + "\n", + " jamie\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " jan\n", + "trainSet$label F T\n", + " ham 0.96119809 0.03880191\n", + " spam 0.98166667 0.01833333\n", + "\n", + " jane\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.997500000 0.002500000\n", + "\n", + " janet\n", + "trainSet$label F T\n", + " ham 0.98093941 0.01906059\n", + " spam 0.99750000 0.00250000\n", + "\n", + " janice\n", + "trainSet$label F T\n", + " ham 0.9965963240 0.0034036760\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " janie\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " january\n", + "trainSet$label F T\n", + " ham 0.93669163 0.06330837\n", + " spam 0.98083333 0.01916667\n", + "\n", + " janzen\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " japan\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995000000 0.005000000\n", + "\n", + " jaquet\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 1.000000000 0.000000000\n", + "\n", + " jared\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " jason\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 1.000000000 0.000000000\n", + "\n", + " jay\n", + "trainSet$label F T\n", + " ham 0.9938733833 0.0061266167\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " jayant\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " jdz\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " jealous\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " jean\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " jebel\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.97166667 0.02833333\n", + "\n", + " jeff\n", + "trainSet$label F T\n", + " ham 0.978897209 0.021102791\n", + " spam 0.995833333 0.004166667\n", + "\n", + " jefferson\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 1.000000000 0.000000000\n", + "\n", + " jeffrey\n", + "trainSet$label F T\n", + " ham 0.9897889721 0.0102110279\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " jen\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " jenkins\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " jennifer\n", + "trainSet$label F T\n", + " ham 0.983662355 0.016337645\n", + " spam 0.998333333 0.001666667\n", + "\n", + " jennings\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " jenuwine\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " jeremiah\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " jeremy\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " jerry\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 1.000000000 0.000000000\n", + "\n", + " jersey\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.997500000 0.002500000\n", + "\n", + " jesse\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " jessica\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " jester\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " jesus\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " jet\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " jewelry\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " jill\n", + "trainSet$label F T\n", + " ham 0.9840027229 0.0159972771\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " jim\n", + "trainSet$label F T\n", + " ham 0.979918312 0.020081688\n", + " spam 0.998333333 0.001666667\n", + "\n", + " jimmy\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " jitter\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " jlshankster\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " joan\n", + "trainSet$label F T\n", + " ham 0.9962559564 0.0037440436\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " joanie\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 1.000000000 0.000000000\n", + "\n", + " joann\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " joanne\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 1.000000000 0.000000000\n", + "\n", + " job\n", + "trainSet$label F T\n", + " ham 0.989788972 0.010211028\n", + " spam 0.991666667 0.008333333\n", + "\n", + " jobs\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.998333333 0.001666667\n", + "\n", + " jobsonline\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " jody\n", + "trainSet$label F T\n", + " ham 0.9969366916 0.0030633084\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " joe\n", + "trainSet$label F T\n", + " ham 0.9925119129 0.0074880871\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " joel\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " joh\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " john\n", + "trainSet$label F T\n", + " ham 0.960517359 0.039482641\n", + " spam 0.993333333 0.006666667\n", + "\n", + " johnny\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " johnson\n", + "trainSet$label F T\n", + " ham 0.985364193 0.014635807\n", + " spam 0.996666667 0.003333333\n", + "\n", + " join\n", + "trainSet$label F T\n", + " ham 0.98910824 0.01089176\n", + " spam 0.98250000 0.01750000\n", + "\n", + " joined\n", + "trainSet$label F T\n", + " ham 0.9969366916 0.0030633084\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " joining\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 1.000000000 0.000000000\n", + "\n", + " joinlb\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " joins\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " joint\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.990833333 0.009166667\n", + "\n", + " jokes\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " jon\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " jonathan\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " jones\n", + "trainSet$label F T\n", + " ham 0.96528251 0.03471749\n", + " spam 0.98916667 0.01083333\n", + "\n", + " jordan\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " jose\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " joseph\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " josey\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 1.000000000 0.000000000\n", + "\n", + " joshua\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " journal\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " joy\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " joyce\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " jpg\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.993333333 0.006666667\n", + "\n", + " juanita\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " judge\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9866666667 0.0133333333\n", + "\n", + " judy\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " jul\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.997500000 0.002500000\n", + "\n", + " julia\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.998333333 0.001666667\n", + "\n", + " juliann\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 1.000000000 0.000000000\n", + "\n", + " julie\n", + "trainSet$label F T\n", + " ham 0.9455411845 0.0544588155\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " july\n", + "trainSet$label F T\n", + " ham 0.932266848 0.067733152\n", + " spam 0.990833333 0.009166667\n", + "\n", + " jump\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9908333333 0.0091666667\n", + "\n", + " jun\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " junction\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " june\n", + "trainSet$label F T\n", + " ham 0.93464942 0.06535058\n", + " spam 0.99250000 0.00750000\n", + "\n", + " junior\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " junk\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " juno\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.998333333 0.001666667\n", + "\n", + " jury\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " just\n", + "trainSet$label F T\n", + " ham 0.8955071 0.1044929\n", + " spam 0.8716667 0.1283333\n", + "\n", + " justin\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " kam\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " kansas\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " kara\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " karen\n", + "trainSet$label F T\n", + " ham 0.9833219877 0.0166780123\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " karie\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " karl\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " karpenkov\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " karry\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " kasemervisz\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " katherine\n", + "trainSet$label F T\n", + " ham 0.97617427 0.02382573\n", + " spam 1.00000000 0.00000000\n", + "\n", + " kathryn\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 1.000000000 0.000000000\n", + "\n", + " kathy\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.998333333 0.001666667\n", + "\n", + " katie\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " katy\n", + "trainSet$label F T\n", + " ham 0.97004765 0.02995235\n", + " spam 1.00000000 0.00000000\n", + "\n", + " kay\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " kcs\n", + "trainSet$label F T\n", + " ham 0.990810075 0.009189925\n", + " spam 1.000000000 0.000000000\n", + "\n", + " kdstewart\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " keep\n", + "trainSet$label F T\n", + " ham 0.95541184 0.04458816\n", + " spam 0.95750000 0.04250000\n", + "\n", + " keeping\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.994166667 0.005833333\n", + "\n", + " keeps\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " keiser\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " keith\n", + "trainSet$label F T\n", + " ham 0.9959155888 0.0040844112\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " kelley\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " kellie\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " kelly\n", + "trainSet$label F T\n", + " ham 0.98604493 0.01395507\n", + " spam 1.00000000 0.00000000\n", + "\n", + " kemp\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ken\n", + "trainSet$label F T\n", + " ham 0.9778761062 0.0221238938\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " kendall\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " kenne\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 1.000000000 0.000000000\n", + "\n", + " kennedy\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " kenneth\n", + "trainSet$label F T\n", + " ham 0.990810075 0.009189925\n", + " spam 0.995833333 0.004166667\n", + "\n", + " kenny\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 1.000000000 0.000000000\n", + "\n", + " keno\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " kenob\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " kenseaman\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " kent\n", + "trainSet$label F T\n", + " ham 0.9976174268 0.0023825732\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " kenton\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " kept\n", + "trainSet$label F T\n", + " ham 0.99149081 0.00850919\n", + " spam 0.99000000 0.01000000\n", + "\n", + " kerr\n", + "trainSet$label F T\n", + " ham 0.9972770592 0.0027229408\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " kerry\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " kevin\n", + "trainSet$label F T\n", + " ham 0.9840027229 0.0159972771\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " key\n", + "trainSet$label F T\n", + " ham 0.98842750 0.01157250\n", + " spam 0.97666667 0.02333333\n", + "\n", + " keyboard\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " keyes\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " keystone\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " keyword\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " khan\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " khttp\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " khumalo\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " kick\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " kickoff\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " kidding\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " kids\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.996666667 0.003333333\n", + "\n", + " kill\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " killam\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " killed\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.993333333 0.006666667\n", + "\n", + " killen\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " killers\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.990833333 0.009166667\n", + "\n", + " killing\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.995000000 0.005000000\n", + "\n", + " kim\n", + "trainSet$label F T\n", + " ham 0.987746767 0.012253233\n", + " spam 0.998333333 0.001666667\n", + "\n", + " kimat\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " kimberlee\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " kimberly\n", + "trainSet$label F T\n", + " ham 0.9894486045 0.0105513955\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " kin\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " kind\n", + "trainSet$label F T\n", + " ham 0.991150442 0.008849558\n", + " spam 0.960833333 0.039166667\n", + "\n", + " kinder\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " kindly\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " kinesic\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " king\n", + "trainSet$label F T\n", + " ham 0.98604493 0.01395507\n", + " spam 0.99250000 0.00750000\n", + "\n", + " kingdom\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " kingwood\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 1.000000000 0.000000000\n", + "\n", + " kinsey\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 1.000000000 0.000000000\n", + "\n", + " kirkwood\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " kit\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " kitchen\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.998333333 0.001666667\n", + "\n", + " kleberg\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " klein\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.997500000 0.002500000\n", + "\n", + " klussmann\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " knew\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.993333333 0.006666667\n", + "\n", + " knle\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " kno\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " know\n", + "trainSet$label F T\n", + " ham 0.73315180 0.26684820\n", + " spam 0.91916667 0.08083333\n", + "\n", + " knowing\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " knowledge\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 0.994166667 0.005833333\n", + "\n", + " known\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.969166667 0.030833333\n", + "\n", + " knows\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.997500000 0.002500000\n", + "\n", + " knox\n", + "trainSet$label F T\n", + " ham 0.9955752212 0.0044247788\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " knudson\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " koch\n", + "trainSet$label F T\n", + " ham 0.9918311777 0.0081688223\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " kong\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " korea\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " kori\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " kponton\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " kri\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " kris\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " krishnaswamy\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " kristen\n", + "trainSet$label F T\n", + " ham 0.9894486 0.0105514\n", + " spam 1.0000000 0.0000000\n", + "\n", + " kristin\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ksign\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " kwbt\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " kyle\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 1.000000000 0.000000000\n", + "\n", + " kylie\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " laallen\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " label\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " labeled\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " labor\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.998333333 0.001666667\n", + "\n", + " lack\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.992500000 0.007500000\n", + "\n", + " lacy\n", + "trainSet$label F T\n", + " ham 0.9972770592 0.0027229408\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " ladies\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.996666667 0.003333333\n", + "\n", + " lady\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.992500000 0.007500000\n", + "\n", + " lag\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " lagos\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " laid\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9908333333 0.0091666667\n", + "\n", + " lake\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.996666667 0.003333333\n", + "\n", + " lakeland\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " lakho\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " lal\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " lamadrid\n", + "trainSet$label F T\n", + " ham 0.98672566 0.01327434\n", + " spam 1.00000000 0.00000000\n", + "\n", + " lamay\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " lambert\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " lamphier\n", + "trainSet$label F T\n", + " ham 0.98332199 0.01667801\n", + " spam 1.00000000 0.00000000\n", + "\n", + " lan\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " land\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 0.986666667 0.013333333\n", + "\n", + " lane\n", + "trainSet$label F T\n", + " ham 0.9962559564 0.0037440436\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " lang\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " lange\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " language\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.991666667 0.008333333\n", + "\n", + " lannou\n", + "trainSet$label F T\n", + " ham 0.97617427 0.02382573\n", + " spam 1.00000000 0.00000000\n", + "\n", + " laporte\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " laptop\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.990000000 0.010000000\n", + "\n", + " large\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 0.957500000 0.042500000\n", + "\n", + " larger\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.990000000 0.010000000\n", + "\n", + " largest\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.988333333 0.011666667\n", + "\n", + " larrissa\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " larry\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.997500000 0.002500000\n", + "\n", + " las\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.985000000 0.015000000\n", + "\n", + " laser\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " last\n", + "trainSet$label F T\n", + " ham 0.93703199 0.06296801\n", + " spam 0.93416667 0.06583333\n", + "\n", + " lasting\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9908333333 0.0091666667\n", + "\n", + " lastname\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " lasts\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9825 0.0175\n", + "\n", + " late\n", + "trainSet$label F T\n", + " ham 0.98400272 0.01599728\n", + " spam 0.97583333 0.02416667\n", + "\n", + " lately\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " later\n", + "trainSet$label F T\n", + " ham 0.98162015 0.01837985\n", + " spam 0.98416667 0.01583333\n", + "\n", + " lateral\n", + "trainSet$label F T\n", + " ham 0.9965963240 0.0034036760\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " latest\n", + "trainSet$label F T\n", + " ham 0.98978897 0.01021103\n", + " spam 0.96000000 0.04000000\n", + "\n", + " latter\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " lauderdale\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " lauer\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " laugh\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " laughing\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " launch\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.996666667 0.003333333\n", + "\n", + " launched\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " launching\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " laura\n", + "trainSet$label F T\n", + " ham 0.9925119129 0.0074880871\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " lauraan\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " laurel\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " lauri\n", + "trainSet$label F T\n", + " ham 0.9758339006 0.0241660994\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " laurie\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " lavorato\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " law\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.987500000 0.012500000\n", + "\n", + " lawn\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " lawrence\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " laws\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995000000 0.005000000\n", + "\n", + " lawyer\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " lax\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " lay\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.992500000 0.007500000\n", + "\n", + " laying\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " layout\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " lbs\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " lcd\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " ldc\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " lead\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.990000000 0.010000000\n", + "\n", + " leaden\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " leader\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.982500000 0.017500000\n", + "\n", + " leaders\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.994166667 0.005833333\n", + "\n", + " leadership\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.998333333 0.001666667\n", + "\n", + " leading\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.982500000 0.017500000\n", + "\n", + " leads\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.995833333 0.004166667\n", + "\n", + " league\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " leak\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " learn\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.975000000 0.025000000\n", + "\n", + " learned\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.998333333 0.001666667\n", + "\n", + " learning\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.996666667 0.003333333\n", + "\n", + " learns\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " lease\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.993333333 0.006666667\n", + "\n", + " leases\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " least\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 0.987500000 0.012500000\n", + "\n", + " leave\n", + "trainSet$label F T\n", + " ham 0.98774677 0.01225323\n", + " spam 0.98916667 0.01083333\n", + "\n", + " leaves\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " leaving\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.996666667 0.003333333\n", + "\n", + " led\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.992500000 0.007500000\n", + "\n", + " ledgers\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " lee\n", + "trainSet$label F T\n", + " ham 0.969366916 0.030633084\n", + " spam 0.998333333 0.001666667\n", + "\n", + " lees\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " left\n", + "trainSet$label F T\n", + " ham 0.97923758 0.02076242\n", + " spam 0.98583333 0.01416667\n", + "\n", + " lefta\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " lega\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " legacy\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " legal\n", + "trainSet$label F T\n", + " ham 0.98366236 0.01633764\n", + " spam 0.98333333 0.01666667\n", + "\n", + " legally\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.996666667 0.003333333\n", + "\n", + " legislation\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9716666667 0.0283333333\n", + "\n", + " legitimate\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " lehman\n", + "trainSet$label F T\n", + " ham 0.9965963240 0.0034036760\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " lenart\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 1.000000000 0.000000000\n", + "\n", + " lend\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " lenders\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " lending\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " length\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.988333333 0.011666667\n", + "\n", + " les\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " leslie\n", + "trainSet$label F T\n", + " ham 0.9918311777 0.0081688223\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " less\n", + "trainSet$label F T\n", + " ham 0.95983662 0.04016338\n", + " spam 0.93916667 0.06083333\n", + "\n", + " lesser\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " lesson\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.998333333 0.001666667\n", + "\n", + " lessons\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " let\n", + "trainSet$label F T\n", + " ham 0.77263445 0.22736555\n", + " spam 0.96083333 0.03916667\n", + "\n", + " leth\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " lets\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.998333333 0.001666667\n", + "\n", + " letter\n", + "trainSet$label F T\n", + " ham 0.98400272 0.01599728\n", + " spam 0.97750000 0.02250000\n", + "\n", + " letters\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.995833333 0.004166667\n", + "\n", + " lev\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " level\n", + "trainSet$label F T\n", + " ham 0.98536419 0.01463581\n", + " spam 0.98000000 0.02000000\n", + "\n", + " levels\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.993333333 0.006666667\n", + "\n", + " leverage\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.997500000 0.002500000\n", + "\n", + " levitra\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9875 0.0125\n", + "\n", + " levy\n", + "trainSet$label F T\n", + " ham 0.9972770592 0.0027229408\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " lewis\n", + "trainSet$label F T\n", + " ham 0.9965963240 0.0034036760\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " lexington\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " liability\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.995833333 0.004166667\n", + "\n", + " liable\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " liberty\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " library\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " licarione\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " lice\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " license\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.993333333 0.006666667\n", + "\n", + " licensed\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.978333333 0.021666667\n", + "\n", + " licenses\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " licensing\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " lie\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " lies\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.991666667 0.008333333\n", + "\n", + " lieu\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " lieutenant\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " life\n", + "trainSet$label F T\n", + " ham 0.99285228 0.00714772\n", + " spam 0.94500000 0.05500000\n", + "\n", + " lifestyle\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " lifetime\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " lift\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " lifted\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " light\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.984166667 0.015833333\n", + "\n", + " lightfoot\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 1.000000000 0.000000000\n", + "\n", + " lighting\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " lightly\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " lightning\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " lights\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " like\n", + "trainSet$label F T\n", + " ham 0.9138870 0.0861130\n", + " spam 0.8616667 0.1383333\n", + "\n", + " likely\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.996666667 0.003333333\n", + "\n", + " lillian\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " lilly\n", + "trainSet$label F T\n", + " ham 0.9962559564 0.0037440436\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " lim\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " limit\n", + "trainSet$label F T\n", + " ham 0.9938733833 0.0061266167\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " limitation\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " limitations\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " limited\n", + "trainSet$label F T\n", + " ham 0.98876787 0.01123213\n", + " spam 0.93833333 0.06166667\n", + "\n", + " limits\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " limo\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " linda\n", + "trainSet$label F T\n", + " ham 0.991150442 0.008849558\n", + " spam 0.998333333 0.001666667\n", + "\n", + " lindley\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 1.000000000 0.000000000\n", + "\n", + " line\n", + "trainSet$label F T\n", + " ham 0.95200817 0.04799183\n", + " spam 0.93583333 0.06416667\n", + "\n", + " lined\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " lines\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.990000000 0.010000000\n", + "\n", + " link\n", + "trainSet$label F T\n", + " ham 0.98230088 0.01769912\n", + " spam 0.90916667 0.09083333\n", + "\n", + " linked\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.995833333 0.004166667\n", + "\n", + " linking\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " links\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.995000000 0.005000000\n", + "\n", + " lipitor\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.991666667 0.008333333\n", + "\n", + " liqueur\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " liquidation\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9900000000 0.0100000000\n", + "\n", + " liquids\n", + "trainSet$label F T\n", + " ham 0.9935330157 0.0064669843\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " lis\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.990833333 0.009166667\n", + "\n", + " lisa\n", + "trainSet$label F T\n", + " ham 0.9506467 0.0493533\n", + " spam 1.0000000 0.0000000\n", + "\n", + " lisst\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " list\n", + "trainSet$label F T\n", + " ham 0.93907420 0.06092580\n", + " spam 0.92666667 0.07333333\n", + "\n", + " listbot\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " listed\n", + "trainSet$label F T\n", + " ham 0.97617427 0.02382573\n", + " spam 0.99250000 0.00750000\n", + "\n", + " listen\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.992500000 0.007500000\n", + "\n", + " listening\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " listing\n", + "trainSet$label F T\n", + " ham 0.99285228 0.00714772\n", + " spam 0.96916667 0.03083333\n", + "\n", + " lists\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.990000000 0.010000000\n", + "\n", + " literally\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " litigation\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9858333333 0.0141666667\n", + "\n", + " littie\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " little\n", + "trainSet$label F T\n", + " ham 0.97923758 0.02076242\n", + " spam 0.95916667 0.04083333\n", + "\n", + " lium\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " live\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.976666667 0.023333333\n", + "\n", + " lives\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.992500000 0.007500000\n", + "\n", + " living\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.990833333 0.009166667\n", + "\n", + " livonia\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " liz\n", + "trainSet$label F T\n", + " ham 0.97515317 0.02484683\n", + " spam 1.00000000 0.00000000\n", + "\n", + " llc\n", + "trainSet$label F T\n", + " ham 0.989788972 0.010211028\n", + " spam 0.993333333 0.006666667\n", + "\n", + " lling\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " lloyd\n", + "trainSet$label F T\n", + " ham 0.97515317 0.02484683\n", + " spam 1.00000000 0.00000000\n", + "\n", + " lls\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " lmb\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " lmmbtu\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " lng\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " loa\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " load\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.990833333 0.009166667\n", + "\n", + " loaded\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " loading\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9841666667 0.0158333333\n", + "\n", + " loan\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.990833333 0.009166667\n", + "\n", + " loans\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " lobby\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " lobo\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " loc\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " local\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.976666667 0.023333333\n", + "\n", + " locate\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.998333333 0.001666667\n", + "\n", + " located\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 0.986666667 0.013333333\n", + "\n", + " location\n", + "trainSet$label F T\n", + " ham 0.98264125 0.01735875\n", + " spam 0.98916667 0.01083333\n", + "\n", + " locations\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.998333333 0.001666667\n", + "\n", + " lock\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.991666667 0.008333333\n", + "\n", + " locked\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " locker\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " lockhart\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " lofton\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " log\n", + "trainSet$label F T\n", + " ham 0.99285228 0.00714772\n", + " spam 0.99750000 0.00250000\n", + "\n", + " logged\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " logging\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " logic\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " login\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.997500000 0.002500000\n", + "\n", + " logistic\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " logistics\n", + "trainSet$label F T\n", + " ham 0.97004765 0.02995235\n", + " spam 1.00000000 0.00000000\n", + "\n", + " logitech\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " logo\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995833333 0.004166667\n", + "\n", + " logon\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " logos\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.96916667 0.03083333\n", + "\n", + " loi\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " loibl\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " lomax\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " lon\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.997500000 0.002500000\n", + "\n", + " london\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.990000000 0.010000000\n", + "\n", + " lone\n", + "trainSet$label F T\n", + " ham 0.9850238257 0.0149761743\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " lonely\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " lonestar\n", + "trainSet$label F T\n", + " ham 0.9884275 0.0115725\n", + " spam 1.0000000 0.0000000\n", + "\n", + " long\n", + "trainSet$label F T\n", + " ham 0.97685500 0.02314500\n", + " spam 0.92083333 0.07916667\n", + "\n", + " longer\n", + "trainSet$label F T\n", + " ham 0.98298162 0.01701838\n", + " spam 0.96750000 0.03250000\n", + "\n", + " longines\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " longview\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " loo\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.991666667 0.008333333\n", + "\n", + " look\n", + "trainSet$label F T\n", + " ham 0.94043567 0.05956433\n", + " spam 0.94250000 0.05750000\n", + "\n", + " looked\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 0.995833333 0.004166667\n", + "\n", + " looking\n", + "trainSet$label F T\n", + " ham 0.97106875 0.02893125\n", + " spam 0.92250000 0.07750000\n", + "\n", + " looks\n", + "trainSet$label F T\n", + " ham 0.979577944 0.020422056\n", + " spam 0.995833333 0.004166667\n", + "\n", + " loop\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.998333333 0.001666667\n", + "\n", + " lopez\n", + "trainSet$label F T\n", + " ham 0.9976174268 0.0023825732\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " lord\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.996666667 0.003333333\n", + "\n", + " lori\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " loring\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " lorraine\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.997500000 0.002500000\n", + "\n", + " los\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9900000000 0.0100000000\n", + "\n", + " lose\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.966666667 0.033333333\n", + "\n", + " losing\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " loss\n", + "trainSet$label F T\n", + " ham 0.98706603 0.01293397\n", + " spam 0.96333333 0.03666667\n", + "\n", + " losses\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " lost\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.985833333 0.014166667\n", + "\n", + " lot\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.989166667 0.010833333\n", + "\n", + " lots\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.96166667 0.03833333\n", + "\n", + " lotteria\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " lottery\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9916666667 0.0083333333\n", + "\n", + " lotto\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " lotus\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 1.000000000 0.000000000\n", + "\n", + " lou\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " loudspeaker\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " louis\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.995000000 0.005000000\n", + "\n", + " louise\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 1.000000000 0.000000000\n", + "\n", + " louisiana\n", + "trainSet$label F T\n", + " ham 0.98366236 0.01633764\n", + " spam 0.99500000 0.00500000\n", + "\n", + " love\n", + "trainSet$label F T\n", + " ham 0.98672566 0.01327434\n", + " spam 0.96000000 0.04000000\n", + "\n", + " loved\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " loves\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " loving\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99500000 0.00500000\n", + "\n", + " low\n", + "trainSet$label F T\n", + " ham 0.99149081 0.00850919\n", + " spam 0.93750000 0.06250000\n", + "\n", + " lower\n", + "trainSet$label F T\n", + " ham 0.99012934 0.00987066\n", + " spam 0.98583333 0.01416667\n", + "\n", + " lowered\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " lowest\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.97416667 0.02583333\n", + "\n", + " loyal\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " loyalty\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " lozano\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " lqgcibz\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " lrc\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " lsk\n", + "trainSet$label F T\n", + " ham 0.97311096 0.02688904\n", + " spam 1.00000000 0.00000000\n", + "\n", + " lsp\n", + "trainSet$label F T\n", + " ham 0.97617427 0.02382573\n", + " spam 1.00000000 0.00000000\n", + "\n", + " lst\n", + "trainSet$label F T\n", + " ham 0.977195371 0.022804629\n", + " spam 0.990833333 0.009166667\n", + "\n", + " ltd\n", + "trainSet$label F T\n", + " ham 0.98672566 0.01327434\n", + " spam 0.98750000 0.01250000\n", + "\n", + " lubrizol\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " lucas\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " luck\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.988333333 0.011666667\n", + "\n", + " lucky\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.990000000 0.010000000\n", + "\n", + " lucrative\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " lufkin\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " luis\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.997500000 0.002500000\n", + "\n", + " luke\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " lump\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " lunch\n", + "trainSet$label F T\n", + " ham 0.9938733833 0.0061266167\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " luong\n", + "trainSet$label F T\n", + " ham 0.98604493 0.01395507\n", + " spam 1.00000000 0.00000000\n", + "\n", + " luther\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " lutz\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " lynn\n", + "trainSet$label F T\n", + " ham 0.9965963240 0.0034036760\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " lyondell\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 1.000000000 0.000000000\n", + "\n", + " lyons\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 1.000000000 0.000000000\n", + "\n", + " maake\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " mac\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " machine\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.994166667 0.005833333\n", + "\n", + " machines\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " machleit\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " macintosh\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " mack\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 1.000000000 0.000000000\n", + "\n", + " macromedia\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9825 0.0175\n", + "\n", + " mad\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " madam\n", + "trainSet$label F T\n", + " ham 1.00 0.00\n", + " spam 0.99 0.01\n", + "\n", + " made\n", + "trainSet$label F T\n", + " ham 0.94826413 0.05173587\n", + " spam 0.93500000 0.06500000\n", + "\n", + " madonna\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " madras\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " madrid\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " magazine\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.995833333 0.004166667\n", + "\n", + " magee\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " magic\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " magnolia\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " mai\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9825 0.0175\n", + "\n", + " maiiings\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.991666667 0.008333333\n", + "\n", + " mail\n", + "trainSet$label F T\n", + " ham 0.91729067 0.08270933\n", + " spam 0.90500000 0.09500000\n", + "\n", + " mailbox\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.997500000 0.002500000\n", + "\n", + " mailed\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 1.000000000 0.000000000\n", + "\n", + " mailer\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.996666667 0.003333333\n", + "\n", + " mailing\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.981666667 0.018333333\n", + "\n", + " mailings\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9808333333 0.0191666667\n", + "\n", + " maillet\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " mailman\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " mails\n", + "trainSet$label F T\n", + " ham 0.992852280 0.007147720\n", + " spam 0.998333333 0.001666667\n", + "\n", + " mailto\n", + "trainSet$label F T\n", + " ham 0.976174268 0.023825732\n", + " spam 0.991666667 0.008333333\n", + "\n", + " main\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.987500000 0.012500000\n", + "\n", + " mainly\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.997500000 0.002500000\n", + "\n", + " maintain\n", + "trainSet$label F T\n", + " ham 0.992852280 0.007147720\n", + " spam 0.995833333 0.004166667\n", + "\n", + " maintained\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " maintaining\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.997500000 0.002500000\n", + "\n", + " maintenance\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 0.996666667 0.003333333\n", + "\n", + " majeure\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 1.000000000 0.000000000\n", + "\n", + " major\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.965000000 0.035000000\n", + "\n", + " majority\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.994166667 0.005833333\n", + "\n", + " majorwitz\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " majure\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " make\n", + "trainSet$label F T\n", + " ham 0.91797141 0.08202859\n", + " spam 0.91416667 0.08583333\n", + "\n", + " maker\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " makers\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " makes\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.983333333 0.016666667\n", + "\n", + " making\n", + "trainSet$label F T\n", + " ham 0.98570456 0.01429544\n", + " spam 0.98083333 0.01916667\n", + "\n", + " mal\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " malcolm\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " maldonado\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " male\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.985 0.015\n", + "\n", + " mall\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " mammoth\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " man\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.957500000 0.042500000\n", + "\n", + " manage\n", + "trainSet$label F T\n", + " ham 0.989108237 0.010891763\n", + " spam 0.994166667 0.005833333\n", + "\n", + " managed\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.994166667 0.005833333\n", + "\n", + " management\n", + "trainSet$label F T\n", + " ham 0.94758339 0.05241661\n", + " spam 0.96500000 0.03500000\n", + "\n", + " manager\n", + "trainSet$label F T\n", + " ham 0.96732471 0.03267529\n", + " spam 0.98000000 0.02000000\n", + "\n", + " managers\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 0.997500000 0.002500000\n", + "\n", + " manages\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " managing\n", + "trainSet$label F T\n", + " ham 0.992852280 0.007147720\n", + " spam 0.994166667 0.005833333\n", + "\n", + " managment\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " mandatory\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " mandy\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " mane\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " manfred\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " manipulation\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " mann\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " manner\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.992500000 0.007500000\n", + "\n", + " manual\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.990000000 0.010000000\n", + "\n", + " manually\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 1.000000000 0.000000000\n", + "\n", + " manufacturer\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.991666667 0.008333333\n", + "\n", + " manufacturers\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " manufacturing\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " many\n", + "trainSet$label F T\n", + " ham 0.98093941 0.01906059\n", + " spam 0.90666667 0.09333333\n", + "\n", + " mao\n", + "trainSet$label F T\n", + " ham 0.9976174268 0.0023825732\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " map\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.995833333 0.004166667\n", + "\n", + " mappings\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " maps\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " mar\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 0.994166667 0.005833333\n", + "\n", + " marathon\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " march\n", + "trainSet$label F T\n", + " ham 0.92750170 0.07249830\n", + " spam 0.98333333 0.01666667\n", + "\n", + " marchand\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " marcus\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " margin\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.995833333 0.004166667\n", + "\n", + " maria\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.997500000 0.002500000\n", + "\n", + " marie\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " marilu\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " marilyn\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " mariner\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " maritta\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " mark\n", + "trainSet$label F T\n", + " ham 0.947923758 0.052076242\n", + " spam 0.991666667 0.008333333\n", + "\n", + " marked\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " market\n", + "trainSet$label F T\n", + " ham 0.98127978 0.01872022\n", + " spam 0.94416667 0.05583333\n", + "\n", + " marketed\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " marketer\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " marketing\n", + "trainSet$label F T\n", + " ham 0.97413206 0.02586794\n", + " spam 0.98250000 0.01750000\n", + "\n", + " marketpiace\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " marketplace\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " markets\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.984166667 0.015833333\n", + "\n", + " marks\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " marlene\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " marlin\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 1.000000000 0.000000000\n", + "\n", + " marol\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " maroon\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " married\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.990833333 0.009166667\n", + "\n", + " marrow\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " mars\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " marshall\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " marta\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 1.000000000 0.000000000\n", + "\n", + " martha\n", + "trainSet$label F T\n", + " ham 0.9972770592 0.0027229408\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " martin\n", + "trainSet$label F T\n", + " ham 0.99012934 0.00987066\n", + " spam 0.99750000 0.00250000\n", + "\n", + " martinez\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.996666667 0.003333333\n", + "\n", + " marty\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " marvia\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " mary\n", + "trainSet$label F T\n", + " ham 0.921375085 0.078624915\n", + " spam 0.994166667 0.005833333\n", + "\n", + " maryland\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " mash\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " mason\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " mass\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.995000000 0.005000000\n", + "\n", + " massey\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " massive\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9850000000 0.0150000000\n", + "\n", + " master\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.994166667 0.005833333\n", + "\n", + " mastercard\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " masters\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " mat\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " matagorda\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " match\n", + "trainSet$label F T\n", + " ham 0.992852280 0.007147720\n", + " spam 0.990833333 0.009166667\n", + "\n", + " matching\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 1.000000000 0.000000000\n", + "\n", + " materia\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9875 0.0125\n", + "\n", + " material\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.971666667 0.028333333\n", + "\n", + " materialiy\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " materially\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.97833333 0.02166667\n", + "\n", + " materials\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.993333333 0.006666667\n", + "\n", + " matrix\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " matt\n", + "trainSet$label F T\n", + " ham 0.99149081 0.00850919\n", + " spam 0.99500000 0.00500000\n", + "\n", + " matter\n", + "trainSet$label F T\n", + " ham 0.9874064 0.0125936\n", + " spam 0.9800000 0.0200000\n", + "\n", + " matters\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.995833333 0.004166667\n", + "\n", + " matthew\n", + "trainSet$label F T\n", + " ham 0.9969366916 0.0030633084\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " mature\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " maturity\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " maurice\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " max\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.992500000 0.007500000\n", + "\n", + " maximize\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " maximum\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.990833333 0.009166667\n", + "\n", + " maxine\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " maxwell\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " may\n", + "trainSet$label F T\n", + " ham 0.8556841 0.1443159\n", + " spam 0.8808333 0.1191667\n", + "\n", + " maya\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " maybe\n", + "trainSet$label F T\n", + " ham 0.98978897 0.01021103\n", + " spam 0.99500000 0.00500000\n", + "\n", + " maynard\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " mazowita\n", + "trainSet$label F T\n", + " ham 0.99012934 0.00987066\n", + " spam 1.00000000 0.00000000\n", + "\n", + " mba\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " mbd\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " mbi\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " mbits\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " mbps\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " mcauliff\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " mccabe\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " mcclellan\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " mcclure\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " mcconnell\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.996666667 0.003333333\n", + "\n", + " mccoy\n", + "trainSet$label F T\n", + " ham 0.9860449285 0.0139550715\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " mcdermott\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " mcdonald\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " mcf\n", + "trainSet$label F T\n", + " ham 0.97957794 0.02042206\n", + " spam 0.99750000 0.00250000\n", + "\n", + " mcfd\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " mcgee\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.996666667 0.003333333\n", + "\n", + " mckay\n", + "trainSet$label F T\n", + " ham 0.98400272 0.01599728\n", + " spam 1.00000000 0.00000000\n", + "\n", + " mclarney\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 1.000000000 0.000000000\n", + "\n", + " mcloughlin\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 1.000000000 0.000000000\n", + "\n", + " mcmahon\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " mcmichael\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " mcmills\n", + "trainSet$label F T\n", + " ham 0.9894486 0.0105514\n", + " spam 1.0000000 0.0000000\n", + "\n", + " mcmullen\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " mcneill\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " mcnic\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " mdq\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " meadowtree\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " meals\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " mean\n", + "trainSet$label F T\n", + " ham 0.991490810 0.008509190\n", + " spam 0.991666667 0.008333333\n", + "\n", + " meaning\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.969166667 0.030833333\n", + "\n", + " means\n", + "trainSet$label F T\n", + " ham 0.98978897 0.01021103\n", + " spam 0.98416667 0.01583333\n", + "\n", + " meant\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.987500000 0.012500000\n", + "\n", + " meantime\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.997500000 0.002500000\n", + "\n", + " measure\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.994166667 0.005833333\n", + "\n", + " measured\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " measurement\n", + "trainSet$label F T\n", + " ham 0.990810075 0.009189925\n", + " spam 1.000000000 0.000000000\n", + "\n", + " measures\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " measuring\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.996666667 0.003333333\n", + "\n", + " med\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " medg\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " media\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.990000000 0.010000000\n", + "\n", + " medic\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " medica\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " medical\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.970000000 0.030000000\n", + "\n", + " medication\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9858333333 0.0141666667\n", + "\n", + " medications\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9675000000 0.0325000000\n", + "\n", + " medicine\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " medicines\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " medium\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.98916667 0.01083333\n", + "\n", + " meds\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.93333333 0.06666667\n", + "\n", + " medusa\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " medz\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " meers\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " meet\n", + "trainSet$label F T\n", + " ham 0.97651464 0.02348536\n", + " spam 0.96916667 0.03083333\n", + "\n", + " meeting\n", + "trainSet$label F T\n", + " ham 0.960176991 0.039823009\n", + " spam 0.991666667 0.008333333\n", + "\n", + " meetings\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 1.000000000 0.000000000\n", + "\n", + " meets\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " mega\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " megan\n", + "trainSet$label F T\n", + " ham 0.961878829 0.038121171\n", + " spam 0.998333333 0.001666667\n", + "\n", + " melanie\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " melba\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " melbourne\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " melethil\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " melinda\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " melissa\n", + "trainSet$label F T\n", + " ham 0.93056501 0.06943499\n", + " spam 1.00000000 0.00000000\n", + "\n", + " member\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.984166667 0.015833333\n", + "\n", + " members\n", + "trainSet$label F T\n", + " ham 0.99012934 0.00987066\n", + " spam 0.98916667 0.01083333\n", + "\n", + " membership\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.983333333 0.016666667\n", + "\n", + " memo\n", + "trainSet$label F T\n", + " ham 0.98808713 0.01191287\n", + " spam 1.00000000 0.00000000\n", + "\n", + " memorial\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " memory\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.991666667 0.008333333\n", + "\n", + " men\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.963333333 0.036666667\n", + "\n", + " mendoza\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " mens\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " ment\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.991666667 0.008333333\n", + "\n", + " mental\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " mention\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.997500000 0.002500000\n", + "\n", + " mentioned\n", + "trainSet$label F T\n", + " ham 0.98059905 0.01940095\n", + " spam 0.98750000 0.01250000\n", + "\n", + " menu\n", + "trainSet$label F T\n", + " ham 0.9972770592 0.0027229408\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " meoh\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " merchandise\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " merchant\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.994166667 0.005833333\n", + "\n", + " meredith\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 1.000000000 0.000000000\n", + "\n", + " merger\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.998333333 0.001666667\n", + "\n", + " mergers\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " meridia\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98916667 0.01083333\n", + "\n", + " meridian\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " merit\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " meritenergy\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " merry\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " mesmeric\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " meson\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " mess\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " message\n", + "trainSet$label F T\n", + " ham 0.9033356 0.0966644\n", + " spam 0.8841667 0.1158333\n", + "\n", + " messages\n", + "trainSet$label F T\n", + " ham 0.992852280 0.007147720\n", + " spam 0.990833333 0.009166667\n", + "\n", + " messaging\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.998333333 0.001666667\n", + "\n", + " messenger\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " met\n", + "trainSet$label F T\n", + " ham 0.987746767 0.012253233\n", + " spam 0.990833333 0.009166667\n", + "\n", + " meta\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " metabole\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " metabolic\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " metal\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " metals\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " metasolv\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " meter\n", + "trainSet$label F T\n", + " ham 0.7893125 0.2106875\n", + " spam 1.0000000 0.0000000\n", + "\n", + " meters\n", + "trainSet$label F T\n", + " ham 0.961538462 0.038461538\n", + " spam 0.998333333 0.001666667\n", + "\n", + " methane\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " methanol\n", + "trainSet$label F T\n", + " ham 0.98502383 0.01497617\n", + " spam 1.00000000 0.00000000\n", + "\n", + " method\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.995000000 0.005000000\n", + "\n", + " methodology\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " methods\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " metz\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " mexican\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " mexico\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " meyers\n", + "trainSet$label F T\n", + " ham 0.96017699 0.03982301\n", + " spam 1.00000000 0.00000000\n", + "\n", + " mgi\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " mgmt\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 1.000000000 0.000000000\n", + "\n", + " mgr\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " mgt\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " mhz\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " miami\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " michael\n", + "trainSet$label F T\n", + " ham 0.943158611 0.056841389\n", + " spam 0.993333333 0.006666667\n", + "\n", + " michele\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " michelle\n", + "trainSet$label F T\n", + " ham 0.9972770592 0.0027229408\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " mick\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " micro\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9908333333 0.0091666667\n", + "\n", + " microcap\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98333333 0.01666667\n", + "\n", + " microsoft\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.932500000 0.067500000\n", + "\n", + " mid\n", + "trainSet$label F T\n", + " ham 0.983662355 0.016337645\n", + " spam 0.990833333 0.009166667\n", + "\n", + " midcoast\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " midcon\n", + "trainSet$label F T\n", + " ham 0.98230088 0.01769912\n", + " spam 1.00000000 0.00000000\n", + "\n", + " middle\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.986666667 0.013333333\n", + "\n", + " middleware\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " midlothian\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " midnight\n", + "trainSet$label F T\n", + " ham 0.9969366916 0.0030633084\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " midpoint\n", + "trainSet$label F T\n", + " ham 0.9976174268 0.0023825732\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " midstream\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.998333333 0.001666667\n", + "\n", + " midtex\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " mig\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " might\n", + "trainSet$label F T\n", + " ham 0.97515317 0.02484683\n", + " spam 0.96250000 0.03750000\n", + "\n", + " mighty\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " migrate\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " migrated\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " migrating\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " migration\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " miilennium\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " miilion\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " miimizing\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " mike\n", + "trainSet$label F T\n", + " ham 0.96460177 0.03539823\n", + " spam 0.99750000 0.00250000\n", + "\n", + " mild\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " mile\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.994166667 0.005833333\n", + "\n", + " miles\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.994166667 0.005833333\n", + "\n", + " miliennium\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " miliion\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " military\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9916666667 0.0083333333\n", + "\n", + " mill\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " millenium\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " millennium\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " miller\n", + "trainSet$label F T\n", + " ham 0.9952348536 0.0047651464\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " million\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.936666667 0.063333333\n", + "\n", + " millions\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9800000000 0.0200000000\n", + "\n", + " mills\n", + "trainSet$label F T\n", + " ham 0.99012934 0.00987066\n", + " spam 1.00000000 0.00000000\n", + "\n", + " milton\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " milwaukee\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " mime\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.991666667 0.008333333\n", + "\n", + " mimi\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " min\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.980833333 0.019166667\n", + "\n", + " mind\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.976666667 0.023333333\n", + "\n", + " minded\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " mindspring\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " mine\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.994166667 0.005833333\n", + "\n", + " mineral\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " minerals\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " mines\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " minhplno\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " mini\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " minimal\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.994166667 0.005833333\n", + "\n", + " minimum\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.992500000 0.007500000\n", + "\n", + " mining\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " miningnews\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " minister\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " ministry\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " minnesota\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995833333 0.004166667\n", + "\n", + " mins\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " minus\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.998333333 0.001666667\n", + "\n", + " minute\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.982500000 0.017500000\n", + "\n", + " minutes\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.977500000 0.022500000\n", + "\n", + " mips\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 1.000000000 0.000000000\n", + "\n", + " miracle\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.998333333 0.001666667\n", + "\n", + " mirrior\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " mirror\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " miscellaneous\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " misieading\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " misleading\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.991666667 0.008333333\n", + "\n", + " miss\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.992500000 0.007500000\n", + "\n", + " missed\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.996666667 0.003333333\n", + "\n", + " missing\n", + "trainSet$label F T\n", + " ham 0.989108237 0.010891763\n", + " spam 0.995833333 0.004166667\n", + "\n", + " mission\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " mistake\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.996666667 0.003333333\n", + "\n", + " mistaken\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " misty\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " mit\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " mitch\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " mitcham\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " mitchell\n", + "trainSet$label F T\n", + " ham 0.991150442 0.008849558\n", + " spam 1.000000000 0.000000000\n", + "\n", + " mitosis\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " mix\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9791666667 0.0208333333\n", + "\n", + " mixed\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.998333333 0.001666667\n", + "\n", + " mjg\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " mke\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " mltrochta\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " mmbtu\n", + "trainSet$label F T\n", + " ham 0.8536419 0.1463581\n", + " spam 1.0000000 0.0000000\n", + "\n", + " mmbtud\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " mmbtus\n", + "trainSet$label F T\n", + " ham 0.9874064 0.0125936\n", + " spam 1.0000000 0.0000000\n", + "\n", + " mmbut\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " mmcf\n", + "trainSet$label F T\n", + " ham 0.9969366916 0.0030633084\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " mmcfd\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " mmsr\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " mnei\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " mobil\n", + "trainSet$label F T\n", + " ham 0.9826412526 0.0173587474\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " mobile\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.955000000 0.045000000\n", + "\n", + " mobiles\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " mobipocket\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " mode\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " model\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.990000000 0.010000000\n", + "\n", + " models\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " modem\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.994166667 0.005833333\n", + "\n", + " moderate\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " modern\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " modifications\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " modified\n", + "trainSet$label F T\n", + " ham 0.9972770592 0.0027229408\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " modify\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.995833333 0.004166667\n", + "\n", + " mogi\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " mohammed\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " mois\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " molly\n", + "trainSet$label F T\n", + " ham 0.9908100749 0.0091899251\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " mom\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " moment\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.987500000 0.012500000\n", + "\n", + " moments\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " momentum\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " mon\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.992500000 0.007500000\n", + "\n", + " monday\n", + "trainSet$label F T\n", + " ham 0.94894486 0.05105514\n", + " spam 0.98666667 0.01333333\n", + "\n", + " money\n", + "trainSet$label F T\n", + " ham 0.98468346 0.01531654\n", + " spam 0.87000000 0.13000000\n", + "\n", + " monga\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " monica\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.995000000 0.005000000\n", + "\n", + " monitor\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 0.993333333 0.006666667\n", + "\n", + " monitoring\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " mont\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " montana\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " month\n", + "trainSet$label F T\n", + " ham 0.85636487 0.14363513\n", + " spam 0.94916667 0.05083333\n", + "\n", + " monthly\n", + "trainSet$label F T\n", + " ham 0.98059905 0.01940095\n", + " spam 0.99000000 0.01000000\n", + "\n", + " months\n", + "trainSet$label F T\n", + " ham 0.96732471 0.03267529\n", + " spam 0.96333333 0.03666667\n", + "\n", + " moody\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " moon\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " moopid\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " moore\n", + "trainSet$label F T\n", + " ham 0.9948944860 0.0051055140\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " moorer\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " moosq\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " mops\n", + "trainSet$label F T\n", + " ham 0.98808713 0.01191287\n", + " spam 1.00000000 0.00000000\n", + "\n", + " mor\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.991666667 0.008333333\n", + "\n", + " moran\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " morgan\n", + "trainSet$label F T\n", + " ham 0.98604493 0.01395507\n", + " spam 0.99750000 0.00250000\n", + "\n", + " morning\n", + "trainSet$label F T\n", + " ham 0.96868618 0.03131382\n", + " spam 0.98250000 0.01750000\n", + "\n", + " mornings\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " morris\n", + "trainSet$label F T\n", + " ham 0.9867256637 0.0132743363\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " morrow\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " mortar\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " mortgage\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.987500000 0.012500000\n", + "\n", + " moscoso\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 1.000000000 0.000000000\n", + "\n", + " moshou\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 1.000000000 0.000000000\n", + "\n", + " mostly\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " mother\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99000000 0.01000000\n", + "\n", + " motion\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " motley\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " motor\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " mount\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " mountain\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " mouse\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99500000 0.00500000\n", + "\n", + " mouth\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9916666667 0.0083333333\n", + "\n", + " movado\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " moval\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " move\n", + "trainSet$label F T\n", + " ham 0.98025868 0.01974132\n", + " spam 0.96333333 0.03666667\n", + "\n", + " moved\n", + "trainSet$label F T\n", + " ham 0.982300885 0.017699115\n", + " spam 0.994166667 0.005833333\n", + "\n", + " movement\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.994166667 0.005833333\n", + "\n", + " moves\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.993333333 0.006666667\n", + "\n", + " movie\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " movies\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9866666667 0.0133333333\n", + "\n", + " moving\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.988333333 0.011666667\n", + "\n", + " mpeg\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " mrs\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9891666667 0.0108333333\n", + "\n", + " mrut\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " msg\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " msn\n", + "trainSet$label F T\n", + " ham 0.9962559564 0.0037440436\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " mtbe\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 1.000000000 0.000000000\n", + "\n", + " mtg\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " mtr\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 1.000000000 0.000000000\n", + "\n", + " much\n", + "trainSet$label F T\n", + " ham 0.96698434 0.03301566\n", + " spam 0.94083333 0.05916667\n", + "\n", + " mugabe\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " muiti\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " muller\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " mullet\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " multi\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.985000000 0.015000000\n", + "\n", + " multilanguage\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.991666667 0.008333333\n", + "\n", + " multilingual\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " multimedia\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " multipart\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.994166667 0.005833333\n", + "\n", + " multiple\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.982500000 0.017500000\n", + "\n", + " munich\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " municipal\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.995833333 0.004166667\n", + "\n", + " muscle\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.97833333 0.02166667\n", + "\n", + " museum\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " music\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.986666667 0.013333333\n", + "\n", + " musicnetwork\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " must\n", + "trainSet$label F T\n", + " ham 0.97481280 0.02518720\n", + " spam 0.94666667 0.05333333\n", + "\n", + " mutt\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " mutual\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " mve\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " myers\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " myorder\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " myrrh\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " mystery\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " nachlinger\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " nahou\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " naked\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " nal\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " name\n", + "trainSet$label F T\n", + " ham 0.95507148 0.04492852\n", + " spam 0.94416667 0.05583333\n", + "\n", + " named\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.997500000 0.002500000\n", + "\n", + " names\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 0.987500000 0.012500000\n", + "\n", + " nancy\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 1.000000000 0.000000000\n", + "\n", + " nascar\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " nasd\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " nasdaq\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " nashville\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " nat\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.998333333 0.001666667\n", + "\n", + " nata\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " nathan\n", + "trainSet$label F T\n", + " ham 0.9928522805 0.0071477195\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " nathaniel\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " nation\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.995833333 0.004166667\n", + "\n", + " nationa\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " national\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.980000000 0.020000000\n", + "\n", + " nationwide\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " native\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " natura\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " natural\n", + "trainSet$label F T\n", + " ham 0.97072839 0.02927161\n", + " spam 0.97000000 0.03000000\n", + "\n", + " naturally\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " nature\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " nave\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " nax\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98916667 0.01083333\n", + "\n", + " nbc\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " nbsp\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.991666667 0.008333333\n", + "\n", + " ndin\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " nds\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " neal\n", + "trainSet$label F T\n", + " ham 0.9829816201 0.0170183799\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " near\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 0.979166667 0.020833333\n", + "\n", + " nearby\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " nearest\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " nearly\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.989166667 0.010833333\n", + "\n", + " neat\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " necessarily\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " necessary\n", + "trainSet$label F T\n", + " ham 0.97753574 0.02246426\n", + " spam 0.96916667 0.03083333\n", + "\n", + " necx\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " ned\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " need\n", + "trainSet$label F T\n", + " ham 0.7957794 0.2042206\n", + " spam 0.8900000 0.1100000\n", + "\n", + " needed\n", + "trainSet$label F T\n", + " ham 0.96868618 0.03131382\n", + " spam 0.95750000 0.04250000\n", + "\n", + " needham\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " needs\n", + "trainSet$label F T\n", + " ham 0.93533016 0.06466984\n", + " spam 0.97416667 0.02583333\n", + "\n", + " negative\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.990000000 0.010000000\n", + "\n", + " negotiate\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " negotiated\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.998333333 0.001666667\n", + "\n", + " negotiating\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " negotiations\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.990833333 0.009166667\n", + "\n", + " neil\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " neither\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.98916667 0.01083333\n", + "\n", + " nelson\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 1.000000000 0.000000000\n", + "\n", + " nemec\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " neon\n", + "trainSet$label F T\n", + " ham 0.9894486 0.0105514\n", + " spam 1.0000000 0.0000000\n", + "\n", + " nervous\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " nesa\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " net\n", + "trainSet$label F T\n", + " ham 0.96970728 0.03029272\n", + " spam 0.89166667 0.10833333\n", + "\n", + " netco\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " netcom\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " netherlands\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " netscape\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " network\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.976666667 0.023333333\n", + "\n", + " networking\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " networks\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.994166667 0.005833333\n", + "\n", + " neuner\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 1.000000000 0.000000000\n", + "\n", + " neuweiler\n", + "trainSet$label F T\n", + " ham 0.98570456 0.01429544\n", + " spam 1.00000000 0.00000000\n", + "\n", + " never\n", + "trainSet$label F T\n", + " ham 0.98434309 0.01565691\n", + " spam 0.94916667 0.05083333\n", + "\n", + " new\n", + "trainSet$label F T\n", + " ham 0.8614704 0.1385296\n", + " spam 0.8291667 0.1708333\n", + "\n", + " newest\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99500000 0.00500000\n", + "\n", + " newland\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " newly\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.998333333 0.001666667\n", + "\n", + " newport\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " newpower\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " news\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.935000000 0.065000000\n", + "\n", + " newsietter\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98916667 0.01083333\n", + "\n", + " newsletter\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.963333333 0.036666667\n", + "\n", + " newsletters\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " newspaper\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " newton\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " nexium\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " next\n", + "trainSet$label F T\n", + " ham 0.93669163 0.06330837\n", + " spam 0.94916667 0.05083333\n", + "\n", + " ney\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " nfl\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " ngi\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ngo\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ngpl\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " nguyen\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 1.000000000 0.000000000\n", + "\n", + " nica\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " nice\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.989166667 0.010833333\n", + "\n", + " nicely\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " niche\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " nicholie\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " nichols\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " nick\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 1.000000000 0.000000000\n", + "\n", + " nickel\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " nicole\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " niestrath\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " nigeria\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " nigerian\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " night\n", + "trainSet$label F T\n", + " ham 0.98570456 0.01429544\n", + " spam 0.98000000 0.02000000\n", + "\n", + " nightly\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " nights\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " nike\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " nile\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " nina\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " nine\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9916666667 0.0083333333\n", + "\n", + " ninety\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " nitrate\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " nng\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " nobody\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.992500000 0.007500000\n", + "\n", + " nom\n", + "trainSet$label F T\n", + " ham 0.8481960517 0.1518039483\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " nomad\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " nomed\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 1.000000000 0.000000000\n", + "\n", + " nominal\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " nominate\n", + "trainSet$label F T\n", + " ham 0.9874064 0.0125936\n", + " spam 0.9975000 0.0025000\n", + "\n", + " nominated\n", + "trainSet$label F T\n", + " ham 0.97889721 0.02110279\n", + " spam 0.99750000 0.00250000\n", + "\n", + " nominates\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 1.000000000 0.000000000\n", + "\n", + " nominating\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " nomination\n", + "trainSet$label F T\n", + " ham 0.9060585432 0.0939414568\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " nominations\n", + "trainSet$label F T\n", + " ham 0.96664398 0.03335602\n", + " spam 1.00000000 0.00000000\n", + "\n", + " nomlogic\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " nommensen\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 1.000000000 0.000000000\n", + "\n", + " nomore\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " noms\n", + "trainSet$label F T\n", + " ham 0.93601089 0.06398911\n", + " spam 1.00000000 0.00000000\n", + "\n", + " nomso\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " non\n", + "trainSet$label F T\n", + " ham 0.9863853 0.0136147\n", + " spam 0.9850000 0.0150000\n", + "\n", + " none\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.970000000 0.030000000\n", + "\n", + " noneedl\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " noon\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.997500000 0.002500000\n", + "\n", + " nopr\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " norma\n", + "trainSet$label F T\n", + " ham 0.9965963240 0.0034036760\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " normal\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.977500000 0.022500000\n", + "\n", + " normalizations\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " normally\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.994166667 0.005833333\n", + "\n", + " norman\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " nortel\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " nortelnetworks\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " north\n", + "trainSet$label F T\n", + " ham 0.92920354 0.07079646\n", + " spam 0.96916667 0.03083333\n", + "\n", + " northeast\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " northern\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " norton\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9858333333 0.0141666667\n", + "\n", + " nos\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " notation\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " note\n", + "trainSet$label F T\n", + " ham 0.94417971 0.05582029\n", + " spam 0.97333333 0.02666667\n", + "\n", + " notebook\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " notebookplus\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " notebooks\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " noted\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 0.998333333 0.001666667\n", + "\n", + " notes\n", + "trainSet$label F T\n", + " ham 0.98468346 0.01531654\n", + " spam 0.98416667 0.01583333\n", + "\n", + " nothanks\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " nothing\n", + "trainSet$label F T\n", + " ham 0.98978897 0.01021103\n", + " spam 0.96416667 0.03583333\n", + "\n", + " notice\n", + "trainSet$label F T\n", + " ham 0.98093941 0.01906059\n", + " spam 0.94333333 0.05666667\n", + "\n", + " noticed\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.995000000 0.005000000\n", + "\n", + " notices\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " notification\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.990833333 0.009166667\n", + "\n", + " notifications\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " notified\n", + "trainSet$label F T\n", + " ham 0.989448604 0.010551396\n", + " spam 0.998333333 0.001666667\n", + "\n", + " notify\n", + "trainSet$label F T\n", + " ham 0.985364193 0.014635807\n", + " spam 0.996666667 0.003333333\n", + "\n", + " noting\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " notwithstanding\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " nov\n", + "trainSet$label F T\n", + " ham 0.981960517 0.018039483\n", + " spam 0.995833333 0.004166667\n", + "\n", + " nova\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " novelty\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " november\n", + "trainSet$label F T\n", + " ham 0.956092580 0.043907420\n", + " spam 0.993333333 0.006666667\n", + "\n", + " now\n", + "trainSet$label F T\n", + " ham 0.91456773 0.08543227\n", + " spam 0.82166667 0.17833333\n", + "\n", + " nowadays\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " nowlan\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " npi\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " nrmm\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " nts\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " number\n", + "trainSet$label F T\n", + " ham 0.93124575 0.06875425\n", + " spam 0.93000000 0.07000000\n", + "\n", + " numbered\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " numbers\n", + "trainSet$label F T\n", + " ham 0.96153846 0.03846154\n", + " spam 0.97666667 0.02333333\n", + "\n", + " numerous\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99250000 0.00750000\n", + "\n", + " oak\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.997500000 0.002500000\n", + "\n", + " oaks\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " oasis\n", + "trainSet$label F T\n", + " ham 0.9884275017 0.0115724983\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " oba\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 1.000000000 0.000000000\n", + "\n", + " objections\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " objective\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.994166667 0.005833333\n", + "\n", + " objectives\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.975000000 0.025000000\n", + "\n", + " objects\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " obligation\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.996666667 0.003333333\n", + "\n", + " obligations\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " obscure\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " observations\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " obtain\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.990833333 0.009166667\n", + "\n", + " obtained\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.998333333 0.001666667\n", + "\n", + " obtaining\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " obvious\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " obviously\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " occasion\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " occidental\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " occur\n", + "trainSet$label F T\n", + " ham 0.99285228 0.00714772\n", + " spam 0.97500000 0.02500000\n", + "\n", + " occured\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " occuring\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " occurred\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.998333333 0.001666667\n", + "\n", + " occurs\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " ocean\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.996666667 0.003333333\n", + "\n", + " oceania\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " oct\n", + "trainSet$label F T\n", + " ham 0.98502383 0.01497617\n", + " spam 0.99750000 0.00250000\n", + "\n", + " octane\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " octanes\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " octo\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " october\n", + "trainSet$label F T\n", + " ham 0.94554118 0.05445882\n", + " spam 0.99500000 0.00500000\n", + "\n", + " odd\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.995000000 0.005000000\n", + "\n", + " odds\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " odin\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " oem\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98416667 0.01583333\n", + "\n", + " oeol\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " offer\n", + "trainSet$label F T\n", + " ham 0.98400272 0.01599728\n", + " spam 0.89833333 0.10166667\n", + "\n", + " offered\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.990833333 0.009166667\n", + "\n", + " offering\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.970833333 0.029166667\n", + "\n", + " offerings\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " offers\n", + "trainSet$label F T\n", + " ham 0.991150442 0.008849558\n", + " spam 0.931666667 0.068333333\n", + "\n", + " offfers\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " office\n", + "trainSet$label F T\n", + " ham 0.95881552 0.04118448\n", + " spam 0.92750000 0.07250000\n", + "\n", + " officer\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.977500000 0.022500000\n", + "\n", + " officers\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9908333333 0.0091666667\n", + "\n", + " offices\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.990833333 0.009166667\n", + "\n", + " official\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.982500000 0.017500000\n", + "\n", + " officially\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " officials\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " offset\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.996666667 0.003333333\n", + "\n", + " offsetting\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " offshore\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.988333333 0.011666667\n", + "\n", + " offsite\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " offsystem\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 1.000000000 0.000000000\n", + "\n", + " often\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.987500000 0.012500000\n", + "\n", + " ofthe\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " ogunbunmi\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " ohio\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " oil\n", + "trainSet$label F T\n", + " ham 0.97243022 0.02756978\n", + " spam 0.97583333 0.02416667\n", + "\n", + " okay\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.995000000 0.005000000\n", + "\n", + " oklahoma\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " old\n", + "trainSet$label F T\n", + " ham 0.97311096 0.02688904\n", + " spam 0.97500000 0.02500000\n", + "\n", + " older\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.995833333 0.004166667\n", + "\n", + " olinger\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " oliver\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.998333333 0.001666667\n", + "\n", + " olivier\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " olsen\n", + "trainSet$label F T\n", + " ham 0.98774677 0.01225323\n", + " spam 1.00000000 0.00000000\n", + "\n", + " olson\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " olvera\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " oma\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " omaha\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " omega\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " omit\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.985 0.015\n", + "\n", + " ondarza\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " one\n", + "trainSet$label F T\n", + " ham 0.8965283 0.1034717\n", + " spam 0.8200000 0.1800000\n", + "\n", + " ones\n", + "trainSet$label F T\n", + " ham 0.991490810 0.008509190\n", + " spam 0.994166667 0.005833333\n", + "\n", + " ong\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " ongoing\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.995000000 0.005000000\n", + "\n", + " oniine\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " oniy\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " onl\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " online\n", + "trainSet$label F T\n", + " ham 0.98468346 0.01531654\n", + " spam 0.87250000 0.12750000\n", + "\n", + " onlook\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " onshore\n", + "trainSet$label F T\n", + " ham 0.9976174268 0.0023825732\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " ont\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " ontario\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " onto\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.989166667 0.010833333\n", + "\n", + " ooking\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98416667 0.01583333\n", + "\n", + " ooo\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " open\n", + "trainSet$label F T\n", + " ham 0.98604493 0.01395507\n", + " spam 0.97250000 0.02750000\n", + "\n", + " opened\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.997500000 0.002500000\n", + "\n", + " opening\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.996666667 0.003333333\n", + "\n", + " opens\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.996666667 0.003333333\n", + "\n", + " operate\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99000000 0.01000000\n", + "\n", + " operated\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " operates\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.995000000 0.005000000\n", + "\n", + " operating\n", + "trainSet$label F T\n", + " ham 0.98332199 0.01667801\n", + " spam 0.98166667 0.01833333\n", + "\n", + " operation\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.985833333 0.014166667\n", + "\n", + " operational\n", + "trainSet$label F T\n", + " ham 0.991490810 0.008509190\n", + " spam 0.996666667 0.003333333\n", + "\n", + " operations\n", + "trainSet$label F T\n", + " ham 0.97787611 0.02212389\n", + " spam 0.98333333 0.01666667\n", + "\n", + " operator\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.997500000 0.002500000\n", + "\n", + " operators\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " opinion\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.976666667 0.023333333\n", + "\n", + " opinions\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98416667 0.01583333\n", + "\n", + " opm\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " oppenheimer\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " opportunities\n", + "trainSet$label F T\n", + " ham 0.991150442 0.008849558\n", + " spam 0.982500000 0.017500000\n", + "\n", + " opportunity\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 0.978333333 0.021666667\n", + "\n", + " opposed\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " opposite\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995833333 0.004166667\n", + "\n", + " oprah\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " ops\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " opt\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.988333333 0.011666667\n", + "\n", + " optical\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " optimal\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " optimization\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " optimum\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " optinrealbig\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " option\n", + "trainSet$label F T\n", + " ham 0.986725664 0.013274336\n", + " spam 0.994166667 0.005833333\n", + "\n", + " optional\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.998333333 0.001666667\n", + "\n", + " options\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 0.984166667 0.015833333\n", + "\n", + " opx\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " oral\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " orchard\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " order\n", + "trainSet$label F T\n", + " ham 0.96494214 0.03505786\n", + " spam 0.90833333 0.09166667\n", + "\n", + " ordered\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.991666667 0.008333333\n", + "\n", + " ordering\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.979166667 0.020833333\n", + "\n", + " orders\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.982500000 0.017500000\n", + "\n", + " ore\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " org\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.994166667 0.005833333\n", + "\n", + " organization\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.991666667 0.008333333\n", + "\n", + " organizational\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 1.000000000 0.000000000\n", + "\n", + " organizations\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.994166667 0.005833333\n", + "\n", + " organize\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " organized\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " orgasm\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " orgasms\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " oriented\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " orig\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 1.000000000 0.000000000\n", + "\n", + " origin\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " original\n", + "trainSet$label F T\n", + " ham 0.91967325 0.08032675\n", + " spam 0.96833333 0.03166667\n", + "\n", + " originally\n", + "trainSet$label F T\n", + " ham 0.9942137509 0.0057862491\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " origination\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 1.000000000 0.000000000\n", + "\n", + " orleans\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " ortho\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " ortiz\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " osborn\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " osborne\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " ose\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " oss\n", + "trainSet$label F T\n", + " ham 0.9972770592 0.0027229408\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " otc\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9883333333 0.0116666667\n", + "\n", + " otcbb\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98833333 0.01166667\n", + "\n", + " others\n", + "trainSet$label F T\n", + " ham 0.98672566 0.01327434\n", + " spam 0.98083333 0.01916667\n", + "\n", + " otherwise\n", + "trainSet$label F T\n", + " ham 0.9874064 0.0125936\n", + " spam 0.9975000 0.0025000\n", + "\n", + " otid\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ots\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " ounces\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " outage\n", + "trainSet$label F T\n", + " ham 0.9884275 0.0115725\n", + " spam 1.0000000 0.0000000\n", + "\n", + " outages\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " outcome\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " outlet\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " outlets\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " outline\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " outlined\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " outlook\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.997500000 0.002500000\n", + "\n", + " output\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " outside\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 0.994166667 0.005833333\n", + "\n", + " outsourcing\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " outstanding\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.980833333 0.019166667\n", + "\n", + " oval\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " overall\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.992500000 0.007500000\n", + "\n", + " overcome\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " overdeliver\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " overflow\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " overhead\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " overnight\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.976666667 0.023333333\n", + "\n", + " override\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " overseas\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9891666667 0.0108333333\n", + "\n", + " oversight\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " overview\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 1.000000000 0.000000000\n", + "\n", + " owa\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " owe\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 0.994166667 0.005833333\n", + "\n", + " owed\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " owes\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " owned\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.993333333 0.006666667\n", + "\n", + " owner\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 0.992500000 0.007500000\n", + "\n", + " owners\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.973333333 0.026666667\n", + "\n", + " ownership\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.990000000 0.010000000\n", + "\n", + " ownershp\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " owns\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.995000000 0.005000000\n", + "\n", + " oxy\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 1.000000000 0.000000000\n", + "\n", + " oxygen\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " pacific\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " pack\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.98583333 0.01416667\n", + "\n", + " package\n", + "trainSet$label F T\n", + " ham 0.990129340 0.009870660\n", + " spam 0.990833333 0.009166667\n", + "\n", + " packages\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " packaging\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98666667 0.01333333\n", + "\n", + " packard\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.97166667 0.02833333\n", + "\n", + " packed\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.994166667 0.005833333\n", + "\n", + " packet\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " pad\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " padre\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.998333333 0.001666667\n", + "\n", + " page\n", + "trainSet$label F T\n", + " ham 0.97617427 0.02382573\n", + " spam 0.98083333 0.01916667\n", + "\n", + " paged\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " pagemaker\n", + "trainSet$label F T\n", + " ham 1.00 0.00\n", + " spam 0.99 0.01\n", + "\n", + " pager\n", + "trainSet$label F T\n", + " ham 0.98808713 0.01191287\n", + " spam 1.00000000 0.00000000\n", + "\n", + " pages\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.996666667 0.003333333\n", + "\n", + " paid\n", + "trainSet$label F T\n", + " ham 0.97345133 0.02654867\n", + " spam 0.96333333 0.03666667\n", + "\n", + " pain\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9533333333 0.0466666667\n", + "\n", + " painewebber\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " paint\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " painter\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " painting\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " pair\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " pairs\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " palestinian\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " palestinians\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " paliourg\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.94333333 0.05666667\n", + "\n", + " palm\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " palmer\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 1.000000000 0.000000000\n", + "\n", + " pam\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " pamela\n", + "trainSet$label F T\n", + " ham 0.9976174268 0.0023825732\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " pamphlet\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " pan\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.998333333 0.001666667\n", + "\n", + " panel\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " panenergy\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 1.000000000 0.000000000\n", + "\n", + " panerai\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " panther\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " papayoti\n", + "trainSet$label F T\n", + " ham 0.98468346 0.01531654\n", + " spam 1.00000000 0.00000000\n", + "\n", + " paper\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.993333333 0.006666667\n", + "\n", + " papers\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9925000000 0.0075000000\n", + "\n", + " paperwork\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.996666667 0.003333333\n", + "\n", + " par\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " paradise\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " paragraph\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.970833333 0.029166667\n", + "\n", + " parallel\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " parent\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.997500000 0.002500000\n", + "\n", + " parents\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.994166667 0.005833333\n", + "\n", + " paris\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " park\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.996666667 0.003333333\n", + "\n", + " parked\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " parker\n", + "trainSet$label F T\n", + " ham 0.98127978 0.01872022\n", + " spam 0.99750000 0.00250000\n", + "\n", + " parking\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 1.000000000 0.000000000\n", + "\n", + " parks\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " parliament\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " parrot\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " part\n", + "trainSet$label F T\n", + " ham 0.97311096 0.02688904\n", + " spam 0.95083333 0.04916667\n", + "\n", + " partial\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " participant\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " participants\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.993333333 0.006666667\n", + "\n", + " participate\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.988333333 0.011666667\n", + "\n", + " participating\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " participation\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.993333333 0.006666667\n", + "\n", + " particular\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.993333333 0.006666667\n", + "\n", + " particularly\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " partid\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " parties\n", + "trainSet$label F T\n", + " ham 0.989788972 0.010211028\n", + " spam 0.993333333 0.006666667\n", + "\n", + " partner\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.976666667 0.023333333\n", + "\n", + " partners\n", + "trainSet$label F T\n", + " ham 0.98876787 0.01123213\n", + " spam 0.98166667 0.01833333\n", + "\n", + " partnership\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.994166667 0.005833333\n", + "\n", + " parts\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " party\n", + "trainSet$label F T\n", + " ham 0.98127978 0.01872022\n", + " spam 0.95666667 0.04333333\n", + "\n", + " pas\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " pasadena\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " paso\n", + "trainSet$label F T\n", + " ham 0.98400272 0.01599728\n", + " spam 1.00000000 0.00000000\n", + "\n", + " pass\n", + "trainSet$label F T\n", + " ham 0.98536419 0.01463581\n", + " spam 0.99000000 0.01000000\n", + "\n", + " passed\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.966666667 0.033333333\n", + "\n", + " passenger\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " passion\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " passionate\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " passport\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9891666667 0.0108333333\n", + "\n", + " password\n", + "trainSet$label F T\n", + " ham 0.989788972 0.010211028\n", + " spam 0.993333333 0.006666667\n", + "\n", + " passwords\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " past\n", + "trainSet$label F T\n", + " ham 0.98434309 0.01565691\n", + " spam 0.95666667 0.04333333\n", + "\n", + " paste\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.952500000 0.047500000\n", + "\n", + " pat\n", + "trainSet$label F T\n", + " ham 0.93328795 0.06671205\n", + " spam 1.00000000 0.00000000\n", + "\n", + " patch\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9916666667 0.0083333333\n", + "\n", + " patches\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " patek\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " patent\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " patented\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " path\n", + "trainSet$label F T\n", + " ham 0.97515317 0.02484683\n", + " spam 1.00000000 0.00000000\n", + "\n", + " pathed\n", + "trainSet$label F T\n", + " ham 0.98434309 0.01565691\n", + " spam 1.00000000 0.00000000\n", + "\n", + " pathing\n", + "trainSet$label F T\n", + " ham 0.990810075 0.009189925\n", + " spam 1.000000000 0.000000000\n", + "\n", + " pathogen\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " paths\n", + "trainSet$label F T\n", + " ham 0.9952348536 0.0047651464\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " patience\n", + "trainSet$label F T\n", + " ham 0.9945541184 0.0054458816\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " patient\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " patients\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " patricia\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " patrick\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " patsy\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " pattern\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " patti\n", + "trainSet$label F T\n", + " ham 0.99012934 0.00987066\n", + " spam 1.00000000 0.00000000\n", + "\n", + " pattison\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " patton\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " paul\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 0.996666667 0.003333333\n", + "\n", + " paula\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " paulus\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " paxil\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98916667 0.01083333\n", + "\n", + " pay\n", + "trainSet$label F T\n", + " ham 0.97072839 0.02927161\n", + " spam 0.94916667 0.05083333\n", + "\n", + " payable\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " payback\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 1.000000000 0.000000000\n", + "\n", + " paycheck\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " paying\n", + "trainSet$label F T\n", + " ham 0.98978897 0.01021103\n", + " spam 0.98833333 0.01166667\n", + "\n", + " payment\n", + "trainSet$label F T\n", + " ham 0.98298162 0.01701838\n", + " spam 0.97666667 0.02333333\n", + "\n", + " payments\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.990000000 0.010000000\n", + "\n", + " payne\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.998333333 0.001666667\n", + "\n", + " payout\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " paypal\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " payroll\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 1.000000000 0.000000000\n", + "\n", + " pays\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " paz\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " pbx\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " pci\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " pcmcia\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " pcs\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " pcx\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " pdf\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " pdn\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " pdx\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " peace\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " peak\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " pearce\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " pearl\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " pec\n", + "trainSet$label F T\n", + " ham 0.990810075 0.009189925\n", + " spam 1.000000000 0.000000000\n", + "\n", + " pecos\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " peek\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " peer\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " pefs\n", + "trainSet$label F T\n", + " ham 0.991150442 0.008849558\n", + " spam 1.000000000 0.000000000\n", + "\n", + " peggy\n", + "trainSet$label F T\n", + " ham 0.9942137509 0.0057862491\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " pekisko\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " pen\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " pena\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 1.000000000 0.000000000\n", + "\n", + " penalty\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " pending\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.994166667 0.005833333\n", + "\n", + " penetrate\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " penetration\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " penis\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9758333333 0.0241666667\n", + "\n", + " penls\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " pennsylvania\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " penny\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9825000000 0.0175000000\n", + "\n", + " pennzenergy\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " pennzoil\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " pentagon\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " people\n", + "trainSet$label F T\n", + " ham 0.96936692 0.03063308\n", + " spam 0.93500000 0.06500000\n", + "\n", + " peoples\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " pep\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " per\n", + "trainSet$label F T\n", + " ham 0.92205582 0.07794418\n", + " spam 0.94666667 0.05333333\n", + "\n", + " perceived\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " percent\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.985833333 0.014166667\n", + "\n", + " percentage\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.995833333 0.004166667\n", + "\n", + " percentages\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " perez\n", + "trainSet$label F T\n", + " ham 0.9955752212 0.0044247788\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " perfect\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.965833333 0.034166667\n", + "\n", + " perfected\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " perfectly\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " perfmgmt\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " perforate\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " perform\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.996666667 0.003333333\n", + "\n", + " performance\n", + "trainSet$label F T\n", + " ham 0.98774677 0.01225323\n", + " spam 0.95333333 0.04666667\n", + "\n", + " performances\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " performed\n", + "trainSet$label F T\n", + " ham 0.9976174268 0.0023825732\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " performing\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.993333333 0.006666667\n", + "\n", + " perhaps\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.996666667 0.003333333\n", + "\n", + " period\n", + "trainSet$label F T\n", + " ham 0.960176991 0.039823009\n", + " spam 0.993333333 0.006666667\n", + "\n", + " periods\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 1.000000000 0.000000000\n", + "\n", + " perkins\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 1.000000000 0.000000000\n", + "\n", + " perlman\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " permanent\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.991666667 0.008333333\n", + "\n", + " permanently\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " permissible\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " permission\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " permit\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " permits\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " permitted\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " permitting\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " perry\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " perscriptions\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " persistent\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " person\n", + "trainSet$label F T\n", + " ham 0.97208986 0.02791014\n", + " spam 0.98416667 0.01583333\n", + "\n", + " persona\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " personal\n", + "trainSet$label F T\n", + " ham 0.98842750 0.01157250\n", + " spam 0.97666667 0.02333333\n", + "\n", + " personalized\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " personally\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " personnel\n", + "trainSet$label F T\n", + " ham 0.99285228 0.00714772\n", + " spam 0.99750000 0.00250000\n", + "\n", + " persons\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.996666667 0.003333333\n", + "\n", + " perspective\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " pertain\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " pertaining\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.974166667 0.025833333\n", + "\n", + " pertinent\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " peruse\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " perverse\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " pet\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " pete\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " peter\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.997500000 0.002500000\n", + "\n", + " petition\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " petr\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " petro\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " petrochemical\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " petroieum\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " petrol\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " petroleum\n", + "trainSet$label F T\n", + " ham 0.991150442 0.008849558\n", + " spam 0.994166667 0.005833333\n", + "\n", + " peyton\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " pfizer\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " pfont\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " pge\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " pgev\n", + "trainSet$label F T\n", + " ham 0.99149081 0.00850919\n", + " spam 1.00000000 0.00000000\n", + "\n", + " pgp\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " pgpu\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " pgtt\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " pha\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " pham\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " pharmaceutical\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " pharmacies\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " pharmacy\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.96833333 0.03166667\n", + "\n", + " phase\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " phd\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " phenomenal\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " phentermine\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.985 0.015\n", + "\n", + " phil\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " philadelphia\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " philip\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " philippe\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.998333333 0.001666667\n", + "\n", + " phillip\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 1.000000000 0.000000000\n", + "\n", + " phillips\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 0.998333333 0.001666667\n", + "\n", + " phoenix\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " phone\n", + "trainSet$label F T\n", + " ham 0.96358067 0.03641933\n", + " spam 0.93750000 0.06250000\n", + "\n", + " phoned\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " phones\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.995833333 0.004166667\n", + "\n", + " photo\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.988333333 0.011666667\n", + "\n", + " photos\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.988333333 0.011666667\n", + "\n", + " photoshop\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9675 0.0325\n", + "\n", + " php\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.94416667 0.05583333\n", + "\n", + " phrase\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " phys\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " physical\n", + "trainSet$label F T\n", + " ham 0.98400272 0.01599728\n", + " spam 0.99250000 0.00750000\n", + "\n", + " physician\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " physicians\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " piaced\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.990833333 0.009166667\n", + "\n", + " piaget\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " pians\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.990833333 0.009166667\n", + "\n", + " piay\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " pic\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " pick\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 0.984166667 0.015833333\n", + "\n", + " picked\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " picks\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " picl\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " pico\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " pics\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.991666667 0.008333333\n", + "\n", + " picture\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.986666667 0.013333333\n", + "\n", + " pictures\n", + "trainSet$label F T\n", + " ham 0.992852280 0.007147720\n", + " spam 0.990833333 0.009166667\n", + "\n", + " piease\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98666667 0.01333333\n", + "\n", + " piece\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.995000000 0.005000000\n", + "\n", + " pierce\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " pigged\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " pigging\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " piils\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " pil\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " pilewort\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " pilis\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " pill\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.96833333 0.03166667\n", + "\n", + " pills\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.96416667 0.03583333\n", + "\n", + " pilot\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.998333333 0.001666667\n", + "\n", + " pin\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " pine\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 1.000000000 0.000000000\n", + "\n", + " pinion\n", + "trainSet$label F T\n", + " ham 0.99285228 0.00714772\n", + " spam 1.00000000 0.00000000\n", + "\n", + " pink\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9916666667 0.0083333333\n", + "\n", + " pinnacle\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " pioneer\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " pipe\n", + "trainSet$label F T\n", + " ham 0.976174268 0.023825732\n", + " spam 0.998333333 0.001666667\n", + "\n", + " pipeline\n", + "trainSet$label F T\n", + " ham 0.9506467 0.0493533\n", + " spam 0.9975000 0.0025000\n", + "\n", + " pipelines\n", + "trainSet$label F T\n", + " ham 0.99149081 0.00850919\n", + " spam 1.00000000 0.00000000\n", + "\n", + " piper\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " pipes\n", + "trainSet$label F T\n", + " ham 0.98808713 0.01191287\n", + " spam 1.00000000 0.00000000\n", + "\n", + " piping\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " piracy\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " pisd\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " pit\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " pitre\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " place\n", + "trainSet$label F T\n", + " ham 0.96085773 0.03914227\n", + " spam 0.95000000 0.05000000\n", + "\n", + " placed\n", + "trainSet$label F T\n", + " ham 0.98978897 0.01021103\n", + " spam 0.98750000 0.01250000\n", + "\n", + " places\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.991666667 0.008333333\n", + "\n", + " placing\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " plain\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.962500000 0.037500000\n", + "\n", + " plains\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " plan\n", + "trainSet$label F T\n", + " ham 0.971409122 0.028590878\n", + " spam 0.990833333 0.009166667\n", + "\n", + " plane\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " planet\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " planned\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.998333333 0.001666667\n", + "\n", + " planning\n", + "trainSet$label F T\n", + " ham 0.986725664 0.013274336\n", + " spam 0.993333333 0.006666667\n", + "\n", + " plano\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " plans\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 0.972500000 0.027500000\n", + "\n", + " plant\n", + "trainSet$label F T\n", + " ham 0.9380531 0.0619469\n", + " spam 0.9925000 0.0075000\n", + "\n", + " plants\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 1.000000000 0.000000000\n", + "\n", + " plastic\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " platelet\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " platform\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.995000000 0.005000000\n", + "\n", + " platforms\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " platinum\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " plaxo\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " play\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.979166667 0.020833333\n", + "\n", + " played\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.997500000 0.002500000\n", + "\n", + " player\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.991666667 0.008333333\n", + "\n", + " players\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.995000000 0.005000000\n", + "\n", + " playing\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.994166667 0.005833333\n", + "\n", + " playoff\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " plays\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " plc\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " pleasant\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " please\n", + "trainSet$label F T\n", + " ham 0.562968 0.437032\n", + " spam 0.795000 0.205000\n", + "\n", + " pleased\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.985833333 0.014166667\n", + "\n", + " pleasure\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.98583333 0.01416667\n", + "\n", + " plenty\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.991666667 0.008333333\n", + "\n", + " pleo\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " pleus\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 1.000000000 0.000000000\n", + "\n", + " plll\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " pllls\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " pls\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 1.000000000 0.000000000\n", + "\n", + " plug\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.993333333 0.006666667\n", + "\n", + " pluperfect\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " plus\n", + "trainSet$label F T\n", + " ham 0.98774677 0.01225323\n", + " spam 0.96666667 0.03333333\n", + "\n", + " plz\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " pma\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " pmas\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " pmedbadbu\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " pnbsp\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " pocket\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " pockets\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " poellinger\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " poem\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " point\n", + "trainSet$label F T\n", + " ham 0.94894486 0.05105514\n", + " spam 0.98083333 0.01916667\n", + "\n", + " points\n", + "trainSet$label F T\n", + " ham 0.98434309 0.01565691\n", + " spam 0.99750000 0.00250000\n", + "\n", + " poised\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.990833333 0.009166667\n", + "\n", + " polemic\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " policies\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.996666667 0.003333333\n", + "\n", + " policy\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.993333333 0.006666667\n", + "\n", + " political\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.993333333 0.006666667\n", + "\n", + " politician\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " politicians\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " polk\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " polymerase\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " polymers\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " pompeu\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " pond\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ponderosa\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ponton\n", + "trainSet$label F T\n", + " ham 0.98298162 0.01701838\n", + " spam 1.00000000 0.00000000\n", + "\n", + " pool\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.997500000 0.002500000\n", + "\n", + " pooling\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " pools\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 1.000000000 0.000000000\n", + "\n", + " poor\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.993333333 0.006666667\n", + "\n", + " poorman\n", + "trainSet$label F T\n", + " ham 0.98366236 0.01633764\n", + " spam 1.00000000 0.00000000\n", + "\n", + " pop\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.992500000 0.007500000\n", + "\n", + " pope\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " pops\n", + "trainSet$label F T\n", + " ham 0.96936692 0.03063308\n", + " spam 1.00000000 0.00000000\n", + "\n", + " popular\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9716666667 0.0283333333\n", + "\n", + " populate\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " porn\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98583333 0.01416667\n", + "\n", + " port\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.992500000 0.007500000\n", + "\n", + " portable\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " portal\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " porter\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " portfolio\n", + "trainSet$label F T\n", + " ham 0.97549353 0.02450647\n", + " spam 0.98583333 0.01416667\n", + "\n", + " portfolios\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " portion\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.995833333 0.004166667\n", + "\n", + " portland\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ports\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " portsmouth\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " portugal\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " pose\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " position\n", + "trainSet$label F T\n", + " ham 0.98298162 0.01701838\n", + " spam 0.97500000 0.02500000\n", + "\n", + " positioned\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9908333333 0.0091666667\n", + "\n", + " positioning\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " positions\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.991666667 0.008333333\n", + "\n", + " positive\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.981666667 0.018333333\n", + "\n", + " possession\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.995833333 0.004166667\n", + "\n", + " possibe\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " possibilities\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " possibility\n", + "trainSet$label F T\n", + " ham 0.9945541184 0.0054458816\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " possible\n", + "trainSet$label F T\n", + " ham 0.95915589 0.04084411\n", + " spam 0.96416667 0.03583333\n", + "\n", + " possibly\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.998333333 0.001666667\n", + "\n", + " post\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.988333333 0.011666667\n", + "\n", + " postal\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.995000000 0.005000000\n", + "\n", + " posted\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 1.000000000 0.000000000\n", + "\n", + " posting\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " postpaid\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " potent\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " potentia\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.990833333 0.009166667\n", + "\n", + " potential\n", + "trainSet$label F T\n", + " ham 0.98944860 0.01055140\n", + " spam 0.97416667 0.02583333\n", + "\n", + " potentially\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " pound\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " pounds\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " pour\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " pouvez\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " powder\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.997500000 0.002500000\n", + "\n", + " powell\n", + "trainSet$label F T\n", + " ham 0.9962559564 0.0037440436\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " power\n", + "trainSet$label F T\n", + " ham 0.98502383 0.01497617\n", + " spam 0.96583333 0.03416667\n", + "\n", + " powered\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " powerful\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9808333333 0.0191666667\n", + "\n", + " powerline\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " powerpoint\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " powerquest\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " powers\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " ppa\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ppin\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " ppt\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " practical\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " practice\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.991666667 0.008333333\n", + "\n", + " practices\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995833333 0.004166667\n", + "\n", + " praise\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " praxair\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " pray\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " prayed\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " prayer\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " prayers\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " praying\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " prc\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.997500000 0.002500000\n", + "\n", + " pre\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.985833333 0.014166667\n", + "\n", + " precaution\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " precautionary\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " preceding\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " precious\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " precise\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " predecessor\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " predictions\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.97666667 0.02333333\n", + "\n", + " prefer\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.991666667 0.008333333\n", + "\n", + " preference\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.995833333 0.004166667\n", + "\n", + " preferences\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " preferred\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.995833333 0.004166667\n", + "\n", + " prefix\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " prelim\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " preliminary\n", + "trainSet$label F T\n", + " ham 0.991150442 0.008849558\n", + " spam 1.000000000 0.000000000\n", + "\n", + " premature\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " premier\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " premiere\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9850000000 0.0150000000\n", + "\n", + " premium\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.983333333 0.016666667\n", + "\n", + " prentice\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " preparation\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.987500000 0.012500000\n", + "\n", + " prepare\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 0.997500000 0.002500000\n", + "\n", + " prepared\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.998333333 0.001666667\n", + "\n", + " preparing\n", + "trainSet$label F T\n", + " ham 0.9965963240 0.0034036760\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " presc\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " prescription\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9358333333 0.0641666667\n", + "\n", + " prescriptions\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.985 0.015\n", + "\n", + " prescrlption\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " presence\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.990000000 0.010000000\n", + "\n", + " present\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 0.990000000 0.010000000\n", + "\n", + " presentation\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " presentations\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.997500000 0.002500000\n", + "\n", + " presented\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.998333333 0.001666667\n", + "\n", + " presentiy\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " presently\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.975000000 0.025000000\n", + "\n", + " presents\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " preserve\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " president\n", + "trainSet$label F T\n", + " ham 0.990810075 0.009189925\n", + " spam 0.983333333 0.016666667\n", + "\n", + " press\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.960833333 0.039166667\n", + "\n", + " pressure\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.994166667 0.005833333\n", + "\n", + " prestigious\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " presume\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " pretty\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.992500000 0.007500000\n", + "\n", + " prev\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " prevent\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.995833333 0.004166667\n", + "\n", + " prevented\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " preventing\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " prevention\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " previous\n", + "trainSet$label F T\n", + " ham 0.990810075 0.009189925\n", + " spam 0.993333333 0.006666667\n", + "\n", + " previously\n", + "trainSet$label F T\n", + " ham 0.985364193 0.014635807\n", + " spam 0.995833333 0.004166667\n", + "\n", + " pri\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " price\n", + "trainSet$label F T\n", + " ham 0.897209 0.102791\n", + " spam 0.895000 0.105000\n", + "\n", + " priced\n", + "trainSet$label F T\n", + " ham 0.981960517 0.018039483\n", + " spam 0.994166667 0.005833333\n", + "\n", + " prices\n", + "trainSet$label F T\n", + " ham 0.98672566 0.01327434\n", + " spam 0.89583333 0.10416667\n", + "\n", + " pricess\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " pricing\n", + "trainSet$label F T\n", + " ham 0.97038802 0.02961198\n", + " spam 0.99500000 0.00500000\n", + "\n", + " prick\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " pride\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " priice\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " primarily\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99500000 0.00500000\n", + "\n", + " primary\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 0.992500000 0.007500000\n", + "\n", + " prime\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9900000000 0.0100000000\n", + "\n", + " primezone\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " principal\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.995833333 0.004166667\n", + "\n", + " principle\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " print\n", + "trainSet$label F T\n", + " ham 0.981279782 0.018720218\n", + " spam 0.995833333 0.004166667\n", + "\n", + " printable\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " printed\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " printer\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " printing\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " prior\n", + "trainSet$label F T\n", + " ham 0.96800545 0.03199455\n", + " spam 0.95416667 0.04583333\n", + "\n", + " prioritize\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " priority\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.990833333 0.009166667\n", + "\n", + " privacy\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.981666667 0.018333333\n", + "\n", + " private\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.944166667 0.055833333\n", + "\n", + " privileged\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.997500000 0.002500000\n", + "\n", + " prize\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.990833333 0.009166667\n", + "\n", + " prizes\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " prlces\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " prnewswire\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " pro\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9741666667 0.0258333333\n", + "\n", + " probably\n", + "trainSet$label F T\n", + " ham 0.977535739 0.022464261\n", + " spam 0.994166667 0.005833333\n", + "\n", + " problem\n", + "trainSet$label F T\n", + " ham 0.97004765 0.02995235\n", + " spam 0.97666667 0.02333333\n", + "\n", + " problems\n", + "trainSet$label F T\n", + " ham 0.96936692 0.03063308\n", + " spam 0.97833333 0.02166667\n", + "\n", + " probusiness\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " procedure\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " procedures\n", + "trainSet$label F T\n", + " ham 0.9945541184 0.0054458816\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " proceed\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.998333333 0.001666667\n", + "\n", + " proceeding\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " proceeds\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " process\n", + "trainSet$label F T\n", + " ham 0.96221920 0.03778080\n", + " spam 0.96833333 0.03166667\n", + "\n", + " processed\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.991666667 0.008333333\n", + "\n", + " processes\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.998333333 0.001666667\n", + "\n", + " processing\n", + "trainSet$label F T\n", + " ham 0.98978897 0.01021103\n", + " spam 0.98833333 0.01166667\n", + "\n", + " processor\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " prod\n", + "trainSet$label F T\n", + " ham 0.9887678693 0.0112321307\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " prodigy\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " produce\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9891666667 0.0108333333\n", + "\n", + " produced\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.992500000 0.007500000\n", + "\n", + " producer\n", + "trainSet$label F T\n", + " ham 0.975833901 0.024166099\n", + " spam 0.995833333 0.004166667\n", + "\n", + " producers\n", + "trainSet$label F T\n", + " ham 0.991490810 0.008509190\n", + " spam 0.998333333 0.001666667\n", + "\n", + " produces\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " producing\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.989166667 0.010833333\n", + "\n", + " product\n", + "trainSet$label F T\n", + " ham 0.98842750 0.01157250\n", + " spam 0.92166667 0.07833333\n", + "\n", + " production\n", + "trainSet$label F T\n", + " ham 0.91150442 0.08849558\n", + " spam 0.98166667 0.01833333\n", + "\n", + " productive\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " products\n", + "trainSet$label F T\n", + " ham 0.98672566 0.01327434\n", + " spam 0.91083333 0.08916667\n", + "\n", + " professiona\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " professional\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.939166667 0.060833333\n", + "\n", + " professionals\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " professor\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " profiie\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " profile\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.975000000 0.025000000\n", + "\n", + " profiled\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " profiles\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.989166667 0.010833333\n", + "\n", + " profit\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.983333333 0.016666667\n", + "\n", + " profitability\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " profitable\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.990000000 0.010000000\n", + "\n", + " profits\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.991666667 0.008333333\n", + "\n", + " profound\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " program\n", + "trainSet$label F T\n", + " ham 0.98740640 0.01259360\n", + " spam 0.97333333 0.02666667\n", + "\n", + " programming\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " programs\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.984166667 0.015833333\n", + "\n", + " progress\n", + "trainSet$label F T\n", + " ham 0.9945541184 0.0054458816\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " prohibited\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.997500000 0.002500000\n", + "\n", + " project\n", + "trainSet$label F T\n", + " ham 0.98127978 0.01872022\n", + " spam 0.97583333 0.02416667\n", + "\n", + " projected\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " projecting\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " projection\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " projections\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9775 0.0225\n", + "\n", + " projects\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.970833333 0.029166667\n", + "\n", + " proletariat\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " prolific\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " prom\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " promethe\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " prominent\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " promise\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " promised\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " promises\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " promo\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " promoted\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " promoters\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " promoting\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " promotion\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.995833333 0.004166667\n", + "\n", + " promotional\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " promotions\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 0.992500000 0.007500000\n", + "\n", + " prompt\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.997500000 0.002500000\n", + "\n", + " prompted\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " promptly\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " prop\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " propecia\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.991666667 0.008333333\n", + "\n", + " propel\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " proper\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.990833333 0.009166667\n", + "\n", + " properly\n", + "trainSet$label F T\n", + " ham 0.9931926481 0.0068073519\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " properties\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.989166667 0.010833333\n", + "\n", + " property\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.960833333 0.039166667\n", + "\n", + " proportions\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " proposal\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.992500000 0.007500000\n", + "\n", + " proposals\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " propose\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " proposed\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.995833333 0.004166667\n", + "\n", + " proposition\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " proprietary\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.98500000 0.01500000\n", + "\n", + " prorate\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " prorating\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " prosaic\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " prospect\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " prospective\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " prospects\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9916666667 0.0083333333\n", + "\n", + " prospectus\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " protect\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.990000000 0.010000000\n", + "\n", + " protected\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.996666667 0.003333333\n", + "\n", + " protection\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.987500000 0.012500000\n", + "\n", + " protects\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " protest\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " protocol\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9850000000 0.0150000000\n", + "\n", + " proud\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " prov\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " prove\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.98666667 0.01333333\n", + "\n", + " proved\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " proven\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9791666667 0.0208333333\n", + "\n", + " provide\n", + "trainSet$label F T\n", + " ham 0.96289993 0.03710007\n", + " spam 0.96166667 0.03833333\n", + "\n", + " provided\n", + "trainSet$label F T\n", + " ham 0.98400272 0.01599728\n", + " spam 0.96166667 0.03833333\n", + "\n", + " provider\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.990833333 0.009166667\n", + "\n", + " providers\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.989166667 0.010833333\n", + "\n", + " provides\n", + "trainSet$label F T\n", + " ham 0.98944860 0.01055140\n", + " spam 0.97833333 0.02166667\n", + "\n", + " providing\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.985000000 0.015000000\n", + "\n", + " province\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " provision\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " provisions\n", + "trainSet$label F T\n", + " ham 0.9969366916 0.0030633084\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " proxy\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " prozac\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98166667 0.01833333\n", + "\n", + " psa\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " psalm\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " psalms\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " psig\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " pubiic\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " pubiication\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " pubiisher\n", + "trainSet$label F T\n", + " ham 1.00 0.00\n", + " spam 0.99 0.01\n", + "\n", + " public\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 0.966666667 0.033333333\n", + "\n", + " publication\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.96916667 0.03083333\n", + "\n", + " publications\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " publicly\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " publish\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " published\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.990833333 0.009166667\n", + "\n", + " publisher\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9791666667 0.0208333333\n", + "\n", + " publishing\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " pull\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.992500000 0.007500000\n", + "\n", + " pulled\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 0.998333333 0.001666667\n", + "\n", + " pulling\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 1.000000000 0.000000000\n", + "\n", + " pulp\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " pumper\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " purch\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " purchase\n", + "trainSet$label F T\n", + " ham 0.92886317 0.07113683\n", + " spam 0.96916667 0.03083333\n", + "\n", + " purchased\n", + "trainSet$label F T\n", + " ham 0.981620150 0.018379850\n", + " spam 0.994166667 0.005833333\n", + "\n", + " purchaser\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " purchases\n", + "trainSet$label F T\n", + " ham 0.98400272 0.01599728\n", + " spam 0.99750000 0.00250000\n", + "\n", + " purchasing\n", + "trainSet$label F T\n", + " ham 0.988087134 0.011912866\n", + " spam 0.994166667 0.005833333\n", + "\n", + " pure\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.996666667 0.003333333\n", + "\n", + " purge\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " purpa\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " purpose\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.988333333 0.011666667\n", + "\n", + " purposes\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.984166667 0.015833333\n", + "\n", + " pursuant\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.997500000 0.002500000\n", + "\n", + " pursue\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " push\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.994166667 0.005833333\n", + "\n", + " pussy\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " put\n", + "trainSet$label F T\n", + " ham 0.95473111 0.04526889\n", + " spam 0.97916667 0.02083333\n", + "\n", + " puts\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " putting\n", + "trainSet$label F T\n", + " ham 0.99285228 0.00714772\n", + " spam 0.99750000 0.00250000\n", + "\n", + " pvr\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 1.000000000 0.000000000\n", + "\n", + " pymt\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " qel\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " qtr\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " qty\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " quadrant\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " qualification\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " qualified\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9908333333 0.0091666667\n", + "\n", + " qualify\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9900000000 0.0100000000\n", + "\n", + " qualifying\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " quality\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 0.930000000 0.070000000\n", + "\n", + " quantities\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.986666667 0.013333333\n", + "\n", + " quantity\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.998333333 0.001666667\n", + "\n", + " quark\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.991666667 0.008333333\n", + "\n", + " quarter\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.980000000 0.020000000\n", + "\n", + " quarterly\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " quasar\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " que\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " queen\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " question\n", + "trainSet$label F T\n", + " ham 0.975153165 0.024846835\n", + " spam 0.993333333 0.006666667\n", + "\n", + " questioning\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " questionnaire\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " questions\n", + "trainSet$label F T\n", + " ham 0.8287951 0.1712049\n", + " spam 0.9850000 0.0150000\n", + "\n", + " queue\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " qui\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " quick\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 0.963333333 0.036666667\n", + "\n", + " quickenloans\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " quicker\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.993333333 0.006666667\n", + "\n", + " quickly\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.978333333 0.021666667\n", + "\n", + " quiet\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " quigley\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " quinn\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " quirt\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " quit\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.990833333 0.009166667\n", + "\n", + " quite\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.986666667 0.013333333\n", + "\n", + " quo\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " quot\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " quote\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.986666667 0.013333333\n", + "\n", + " quoted\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.995833333 0.004166667\n", + "\n", + " quotes\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.995833333 0.004166667\n", + "\n", + " raanan\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " rabbit\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " rac\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " race\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " rachel\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " radar\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9916666667 0.0083333333\n", + "\n", + " radiant\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " radical\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " radio\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.993333333 0.006666667\n", + "\n", + " radioshack\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " rado\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " rafah\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " rail\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " railroad\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " rain\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9925000000 0.0075000000\n", + "\n", + " rainbow\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.990833333 0.009166667\n", + "\n", + " raise\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.986666667 0.013333333\n", + "\n", + " raised\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.995833333 0.004166667\n", + "\n", + " raleigh\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " rally\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " ram\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.990833333 0.009166667\n", + "\n", + " ramesh\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ran\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " ranch\n", + "trainSet$label F T\n", + " ham 0.9778761062 0.0221238938\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " randall\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 1.000000000 0.000000000\n", + "\n", + " random\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " randy\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " range\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.980833333 0.019166667\n", + "\n", + " rangel\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ranger\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 1.000000000 0.000000000\n", + "\n", + " rank\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " ranked\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " ranking\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.998333333 0.001666667\n", + "\n", + " rankings\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ranks\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " rao\n", + "trainSet$label F T\n", + " ham 0.9976174268 0.0023825732\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " rapid\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.993333333 0.006666667\n", + "\n", + " rapidly\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " rare\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " rascal\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " rat\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " rate\n", + "trainSet$label F T\n", + " ham 0.96868618 0.03131382\n", + " spam 0.96916667 0.03083333\n", + "\n", + " rates\n", + "trainSet$label F T\n", + " ham 0.98366236 0.01633764\n", + " spam 0.97250000 0.02750000\n", + "\n", + " rather\n", + "trainSet$label F T\n", + " ham 0.989788972 0.010211028\n", + " spam 0.990833333 0.009166667\n", + "\n", + " ratification\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " rating\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9925000000 0.0075000000\n", + "\n", + " ratnala\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " raw\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " ray\n", + "trainSet$label F T\n", + " ham 0.9880871341 0.0119128659\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " raymond\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " rcotten\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " rcs\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " rea\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " reach\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.982500000 0.017500000\n", + "\n", + " reached\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.993333333 0.006666667\n", + "\n", + " reaches\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " read\n", + "trainSet$label F T\n", + " ham 0.97957794 0.02042206\n", + " spam 0.95750000 0.04250000\n", + "\n", + " reader\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " readers\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.96833333 0.03166667\n", + "\n", + " reading\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.994166667 0.005833333\n", + "\n", + " reads\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ready\n", + "trainSet$label F T\n", + " ham 0.98298162 0.01701838\n", + " spam 0.97750000 0.02250000\n", + "\n", + " reaily\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " real\n", + "trainSet$label F T\n", + " ham 0.98978897 0.01021103\n", + " spam 0.94500000 0.05500000\n", + "\n", + " realistic\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " reality\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " realize\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 0.995833333 0.004166667\n", + "\n", + " realized\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " reallocate\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 1.000000000 0.000000000\n", + "\n", + " reallocated\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 1.000000000 0.000000000\n", + "\n", + " reallocates\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " reallocation\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " really\n", + "trainSet$label F T\n", + " ham 0.98400272 0.01599728\n", + " spam 0.97583333 0.02416667\n", + "\n", + " rear\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " reas\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " reason\n", + "trainSet$label F T\n", + " ham 0.98502383 0.01497617\n", + " spam 0.96083333 0.03916667\n", + "\n", + " reasonable\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " reasons\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.986666667 0.013333333\n", + "\n", + " rebecca\n", + "trainSet$label F T\n", + " ham 0.9894486045 0.0105513955\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " rebekah\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " rec\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " recall\n", + "trainSet$label F T\n", + " ham 0.9969366916 0.0030633084\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " recalls\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " recap\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " receipt\n", + "trainSet$label F T\n", + " ham 0.98434309 0.01565691\n", + " spam 0.98083333 0.01916667\n", + "\n", + " receipts\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " receivable\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " receivables\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " receive\n", + "trainSet$label F T\n", + " ham 0.96119809 0.03880191\n", + " spam 0.92916667 0.07083333\n", + "\n", + " received\n", + "trainSet$label F T\n", + " ham 0.94758339 0.05241661\n", + " spam 0.97583333 0.02416667\n", + "\n", + " receives\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.995833333 0.004166667\n", + "\n", + " receiving\n", + "trainSet$label F T\n", + " ham 0.98978897 0.01021103\n", + " spam 0.98250000 0.01750000\n", + "\n", + " recent\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.973333333 0.026666667\n", + "\n", + " recently\n", + "trainSet$label F T\n", + " ham 0.991150442 0.008849558\n", + " spam 0.986666667 0.013333333\n", + "\n", + " receptive\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " recharge\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " recharger\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " recherche\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " reciept\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " recieve\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " recipient\n", + "trainSet$label F T\n", + " ham 0.99285228 0.00714772\n", + " spam 1.00000000 0.00000000\n", + "\n", + " reck\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " reclamation\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " recognition\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " recognize\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " recognized\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " recommend\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.995000000 0.005000000\n", + "\n", + " recommendation\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " recommendations\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " recommended\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.990833333 0.009166667\n", + "\n", + " recommends\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " reconcile\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " reconciled\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " reconciliation\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " record\n", + "trainSet$label F T\n", + " ham 0.98910824 0.01089176\n", + " spam 0.98333333 0.01666667\n", + "\n", + " recorded\n", + "trainSet$label F T\n", + " ham 0.986385296 0.013614704\n", + " spam 0.995833333 0.004166667\n", + "\n", + " recording\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " records\n", + "trainSet$label F T\n", + " ham 0.987406399 0.012593601\n", + " spam 0.994166667 0.005833333\n", + "\n", + " recoup\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " recover\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " recoverable\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " recovery\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " recruiter\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " recruiting\n", + "trainSet$label F T\n", + " ham 0.9976174268 0.0023825732\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " rectiions\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " recurring\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " red\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.981666667 0.018333333\n", + "\n", + " redeliver\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " redelivered\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 1.000000000 0.000000000\n", + "\n", + " redeliveries\n", + "trainSet$label F T\n", + " ham 0.97515317 0.02484683\n", + " spam 1.00000000 0.00000000\n", + "\n", + " redelivery\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 1.000000000 0.000000000\n", + "\n", + " redhead\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " redir\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " redirects\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " redistribute\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " redmond\n", + "trainSet$label F T\n", + " ham 0.9931926481 0.0068073519\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " redraft\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " reduce\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 0.986666667 0.013333333\n", + "\n", + " reduced\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.995000000 0.005000000\n", + "\n", + " reduces\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " reducing\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.997500000 0.002500000\n", + "\n", + " reduction\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.985000000 0.015000000\n", + "\n", + " redundancy\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " ree\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " reed\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.998333333 0.001666667\n", + "\n", + " reeves\n", + "trainSet$label F T\n", + " ham 0.9928522805 0.0071477195\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " ref\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.992500000 0.007500000\n", + "\n", + " refer\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.995000000 0.005000000\n", + "\n", + " reference\n", + "trainSet$label F T\n", + " ham 0.98638530 0.01361470\n", + " spam 0.97916667 0.02083333\n", + "\n", + " referenced\n", + "trainSet$label F T\n", + " ham 0.98298162 0.01701838\n", + " spam 0.98583333 0.01416667\n", + "\n", + " references\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " referred\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " referring\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.998333333 0.001666667\n", + "\n", + " refill\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " refinance\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.991666667 0.008333333\n", + "\n", + " refinery\n", + "trainSet$label F T\n", + " ham 0.9962559564 0.0037440436\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " reflect\n", + "trainSet$label F T\n", + " ham 0.9785568414 0.0214431586\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " reflected\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 1.000000000 0.000000000\n", + "\n", + " reflecting\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " reflects\n", + "trainSet$label F T\n", + " ham 0.9901293397 0.0098706603\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " reform\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.985 0.015\n", + "\n", + " refresh\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " refund\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995833333 0.004166667\n", + "\n", + " refurb\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " refurbished\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " reg\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " regalis\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " regan\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " regard\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.992500000 0.007500000\n", + "\n", + " regarding\n", + "trainSet$label F T\n", + " ham 0.95813479 0.04186521\n", + " spam 0.97916667 0.02083333\n", + "\n", + " regardless\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.994166667 0.005833333\n", + "\n", + " regards\n", + "trainSet$label F T\n", + " ham 0.98264125 0.01735875\n", + " spam 0.94333333 0.05666667\n", + "\n", + " regency\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " regina\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " region\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.991666667 0.008333333\n", + "\n", + " regional\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " regions\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.996666667 0.003333333\n", + "\n", + " register\n", + "trainSet$label F T\n", + " ham 0.991490810 0.008509190\n", + " spam 0.991666667 0.008333333\n", + "\n", + " registered\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.960833333 0.039166667\n", + "\n", + " registering\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " registration\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.990833333 0.009166667\n", + "\n", + " regret\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " regular\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.990000000 0.010000000\n", + "\n", + " regulated\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " regulation\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " regulations\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.993333333 0.006666667\n", + "\n", + " regulatory\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.996666667 0.003333333\n", + "\n", + " reid\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 1.000000000 0.000000000\n", + "\n", + " reiease\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " reieases\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " reiiable\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " reimburse\n", + "trainSet$label F T\n", + " ham 0.9976174268 0.0023825732\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " reimbursement\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " reinhardt\n", + "trainSet$label F T\n", + " ham 0.97447243 0.02552757\n", + " spam 1.00000000 0.00000000\n", + "\n", + " reisz\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " reiterate\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " rejected\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " relate\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " related\n", + "trainSet$label F T\n", + " ham 0.98264125 0.01735875\n", + " spam 0.98166667 0.01833333\n", + "\n", + " relates\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " relating\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.997500000 0.002500000\n", + "\n", + " relation\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.996666667 0.003333333\n", + "\n", + " relations\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.995833333 0.004166667\n", + "\n", + " relationship\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.991666667 0.008333333\n", + "\n", + " relationships\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.995000000 0.005000000\n", + "\n", + " relative\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.997500000 0.002500000\n", + "\n", + " relatively\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " relatives\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " relax\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " relaxant\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " relaxants\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " relaxation\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " release\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 0.970000000 0.030000000\n", + "\n", + " released\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.992500000 0.007500000\n", + "\n", + " releases\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9833333333 0.0166666667\n", + "\n", + " releasing\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " relevant\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.996666667 0.003333333\n", + "\n", + " reliabie\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " reliability\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " reliable\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9800000000 0.0200000000\n", + "\n", + " reliance\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9833333333 0.0166666667\n", + "\n", + " reliant\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 1.000000000 0.000000000\n", + "\n", + " reliantenergy\n", + "trainSet$label F T\n", + " ham 0.98025868 0.01974132\n", + " spam 1.00000000 0.00000000\n", + "\n", + " relied\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.998333333 0.001666667\n", + "\n", + " relief\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.976666667 0.023333333\n", + "\n", + " relieves\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " rely\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " rem\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " remain\n", + "trainSet$label F T\n", + " ham 0.988427502 0.011572498\n", + " spam 0.991666667 0.008333333\n", + "\n", + " remainder\n", + "trainSet$label F T\n", + " ham 0.9938733833 0.0061266167\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " remained\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " remaining\n", + "trainSet$label F T\n", + " ham 0.984683458 0.015316542\n", + " spam 0.994166667 0.005833333\n", + "\n", + " remains\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.995000000 0.005000000\n", + "\n", + " remedy\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.998333333 0.001666667\n", + "\n", + " remember\n", + "trainSet$label F T\n", + " ham 0.98570456 0.01429544\n", + " spam 0.96666667 0.03333333\n", + "\n", + " remind\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.998333333 0.001666667\n", + "\n", + " reminder\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 0.996666667 0.003333333\n", + "\n", + " remittance\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " remitted\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.991666667 0.008333333\n", + "\n", + " remote\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.994166667 0.005833333\n", + "\n", + " remotely\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " removable\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " removal\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.990833333 0.009166667\n", + "\n", + " remove\n", + "trainSet$label F T\n", + " ham 0.99149081 0.00850919\n", + " spam 0.93000000 0.07000000\n", + "\n", + " removed\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.944166667 0.055833333\n", + "\n", + " removes\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " renegotiated\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " renew\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " renewable\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " rental\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " rep\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.994166667 0.005833333\n", + "\n", + " repair\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " repairs\n", + "trainSet$label F T\n", + " ham 0.9955752212 0.0044247788\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " repathed\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " repeated\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " replace\n", + "trainSet$label F T\n", + " ham 0.9948944860 0.0051055140\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " replaced\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.997500000 0.002500000\n", + "\n", + " replacement\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " replacing\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " replica\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.990833333 0.009166667\n", + "\n", + " replicas\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " reply\n", + "trainSet$label F T\n", + " ham 0.98468346 0.01531654\n", + " spam 0.92250000 0.07750000\n", + "\n", + " replying\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " report\n", + "trainSet$label F T\n", + " ham 0.96187883 0.03812117\n", + " spam 0.94166667 0.05833333\n", + "\n", + " reported\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.998333333 0.001666667\n", + "\n", + " reporting\n", + "trainSet$label F T\n", + " ham 0.991150442 0.008849558\n", + " spam 0.994166667 0.005833333\n", + "\n", + " reports\n", + "trainSet$label F T\n", + " ham 0.989448604 0.010551396\n", + " spam 0.993333333 0.006666667\n", + "\n", + " represent\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.975000000 0.025000000\n", + "\n", + " representaciones\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " representation\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " representative\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.974166667 0.025833333\n", + "\n", + " representatives\n", + "trainSet$label F T\n", + " ham 0.9972770592 0.0027229408\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " representing\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " represents\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.992500000 0.007500000\n", + "\n", + " reproduction\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " reps\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " republic\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " request\n", + "trainSet$label F T\n", + " ham 0.96085773 0.03914227\n", + " spam 0.95833333 0.04166667\n", + "\n", + " requested\n", + "trainSet$label F T\n", + " ham 0.972089857 0.027910143\n", + " spam 0.993333333 0.006666667\n", + "\n", + " requesting\n", + "trainSet$label F T\n", + " ham 0.9935330157 0.0064669843\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " requests\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.997500000 0.002500000\n", + "\n", + " require\n", + "trainSet$label F T\n", + " ham 0.99012934 0.00987066\n", + " spam 0.98666667 0.01333333\n", + "\n", + " required\n", + "trainSet$label F T\n", + " ham 0.98774677 0.01225323\n", + " spam 0.94833333 0.05166667\n", + "\n", + " requirement\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " requirements\n", + "trainSet$label F T\n", + " ham 0.98706603 0.01293397\n", + " spam 0.98500000 0.01500000\n", + "\n", + " requires\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.994166667 0.005833333\n", + "\n", + " requiring\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " res\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.997500000 0.002500000\n", + "\n", + " reschedule\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " rescue\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " research\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.984166667 0.015833333\n", + "\n", + " researched\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " resellers\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.97083333 0.02916667\n", + "\n", + " resend\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " resent\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " reservation\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " reservations\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.997500000 0.002500000\n", + "\n", + " reserve\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.997500000 0.002500000\n", + "\n", + " reserved\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.994166667 0.005833333\n", + "\n", + " reserves\n", + "trainSet$label F T\n", + " ham 0.986385296 0.013614704\n", + " spam 0.993333333 0.006666667\n", + "\n", + " reset\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " reside\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " resident\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " residential\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " residue\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " resolution\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.994166667 0.005833333\n", + "\n", + " resolve\n", + "trainSet$label F T\n", + " ham 0.9870660313 0.0129339687\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " resolved\n", + "trainSet$label F T\n", + " ham 0.98706603 0.01293397\n", + " spam 0.99750000 0.00250000\n", + "\n", + " resort\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " resorts\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " resource\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.994166667 0.005833333\n", + "\n", + " resources\n", + "trainSet$label F T\n", + " ham 0.9506467 0.0493533\n", + " spam 0.9925000 0.0075000\n", + "\n", + " respect\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.970000000 0.030000000\n", + "\n", + " respecter\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " respective\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.969166667 0.030833333\n", + "\n", + " respectively\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.996666667 0.003333333\n", + "\n", + " respond\n", + "trainSet$label F T\n", + " ham 0.98604493 0.01395507\n", + " spam 0.99500000 0.00500000\n", + "\n", + " responded\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " response\n", + "trainSet$label F T\n", + " ham 0.98127978 0.01872022\n", + " spam 0.98083333 0.01916667\n", + "\n", + " responses\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 1.000000000 0.000000000\n", + "\n", + " responsibilities\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 1.000000000 0.000000000\n", + "\n", + " responsibility\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 0.996666667 0.003333333\n", + "\n", + " responsible\n", + "trainSet$label F T\n", + " ham 0.98774677 0.01225323\n", + " spam 0.99750000 0.00250000\n", + "\n", + " rest\n", + "trainSet$label F T\n", + " ham 0.98638530 0.01361470\n", + " spam 0.98833333 0.01166667\n", + "\n", + " restart\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " restate\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " restatement\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " restaurant\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " restore\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " restricted\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.998333333 0.001666667\n", + "\n", + " restrictions\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 1.000000000 0.000000000\n", + "\n", + " restructuring\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " resuiting\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " resuits\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98666667 0.01333333\n", + "\n", + " result\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.978333333 0.021666667\n", + "\n", + " resulted\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.995833333 0.004166667\n", + "\n", + " resulting\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.977500000 0.022500000\n", + "\n", + " results\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.935000000 0.065000000\n", + "\n", + " resume\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 0.997500000 0.002500000\n", + "\n", + " resumes\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " retail\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.977500000 0.022500000\n", + "\n", + " retailers\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " retailler\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " retails\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " retain\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.998333333 0.001666667\n", + "\n", + " retains\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " retaking\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " retired\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " retiree\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " retirement\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " retreat\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " retrieval\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " retrieve\n", + "trainSet$label F T\n", + " ham 0.9965963240 0.0034036760\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " retro\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " retroactive\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " retrofit\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " return\n", + "trainSet$label F T\n", + " ham 0.97685500 0.02314500\n", + " spam 0.98833333 0.01166667\n", + "\n", + " returned\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.991666667 0.008333333\n", + "\n", + " returning\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " returns\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.994166667 0.005833333\n", + "\n", + " reuters\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " rev\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 1.000000000 0.000000000\n", + "\n", + " revealed\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.994166667 0.005833333\n", + "\n", + " revealing\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " reveffo\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 1.000000000 0.000000000\n", + "\n", + " revenue\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.982500000 0.017500000\n", + "\n", + " revenues\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.98666667 0.01333333\n", + "\n", + " reverse\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " reversed\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " reves\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " review\n", + "trainSet$label F T\n", + " ham 0.96392103 0.03607897\n", + " spam 0.97416667 0.02583333\n", + "\n", + " reviewed\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.998333333 0.001666667\n", + "\n", + " reviewers\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " reviewing\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.997500000 0.002500000\n", + "\n", + " reviews\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995000000 0.005000000\n", + "\n", + " revise\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.995833333 0.004166667\n", + "\n", + " revised\n", + "trainSet$label F T\n", + " ham 0.963240300 0.036759700\n", + " spam 0.998333333 0.001666667\n", + "\n", + " revising\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " revision\n", + "trainSet$label F T\n", + " ham 0.97515317 0.02484683\n", + " spam 1.00000000 0.00000000\n", + "\n", + " revisions\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 1.000000000 0.000000000\n", + "\n", + " revolutionary\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9841666667 0.0158333333\n", + "\n", + " reward\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " rewards\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.998333333 0.001666667\n", + "\n", + " rewrite\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " rewriter\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " reynolds\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " rfid\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " rfp\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " rgsa\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " rhonda\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.998333333 0.001666667\n", + "\n", + " ric\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " rica\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " rice\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " rich\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.990833333 0.009166667\n", + "\n", + " richard\n", + "trainSet$label F T\n", + " ham 0.98400272 0.01599728\n", + " spam 0.99750000 0.00250000\n", + "\n", + " richardson\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.998333333 0.001666667\n", + "\n", + " richars\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " richmond\n", + "trainSet$label F T\n", + " ham 0.9938733833 0.0061266167\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " rick\n", + "trainSet$label F T\n", + " ham 0.9863853 0.0136147\n", + " spam 1.0000000 0.0000000\n", + "\n", + " ricks\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ricky\n", + "trainSet$label F T\n", + " ham 0.98570456 0.01429544\n", + " spam 0.99750000 0.00250000\n", + "\n", + " rico\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " rid\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99500000 0.00500000\n", + "\n", + " ride\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99500000 0.00500000\n", + "\n", + " rider\n", + "trainSet$label F T\n", + " ham 0.9976174268 0.0023825732\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " ridia\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " rien\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " riesz\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " rig\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " right\n", + "trainSet$label F T\n", + " ham 0.96766508 0.03233492\n", + " spam 0.94333333 0.05666667\n", + "\n", + " rights\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.984166667 0.015833333\n", + "\n", + " riley\n", + "trainSet$label F T\n", + " ham 0.98332199 0.01667801\n", + " spam 1.00000000 0.00000000\n", + "\n", + " ring\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " ringing\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " rings\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " rio\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " ripley\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " ription\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " rise\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.994166667 0.005833333\n", + "\n", + " rising\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " risk\n", + "trainSet$label F T\n", + " ham 0.97957794 0.02042206\n", + " spam 0.96250000 0.03750000\n", + "\n", + " risks\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9675000000 0.0325000000\n", + "\n", + " rita\n", + "trainSet$label F T\n", + " ham 0.96460177 0.03539823\n", + " spam 1.00000000 0.00000000\n", + "\n", + " river\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.990833333 0.009166667\n", + "\n", + " rivers\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 1.000000000 0.000000000\n", + "\n", + " riverside\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " rmm\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " rnd\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.985 0.015\n", + "\n", + " road\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.987500000 0.012500000\n", + "\n", + " roaring\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " rob\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.996666667 0.003333333\n", + "\n", + " roberson\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " robert\n", + "trainSet$label F T\n", + " ham 0.903335602 0.096664398\n", + " spam 0.994166667 0.005833333\n", + "\n", + " roberts\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.998333333 0.001666667\n", + "\n", + " robin\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.996666667 0.003333333\n", + "\n", + " robinson\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.998333333 0.001666667\n", + "\n", + " robotics\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.97083333 0.02916667\n", + "\n", + " rock\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.981666667 0.018333333\n", + "\n", + " rocket\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " rod\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " rodessa\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " rodgers\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " rodney\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " rodriguez\n", + "trainSet$label F T\n", + " ham 0.96970728 0.03029272\n", + " spam 1.00000000 0.00000000\n", + "\n", + " roger\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " rogers\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " rohm\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " role\n", + "trainSet$label F T\n", + " ham 0.991150442 0.008849558\n", + " spam 0.995833333 0.004166667\n", + "\n", + " roles\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " rolex\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98166667 0.01833333\n", + "\n", + " roll\n", + "trainSet$label F T\n", + " ham 0.986725664 0.013274336\n", + " spam 0.995833333 0.004166667\n", + "\n", + " rolled\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.998333333 0.001666667\n", + "\n", + " rolling\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 1.000000000 0.000000000\n", + "\n", + " rollout\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " rom\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.993333333 0.006666667\n", + "\n", + " romano\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " romeo\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ron\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ronald\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ronn\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " ronnie\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " roof\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " room\n", + "trainSet$label F T\n", + " ham 0.988427502 0.011572498\n", + " spam 0.994166667 0.005833333\n", + "\n", + " rooms\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.992500000 0.007500000\n", + "\n", + " roos\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " roper\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " rose\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.998333333 0.001666667\n", + "\n", + " ross\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " roster\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " rotating\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " rough\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " round\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.990000000 0.010000000\n", + "\n", + " route\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " router\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " routine\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " row\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.995833333 0.004166667\n", + "\n", + " rows\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " rowspan\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " roxanne\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " roy\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995000000 0.005000000\n", + "\n", + " royal\n", + "trainSet$label F T\n", + " ham 0.98808713 0.01191287\n", + " spam 0.99750000 0.00250000\n", + "\n", + " royalty\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " rozycki\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " rrc\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " rsn\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " rss\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " rsvp\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " rsweb\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " rtackett\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " rtgage\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " rtu\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " rubble\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " rugged\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " rule\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.995000000 0.005000000\n", + "\n", + " rules\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.993333333 0.006666667\n", + "\n", + " ruling\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " run\n", + "trainSet$label F T\n", + " ham 0.98196052 0.01803948\n", + " spam 0.97916667 0.02083333\n", + "\n", + " running\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 0.988333333 0.011666667\n", + "\n", + " runs\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " rush\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " rusk\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " russ\n", + "trainSet$label F T\n", + " ham 0.9931926481 0.0068073519\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " russell\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " russia\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " rusty\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.997500000 0.002500000\n", + "\n", + " ruth\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.998333333 0.001666667\n", + "\n", + " ryan\n", + "trainSet$label F T\n", + " ham 0.9959155888 0.0040844112\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " saave\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " sabine\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " sabra\n", + "trainSet$label F T\n", + " ham 0.9976174268 0.0023825732\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " sabrae\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 1.000000000 0.000000000\n", + "\n", + " sacrifice\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " sad\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " saf\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " safari\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " safe\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.961666667 0.038333333\n", + "\n", + " safeguard\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " safely\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " safety\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.990833333 0.009166667\n", + "\n", + " said\n", + "trainSet$label F T\n", + " ham 0.96289993 0.03710007\n", + " spam 0.96666667 0.03333333\n", + "\n", + " saies\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " sailing\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " salaam\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " salaries\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " salary\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.997500000 0.002500000\n", + "\n", + " salazar\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " saldana\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " saldivar\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " sale\n", + "trainSet$label F T\n", + " ham 0.93192648 0.06807352\n", + " spam 0.94833333 0.05166667\n", + "\n", + " sales\n", + "trainSet$label F T\n", + " ham 0.96187883 0.03812117\n", + " spam 0.94583333 0.05416667\n", + "\n", + " sally\n", + "trainSet$label F T\n", + " ham 0.9891082369 0.0108917631\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " saloonkeep\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " salt\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995833333 0.004166667\n", + "\n", + " sam\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " sample\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.995833333 0.004166667\n", + "\n", + " samples\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " samson\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.998333333 0.001666667\n", + "\n", + " samsung\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " samuel\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.997500000 0.002500000\n", + "\n", + " san\n", + "trainSet$label F T\n", + " ham 0.989448604 0.010551396\n", + " spam 0.994166667 0.005833333\n", + "\n", + " sanchez\n", + "trainSet$label F T\n", + " ham 0.9952348536 0.0047651464\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " sand\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.991666667 0.008333333\n", + "\n", + " sanders\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " sandi\n", + "trainSet$label F T\n", + " ham 0.99012934 0.00987066\n", + " spam 1.00000000 0.00000000\n", + "\n", + " sandoval\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " sandpaper\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " sandra\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 1.000000000 0.000000000\n", + "\n", + " sands\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " sandy\n", + "trainSet$label F T\n", + " ham 0.9972770592 0.0027229408\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " sanjay\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " sans\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " santa\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " santiago\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " sap\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.998333333 0.001666667\n", + "\n", + " sara\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " sarah\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " sarco\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " sarmiento\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " sat\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.987500000 0.012500000\n", + "\n", + " satellite\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " satisfaction\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9850000000 0.0150000000\n", + "\n", + " satisfactory\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.996666667 0.003333333\n", + "\n", + " satisfied\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9891666667 0.0108333333\n", + "\n", + " satisfy\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " saturday\n", + "trainSet$label F T\n", + " ham 0.98264125 0.01735875\n", + " spam 1.00000000 0.00000000\n", + "\n", + " satx\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " saudi\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " sav\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " save\n", + "trainSet$label F T\n", + " ham 0.991150442 0.008849558\n", + " spam 0.917500000 0.082500000\n", + "\n", + " saved\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.994166667 0.005833333\n", + "\n", + " saves\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " saving\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.991666667 0.008333333\n", + "\n", + " savings\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.982500000 0.017500000\n", + "\n", + " saw\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.989166667 0.010833333\n", + "\n", + " saxet\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 1.000000000 0.000000000\n", + "\n", + " say\n", + "trainSet$label F T\n", + " ham 0.9894486 0.0105514\n", + " spam 0.9600000 0.0400000\n", + "\n", + " saying\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.998333333 0.001666667\n", + "\n", + " says\n", + "trainSet$label F T\n", + " ham 0.98774677 0.01225323\n", + " spam 0.98416667 0.01583333\n", + "\n", + " sbr\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " scada\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " scale\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.995833333 0.004166667\n", + "\n", + " scan\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " scanner\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " scarborough\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " scenario\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " scene\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " schedule\n", + "trainSet$label F T\n", + " ham 0.975493533 0.024506467\n", + " spam 0.995833333 0.004166667\n", + "\n", + " scheduled\n", + "trainSet$label F T\n", + " ham 0.9622192 0.0377808\n", + " spam 0.9975000 0.0025000\n", + "\n", + " scheduler\n", + "trainSet$label F T\n", + " ham 0.991150442 0.008849558\n", + " spam 1.000000000 0.000000000\n", + "\n", + " schedulers\n", + "trainSet$label F T\n", + " ham 0.98808713 0.01191287\n", + " spam 1.00000000 0.00000000\n", + "\n", + " schedules\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " scheduling\n", + "trainSet$label F T\n", + " ham 0.96732471 0.03267529\n", + " spam 1.00000000 0.00000000\n", + "\n", + " schematic\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " schneider\n", + "trainSet$label F T\n", + " ham 0.9870660313 0.0129339687\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " school\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.989166667 0.010833333\n", + "\n", + " schoolchildren\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " schools\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " schoolyard\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " schott\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " schrab\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " schumack\n", + "trainSet$label F T\n", + " ham 0.98093941 0.01906059\n", + " spam 1.00000000 0.00000000\n", + "\n", + " schwarz\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 1.000000000 0.000000000\n", + "\n", + " schwieger\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " science\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " scientific\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " scoop\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " scope\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " scott\n", + "trainSet$label F T\n", + " ham 0.97719537 0.02280463\n", + " spam 0.99750000 0.00250000\n", + "\n", + " scotty\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " scrap\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " screen\n", + "trainSet$label F T\n", + " ham 0.992852280 0.007147720\n", + " spam 0.995833333 0.004166667\n", + "\n", + " screens\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9908333333 0.0091666667\n", + "\n", + " screw\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " scribner\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 1.000000000 0.000000000\n", + "\n", + " script\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " scroll\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.993333333 0.006666667\n", + "\n", + " scsi\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " scuba\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " sds\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 1.000000000 0.000000000\n", + "\n", + " sdsnom\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 1.000000000 0.000000000\n", + "\n", + " sea\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.993333333 0.006666667\n", + "\n", + " seadrift\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " seal\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " seales\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " seaman\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 1.000000000 0.000000000\n", + "\n", + " sean\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.997500000 0.002500000\n", + "\n", + " search\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.976666667 0.023333333\n", + "\n", + " searching\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.993333333 0.006666667\n", + "\n", + " sears\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " season\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.992500000 0.007500000\n", + "\n", + " seasonal\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " seat\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " seating\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " seats\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " sec\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.98250000 0.01750000\n", + "\n", + " second\n", + "trainSet$label F T\n", + " ham 0.98536419 0.01463581\n", + " spam 0.96083333 0.03916667\n", + "\n", + " secondary\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " seconds\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.990833333 0.009166667\n", + "\n", + " secret\n", + "trainSet$label F T\n", + " ham 1.00 0.00\n", + " spam 0.99 0.01\n", + "\n", + " secretary\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " secrets\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " section\n", + "trainSet$label F T\n", + " ham 0.98570456 0.01429544\n", + " spam 0.94250000 0.05750000\n", + "\n", + " sectionl\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " sections\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " sector\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.991666667 0.008333333\n", + "\n", + " sectors\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995833333 0.004166667\n", + "\n", + " secure\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.966666667 0.033333333\n", + "\n", + " secured\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9891666667 0.0108333333\n", + "\n", + " securing\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " securities\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.961666667 0.038333333\n", + "\n", + " security\n", + "trainSet$label F T\n", + " ham 0.99285228 0.00714772\n", + " spam 0.94500000 0.05500000\n", + "\n", + " see\n", + "trainSet$label F T\n", + " ham 0.76106195 0.23893805\n", + " spam 0.91166667 0.08833333\n", + "\n", + " seeing\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.997500000 0.002500000\n", + "\n", + " seek\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.966666667 0.033333333\n", + "\n", + " seeking\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.993333333 0.006666667\n", + "\n", + " seeks\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " seem\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.994166667 0.005833333\n", + "\n", + " seemed\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.997500000 0.002500000\n", + "\n", + " seems\n", + "trainSet$label F T\n", + " ham 0.990810075 0.009189925\n", + " spam 0.997500000 0.002500000\n", + "\n", + " seen\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.981666667 0.018333333\n", + "\n", + " sees\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " segment\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " segments\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " seib\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " seiected\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " sel\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " select\n", + "trainSet$label F T\n", + " ham 0.99149081 0.00850919\n", + " spam 0.99250000 0.00750000\n", + "\n", + " selected\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.967500000 0.032500000\n", + "\n", + " selecting\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " selection\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.990000000 0.010000000\n", + "\n", + " self\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.987500000 0.012500000\n", + "\n", + " sell\n", + "trainSet$label F T\n", + " ham 0.98059905 0.01940095\n", + " spam 0.96083333 0.03916667\n", + "\n", + " seller\n", + "trainSet$label F T\n", + " ham 0.9911504425 0.0088495575\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " selling\n", + "trainSet$label F T\n", + " ham 0.98706603 0.01293397\n", + " spam 0.98916667 0.01083333\n", + "\n", + " sells\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.998333333 0.001666667\n", + "\n", + " seltzer\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " semen\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " semester\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " seminar\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " sempra\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " senate\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " send\n", + "trainSet$label F T\n", + " ham 0.94452008 0.05547992\n", + " spam 0.91166667 0.08833333\n", + "\n", + " sender\n", + "trainSet$label F T\n", + " ham 0.9931926481 0.0068073519\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " sending\n", + "trainSet$label F T\n", + " ham 0.98774677 0.01225323\n", + " spam 0.99500000 0.00500000\n", + "\n", + " sends\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.995000000 0.005000000\n", + "\n", + " seneca\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " senior\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.994166667 0.005833333\n", + "\n", + " sense\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.995000000 0.005000000\n", + "\n", + " sensitive\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " sent\n", + "trainSet$label F T\n", + " ham 0.89006127 0.10993873\n", + " spam 0.91833333 0.08166667\n", + "\n", + " sep\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.998333333 0.001666667\n", + "\n", + " separate\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.996666667 0.003333333\n", + "\n", + " separately\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " separation\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " sepo\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " sept\n", + "trainSet$label F T\n", + " ham 0.9717494894 0.0282505106\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " september\n", + "trainSet$label F T\n", + " ham 0.956092580 0.043907420\n", + " spam 0.995833333 0.004166667\n", + "\n", + " sequence\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " serial\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98666667 0.01333333\n", + "\n", + " series\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.992500000 0.007500000\n", + "\n", + " serious\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9908333333 0.0091666667\n", + "\n", + " serve\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.988333333 0.011666667\n", + "\n", + " served\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.997500000 0.002500000\n", + "\n", + " server\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.975000000 0.025000000\n", + "\n", + " servers\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " service\n", + "trainSet$label F T\n", + " ham 0.96902655 0.03097345\n", + " spam 0.93083333 0.06916667\n", + "\n", + " services\n", + "trainSet$label F T\n", + " ham 0.96426140 0.03573860\n", + " spam 0.95416667 0.04583333\n", + "\n", + " serving\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " session\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.996666667 0.003333333\n", + "\n", + " sessions\n", + "trainSet$label F T\n", + " ham 0.9969366916 0.0030633084\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " set\n", + "trainSet$label F T\n", + " ham 0.93567052 0.06432948\n", + " spam 0.96250000 0.03750000\n", + "\n", + " sets\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.995833333 0.004166667\n", + "\n", + " settelement\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " setting\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 0.996666667 0.003333333\n", + "\n", + " settings\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " settle\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.996666667 0.003333333\n", + "\n", + " settlement\n", + "trainSet$label F T\n", + " ham 0.99149081 0.00850919\n", + " spam 1.00000000 0.00000000\n", + "\n", + " settlements\n", + "trainSet$label F T\n", + " ham 0.98196052 0.01803948\n", + " spam 0.99750000 0.00250000\n", + "\n", + " settling\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " setup\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.997500000 0.002500000\n", + "\n", + " seven\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.990833333 0.009166667\n", + "\n", + " sever\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.998333333 0.001666667\n", + "\n", + " several\n", + "trainSet$label F T\n", + " ham 0.97379170 0.02620830\n", + " spam 0.98666667 0.01333333\n", + "\n", + " severance\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " severe\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " severely\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " severson\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 1.000000000 0.000000000\n", + "\n", + " sex\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9541666667 0.0458333333\n", + "\n", + " sexual\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9758333333 0.0241666667\n", + "\n", + " sexually\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " sexy\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.990833333 0.009166667\n", + "\n", + " sha\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " shah\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " shahnaz\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " shail\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " shake\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " shal\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " shale\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " shall\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.973333333 0.026666667\n", + "\n", + " shane\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " shanghai\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " shank\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " shankman\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " shankster\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " shannon\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.998333333 0.001666667\n", + "\n", + " shape\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.991666667 0.008333333\n", + "\n", + " shaped\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " share\n", + "trainSet$label F T\n", + " ham 0.990810075 0.009189925\n", + " spam 0.977500000 0.022500000\n", + "\n", + " shared\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.993333333 0.006666667\n", + "\n", + " sharehoider\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " shareholder\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9850000000 0.0150000000\n", + "\n", + " shareholders\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99250000 0.00750000\n", + "\n", + " shares\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9700000000 0.0300000000\n", + "\n", + " shareware\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " shari\n", + "trainSet$label F T\n", + " ham 0.9945541184 0.0054458816\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " sharing\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.996666667 0.003333333\n", + "\n", + " sharma\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " sharon\n", + "trainSet$label F T\n", + " ham 0.9921715453 0.0078284547\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " sharp\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9925000000 0.0075000000\n", + "\n", + " shatalmic\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " shaun\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " shawn\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " shawna\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 1.000000000 0.000000000\n", + "\n", + " shed\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " sheet\n", + "trainSet$label F T\n", + " ham 0.98774677 0.01225323\n", + " spam 0.99500000 0.00500000\n", + "\n", + " sheets\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.994166667 0.005833333\n", + "\n", + " sheila\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 1.000000000 0.000000000\n", + "\n", + " shell\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 0.995833333 0.004166667\n", + "\n", + " shelley\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " shells\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " shelly\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " shelton\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " shepherd\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " shepperd\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " sheri\n", + "trainSet$label F T\n", + " ham 0.99149081 0.00850919\n", + " spam 1.00000000 0.00000000\n", + "\n", + " sheridan\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " sherlyn\n", + "trainSet$label F T\n", + " ham 0.97889721 0.02110279\n", + " spam 1.00000000 0.00000000\n", + "\n", + " sherry\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.998333333 0.001666667\n", + "\n", + " shi\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " shift\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.997500000 0.002500000\n", + "\n", + " shiip\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " shimek\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " shining\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " ship\n", + "trainSet$label F T\n", + " ham 0.99285228 0.00714772\n", + " spam 0.97583333 0.02416667\n", + "\n", + " shipment\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.995000000 0.005000000\n", + "\n", + " shipped\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.971666667 0.028333333\n", + "\n", + " shipper\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 1.000000000 0.000000000\n", + "\n", + " shippers\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " shipping\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.948333333 0.051666667\n", + "\n", + " shirley\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " shirt\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " shirts\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " shively\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " shlpp\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " shlpped\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " shoemake\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " shoes\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " shona\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " shoot\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995833333 0.004166667\n", + "\n", + " shooting\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " shop\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.978333333 0.021666667\n", + "\n", + " shopping\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.993333333 0.006666667\n", + "\n", + " shops\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " shore\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " shoreline\n", + "trainSet$label F T\n", + " ham 0.9952348536 0.0047651464\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " short\n", + "trainSet$label F T\n", + " ham 0.98638530 0.01361470\n", + " spam 0.97666667 0.02333333\n", + "\n", + " shortage\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " shortages\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " shortcut\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " shorted\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " shorter\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " shortly\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.995000000 0.005000000\n", + "\n", + " shortname\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " shot\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.994166667 0.005833333\n", + "\n", + " shots\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " shouid\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98833333 0.01166667\n", + "\n", + " shoulder\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " shouldn\n", + "trainSet$label F T\n", + " ham 0.9969366916 0.0030633084\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " shout\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " shove\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " show\n", + "trainSet$label F T\n", + " ham 0.95609258 0.04390742\n", + " spam 0.96750000 0.03250000\n", + "\n", + " showed\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.997500000 0.002500000\n", + "\n", + " shower\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " showing\n", + "trainSet$label F T\n", + " ham 0.979918312 0.020081688\n", + " spam 0.994166667 0.005833333\n", + "\n", + " shown\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.968333333 0.031666667\n", + "\n", + " shows\n", + "trainSet$label F T\n", + " ham 0.97072839 0.02927161\n", + " spam 0.99500000 0.00500000\n", + "\n", + " shrink\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9925000000 0.0075000000\n", + "\n", + " shrinkage\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " shuler\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " shults\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " shut\n", + "trainSet$label F T\n", + " ham 0.98264125 0.01735875\n", + " spam 0.99750000 0.00250000\n", + "\n", + " shutdown\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " shy\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " sick\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.989166667 0.010833333\n", + "\n", + " sid\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " side\n", + "trainSet$label F T\n", + " ham 0.98706603 0.01293397\n", + " spam 0.97250000 0.02750000\n", + "\n", + " sidebacks\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98833333 0.01166667\n", + "\n", + " sidelines\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " sides\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " sie\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " sierra\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " sigma\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " sign\n", + "trainSet$label F T\n", + " ham 0.98604493 0.01395507\n", + " spam 0.98416667 0.01583333\n", + "\n", + " signature\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.994166667 0.005833333\n", + "\n", + " signatures\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " signed\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.991666667 0.008333333\n", + "\n", + " signer\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " significant\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 0.987500000 0.012500000\n", + "\n", + " significantly\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.993333333 0.006666667\n", + "\n", + " signing\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " signs\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " sildenafil\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " silence\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " silent\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " silicon\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " silver\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.991666667 0.008333333\n", + "\n", + " similar\n", + "trainSet$label F T\n", + " ham 0.99149081 0.00850919\n", + " spam 0.98083333 0.01916667\n", + "\n", + " simple\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.98166667 0.01833333\n", + "\n", + " simplified\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " simplify\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " simply\n", + "trainSet$label F T\n", + " ham 0.99012934 0.00987066\n", + " spam 0.97250000 0.02750000\n", + "\n", + " simulators\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " simultaneously\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " simunek\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " since\n", + "trainSet$label F T\n", + " ham 0.95473111 0.04526889\n", + " spam 0.95500000 0.04500000\n", + "\n", + " sincere\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " sincerely\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.977500000 0.022500000\n", + "\n", + " sing\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " singapore\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " singing\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " singla\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " single\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.985833333 0.014166667\n", + "\n", + " singles\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " sinus\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " sioux\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " sir\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98416667 0.01583333\n", + "\n", + " sirius\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " sister\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995000000 0.005000000\n", + "\n", + " sit\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.992500000 0.007500000\n", + "\n", + " sitara\n", + "trainSet$label F T\n", + " ham 0.8910824 0.1089176\n", + " spam 1.0000000 0.0000000\n", + "\n", + " site\n", + "trainSet$label F T\n", + " ham 0.98672566 0.01327434\n", + " spam 0.92083333 0.07916667\n", + "\n", + " sites\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.985000000 0.015000000\n", + "\n", + " sitting\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.995833333 0.004166667\n", + "\n", + " situation\n", + "trainSet$label F T\n", + " ham 0.987406399 0.012593601\n", + " spam 0.994166667 0.005833333\n", + "\n", + " situations\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " six\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.985833333 0.014166667\n", + "\n", + " siz\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " size\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.946666667 0.053333333\n", + "\n", + " sized\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " sizes\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " skel\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " skelaxin\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " skill\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.995833333 0.004166667\n", + "\n", + " skills\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.996666667 0.003333333\n", + "\n", + " skin\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9883333333 0.0116666667\n", + "\n", + " skins\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " sky\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.990833333 0.009166667\n", + "\n", + " skydive\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " skymiles\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " skyrocket\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " sleep\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9866666667 0.0133333333\n", + "\n", + " sleeping\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98916667 0.01083333\n", + "\n", + " sleeve\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " sleight\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " slide\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " slightly\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " slim\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.997500000 0.002500000\n", + "\n", + " slocum\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " slot\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " slots\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " slow\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.994166667 0.005833333\n", + "\n", + " sluts\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " sma\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " smal\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " small\n", + "trainSet$label F T\n", + " ham 0.98366236 0.01633764\n", + " spam 0.97000000 0.03000000\n", + "\n", + " smallcap\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " smaller\n", + "trainSet$label F T\n", + " ham 0.9969366916 0.0030633084\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " smallest\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " smart\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9866666667 0.0133333333\n", + "\n", + " smi\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " smil\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " smile\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " smith\n", + "trainSet$label F T\n", + " ham 0.941797141 0.058202859\n", + " spam 0.995833333 0.004166667\n", + "\n", + " smoke\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " smoked\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " smoking\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9883333333 0.0116666667\n", + "\n", + " smooth\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.997500000 0.002500000\n", + "\n", + " smtp\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.997500000 0.002500000\n", + "\n", + " smuggle\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " smuggling\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " snapshot\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " snow\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " soar\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.991666667 0.008333333\n", + "\n", + " soaring\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " social\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " society\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " sofftwaares\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " soft\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.95833333 0.04166667\n", + "\n", + " softabs\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " softtabs\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.991666667 0.008333333\n", + "\n", + " software\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.932500000 0.067500000\n", + "\n", + " softwares\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " sohne\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " soignet\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " soiicitation\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " sol\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " sold\n", + "trainSet$label F T\n", + " ham 0.98876787 0.01123213\n", + " spam 0.97916667 0.02083333\n", + "\n", + " soldier\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " soldiers\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " sole\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.995000000 0.005000000\n", + "\n", + " solely\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.998333333 0.001666667\n", + "\n", + " solent\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " solicit\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " solicitation\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9716666667 0.0283333333\n", + "\n", + " solid\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98833333 0.01166667\n", + "\n", + " solmonson\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 1.000000000 0.000000000\n", + "\n", + " solution\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.959166667 0.040833333\n", + "\n", + " solutions\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.985000000 0.015000000\n", + "\n", + " solve\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " solved\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " solving\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " som\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " soma\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.97583333 0.02416667\n", + "\n", + " somebody\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " somehow\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.97000000 0.03000000\n", + "\n", + " someone\n", + "trainSet$label F T\n", + " ham 0.96221920 0.03778080\n", + " spam 0.98166667 0.01833333\n", + "\n", + " something\n", + "trainSet$label F T\n", + " ham 0.97004765 0.02995235\n", + " spam 0.98166667 0.01833333\n", + "\n", + " sometime\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 1.000000000 0.000000000\n", + "\n", + " sometimes\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.994166667 0.005833333\n", + "\n", + " somewhat\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " somewhere\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.997500000 0.002500000\n", + "\n", + " son\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.987500000 0.012500000\n", + "\n", + " sonar\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " sonat\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " song\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.994166667 0.005833333\n", + "\n", + " songs\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " sony\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9683333333 0.0316666667\n", + "\n", + " soon\n", + "trainSet$label F T\n", + " ham 0.96324030 0.03675970\n", + " spam 0.97416667 0.02583333\n", + "\n", + " sooner\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.995833333 0.004166667\n", + "\n", + " sophisticated\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " sordo\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " sorenson\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 1.000000000 0.000000000\n", + "\n", + " sorry\n", + "trainSet$label F T\n", + " ham 0.971749489 0.028250511\n", + " spam 0.991666667 0.008333333\n", + "\n", + " sort\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.997500000 0.002500000\n", + "\n", + " sorts\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " sought\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " sound\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.989166667 0.010833333\n", + "\n", + " sounds\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.995833333 0.004166667\n", + "\n", + " source\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.968333333 0.031666667\n", + "\n", + " sources\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.97666667 0.02333333\n", + "\n", + " sourcing\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " south\n", + "trainSet$label F T\n", + " ham 0.98774677 0.01225323\n", + " spam 0.97750000 0.02250000\n", + "\n", + " southeast\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " southern\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.995000000 0.005000000\n", + "\n", + " southwest\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 1.000000000 0.000000000\n", + "\n", + " souza\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 1.000000000 0.000000000\n", + "\n", + " spa\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " space\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.990000000 0.010000000\n", + "\n", + " spacer\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " spain\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " spam\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9566666667 0.0433333333\n", + "\n", + " span\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " spanbr\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " spanish\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " spank\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " sparks\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " spe\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " speak\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.990833333 0.009166667\n", + "\n", + " speaker\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " speakers\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995833333 0.004166667\n", + "\n", + " speaking\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.996666667 0.003333333\n", + "\n", + " spec\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.998333333 0.001666667\n", + "\n", + " specia\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " special\n", + "trainSet$label F T\n", + " ham 0.98400272 0.01599728\n", + " spam 0.91166667 0.08833333\n", + "\n", + " specialist\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.997500000 0.002500000\n", + "\n", + " specializes\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " specializing\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " specially\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9875 0.0125\n", + "\n", + " specials\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.975833333 0.024166667\n", + "\n", + " specialty\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " specific\n", + "trainSet$label F T\n", + " ham 0.98570456 0.01429544\n", + " spam 0.98833333 0.01166667\n", + "\n", + " specifically\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.993333333 0.006666667\n", + "\n", + " specifics\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.998333333 0.001666667\n", + "\n", + " specified\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " specify\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " speckels\n", + "trainSet$label F T\n", + " ham 0.990810075 0.009189925\n", + " spam 1.000000000 0.000000000\n", + "\n", + " specs\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " spectacular\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " specuiative\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " speculative\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98083333 0.01916667\n", + "\n", + " speed\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.985833333 0.014166667\n", + "\n", + " speeds\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " speedway\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " speedy\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " spence\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " spencer\n", + "trainSet$label F T\n", + " ham 0.9911504425 0.0088495575\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " spend\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.992500000 0.007500000\n", + "\n", + " spending\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.995833333 0.004166667\n", + "\n", + " spends\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " spent\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.996666667 0.003333333\n", + "\n", + " sperm\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.990833333 0.009166667\n", + "\n", + " spike\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " spinaker\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " spinnaker\n", + "trainSet$label F T\n", + " ham 0.992852280 0.007147720\n", + " spam 0.998333333 0.001666667\n", + "\n", + " spinner\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " spirit\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.995833333 0.004166667\n", + "\n", + " spite\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " spl\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " split\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 0.995833333 0.004166667\n", + "\n", + " spoke\n", + "trainSet$label F T\n", + " ham 0.9758339006 0.0241660994\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " spoken\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " spokesman\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " sponsor\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.997500000 0.002500000\n", + "\n", + " sponsored\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " sponsors\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.997500000 0.002500000\n", + "\n", + " sport\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " sporting\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " sports\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.995833333 0.004166667\n", + "\n", + " spot\n", + "trainSet$label F T\n", + " ham 0.971749489 0.028250511\n", + " spam 0.994166667 0.005833333\n", + "\n", + " spots\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " spouse\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " sprang\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " spread\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " spreadsheet\n", + "trainSet$label F T\n", + " ham 0.9632403 0.0367597\n", + " spam 1.0000000 0.0000000\n", + "\n", + " spreadsheets\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 1.000000000 0.000000000\n", + "\n", + " spring\n", + "trainSet$label F T\n", + " ham 0.9884275 0.0115725\n", + " spam 0.9975000 0.0025000\n", + "\n", + " springs\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.997500000 0.002500000\n", + "\n", + " spur\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " spyware\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " sql\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9908333333 0.0091666667\n", + "\n", + " square\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.991666667 0.008333333\n", + "\n", + " src\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.985 0.015\n", + "\n", + " srge\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " sri\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " srm\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ssl\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " sta\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " staab\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " stability\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " stablilized\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " stacey\n", + "trainSet$label F T\n", + " ham 0.9734513274 0.0265486726\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " stack\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.998333333 0.001666667\n", + "\n", + " stacy\n", + "trainSet$label F T\n", + " ham 0.9952348536 0.0047651464\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " staff\n", + "trainSet$label F T\n", + " ham 0.98400272 0.01599728\n", + " spam 0.98666667 0.01333333\n", + "\n", + " staffing\n", + "trainSet$label F T\n", + " ham 0.9969366916 0.0030633084\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " stage\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.994166667 0.005833333\n", + "\n", + " stake\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " stakes\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " stalin\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " stamina\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " stan\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " stand\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.987500000 0.012500000\n", + "\n", + " standard\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.982500000 0.017500000\n", + "\n", + " standards\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.996666667 0.003333333\n", + "\n", + " standby\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " standing\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " stands\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.997500000 0.002500000\n", + "\n", + " stanley\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " star\n", + "trainSet$label F T\n", + " ham 0.98332199 0.01667801\n", + " spam 0.99250000 0.00750000\n", + "\n", + " stars\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " start\n", + "trainSet$label F T\n", + " ham 0.96970728 0.03029272\n", + " spam 0.96166667 0.03833333\n", + "\n", + " started\n", + "trainSet$label F T\n", + " ham 0.988087134 0.011912866\n", + " spam 0.990833333 0.009166667\n", + "\n", + " starting\n", + "trainSet$label F T\n", + " ham 0.98332199 0.01667801\n", + " spam 0.98250000 0.01750000\n", + "\n", + " startle\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " starts\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.994166667 0.005833333\n", + "\n", + " startup\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.996666667 0.003333333\n", + "\n", + " state\n", + "trainSet$label F T\n", + " ham 0.98638530 0.01361470\n", + " spam 0.97333333 0.02666667\n", + "\n", + " stated\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.989166667 0.010833333\n", + "\n", + " statement\n", + "trainSet$label F T\n", + " ham 0.9863853 0.0136147\n", + " spam 0.9875000 0.0125000\n", + "\n", + " statements\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.960833333 0.039166667\n", + "\n", + " states\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.953333333 0.046666667\n", + "\n", + " statesmen\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " static\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " stating\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " station\n", + "trainSet$label F T\n", + " ham 0.98910824 0.01089176\n", + " spam 0.99750000 0.00250000\n", + "\n", + " stations\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " status\n", + "trainSet$label F T\n", + " ham 0.981279782 0.018720218\n", + " spam 0.994166667 0.005833333\n", + "\n", + " stay\n", + "trainSet$label F T\n", + " ham 0.986385296 0.013614704\n", + " spam 0.990833333 0.009166667\n", + "\n", + " stayed\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " staying\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.996666667 0.003333333\n", + "\n", + " stays\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.995833333 0.004166667\n", + "\n", + " ste\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " steady\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " steagall\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " steel\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " stella\n", + "trainSet$label F T\n", + " ham 0.989448604 0.010551396\n", + " spam 0.998333333 0.001666667\n", + "\n", + " step\n", + "trainSet$label F T\n", + " ham 0.99285228 0.00714772\n", + " spam 0.98833333 0.01166667\n", + "\n", + " stephanie\n", + "trainSet$label F T\n", + " ham 0.98570456 0.01429544\n", + " spam 0.99750000 0.00250000\n", + "\n", + " stephen\n", + "trainSet$label F T\n", + " ham 0.9894486045 0.0105513955\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " steppe\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " steps\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.995833333 0.004166667\n", + "\n", + " sterling\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.997500000 0.002500000\n", + "\n", + " stern\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " steve\n", + "trainSet$label F T\n", + " ham 0.9523485364 0.0476514636\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " steven\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.998333333 0.001666667\n", + "\n", + " stevens\n", + "trainSet$label F T\n", + " ham 0.9962559564 0.0037440436\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " stewart\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " stick\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " sticker\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " still\n", + "trainSet$label F T\n", + " ham 0.94554118 0.05445882\n", + " spam 0.96166667 0.03833333\n", + "\n", + " stingray\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " stipulate\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " stivers\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 1.000000000 0.000000000\n", + "\n", + " stoc\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " stock\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.945833333 0.054166667\n", + "\n", + " stocks\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.95583333 0.04416667\n", + "\n", + " stokes\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " stomach\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " stone\n", + "trainSet$label F T\n", + " ham 0.969366916 0.030633084\n", + " spam 0.995833333 0.004166667\n", + "\n", + " stones\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " stood\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.994166667 0.005833333\n", + "\n", + " stop\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 0.897500000 0.102500000\n", + "\n", + " stopped\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.997500000 0.002500000\n", + "\n", + " stops\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " storage\n", + "trainSet$label F T\n", + " ham 0.985364193 0.014635807\n", + " spam 0.991666667 0.008333333\n", + "\n", + " store\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.977500000 0.022500000\n", + "\n", + " stores\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.993333333 0.006666667\n", + "\n", + " storey\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " stories\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.993333333 0.006666667\n", + "\n", + " storm\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " story\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.991666667 0.008333333\n", + "\n", + " stoxo\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " str\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " straight\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.991666667 0.008333333\n", + "\n", + " straightening\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " straightforward\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " strange\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " stranger\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 1.000000000 0.000000000\n", + "\n", + " strangers\n", + "trainSet$label F T\n", + " ham 0.98298162 0.01701838\n", + " spam 1.00000000 0.00000000\n", + "\n", + " strap\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " strategic\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.995833333 0.004166667\n", + "\n", + " strategies\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.991666667 0.008333333\n", + "\n", + " strategy\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.985000000 0.015000000\n", + "\n", + " stratified\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " stratton\n", + "trainSet$label F T\n", + " ham 0.9972770592 0.0027229408\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " stream\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.995000000 0.005000000\n", + "\n", + " streaming\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " streamline\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " streams\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " street\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 0.990000000 0.010000000\n", + "\n", + " streets\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " strength\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995000000 0.005000000\n", + "\n", + " strengthen\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " strengths\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " stress\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.994166667 0.005833333\n", + "\n", + " stressed\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " stretch\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.998333333 0.001666667\n", + "\n", + " stretchers\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " strict\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " strictly\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.990000000 0.010000000\n", + "\n", + " strike\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " strip\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " strive\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " stroke\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " strong\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.975000000 0.025000000\n", + "\n", + " stronger\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " strongest\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " strongly\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9925000000 0.0075000000\n", + "\n", + " strongstrongemfont\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " structural\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " structure\n", + "trainSet$label F T\n", + " ham 0.992852280 0.007147720\n", + " spam 0.994166667 0.005833333\n", + "\n", + " structured\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " structuring\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " struggled\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " stuart\n", + "trainSet$label F T\n", + " ham 0.9965963240 0.0034036760\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " stubs\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " stud\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " student\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " students\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.996666667 0.003333333\n", + "\n", + " studies\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " studio\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.985 0.015\n", + "\n", + " study\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.993333333 0.006666667\n", + "\n", + " stuff\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.989166667 0.010833333\n", + "\n", + " stumpage\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " stupid\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " style\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.987500000 0.012500000\n", + "\n", + " sub\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.995833333 0.004166667\n", + "\n", + " subcommittee\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " subject\n", + "trainSet$label F T\n", + " ham 0.61980939 0.38019061\n", + " spam 0.92333333 0.07666667\n", + "\n", + " submission\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " submissions\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " submit\n", + "trainSet$label F T\n", + " ham 0.987066031 0.012933969\n", + " spam 0.995833333 0.004166667\n", + "\n", + " submitted\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 0.998333333 0.001666667\n", + "\n", + " submitting\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " subscribe\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.998333333 0.001666667\n", + "\n", + " subscribed\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " subscriber\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " subscribers\n", + "trainSet$label F T\n", + " ham 1.00 0.00\n", + " spam 0.97 0.03\n", + "\n", + " subscription\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.993333333 0.006666667\n", + "\n", + " subsequent\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " subsequently\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " subsidiaries\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " subsidiary\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " substance\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " substantial\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.993333333 0.006666667\n", + "\n", + " subtotal\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 1.000000000 0.000000000\n", + "\n", + " succeed\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " success\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 0.980000000 0.020000000\n", + "\n", + " successfu\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " successful\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.987500000 0.012500000\n", + "\n", + " successfully\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.995833333 0.004166667\n", + "\n", + " succession\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " sudden\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " sue\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " suemaur\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " suffer\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " suffered\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " suffice\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " sufficient\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " sugar\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99250000 0.00750000\n", + "\n", + " suggest\n", + "trainSet$label F T\n", + " ham 0.986725664 0.013274336\n", + " spam 0.994166667 0.005833333\n", + "\n", + " suggested\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.996666667 0.003333333\n", + "\n", + " suggestion\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " suggestions\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.971666667 0.028333333\n", + "\n", + " suit\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " suite\n", + "trainSet$label F T\n", + " ham 0.97617427 0.02382573\n", + " spam 0.96416667 0.03583333\n", + "\n", + " sukaly\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " sullivan\n", + "trainSet$label F T\n", + " ham 0.990810075 0.009189925\n", + " spam 0.996666667 0.003333333\n", + "\n", + " sum\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9808333333 0.0191666667\n", + "\n", + " summary\n", + "trainSet$label F T\n", + " ham 0.986725664 0.013274336\n", + " spam 0.996666667 0.003333333\n", + "\n", + " summer\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.995000000 0.005000000\n", + "\n", + " sumner\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " sun\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.978333333 0.021666667\n", + "\n", + " sunday\n", + "trainSet$label F T\n", + " ham 0.987746767 0.012253233\n", + " spam 0.995833333 0.004166667\n", + "\n", + " sunny\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " sunrise\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " sunsail\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " suntrust\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " sup\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " super\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.955833333 0.044166667\n", + "\n", + " superb\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " superfast\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " superior\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.995833333 0.004166667\n", + "\n", + " superty\n", + "trainSet$label F T\n", + " ham 0.98400272 0.01599728\n", + " spam 1.00000000 0.00000000\n", + "\n", + " superviagra\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " supervisor\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 1.000000000 0.000000000\n", + "\n", + " supplement\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " supplied\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " supplier\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.994166667 0.005833333\n", + "\n", + " suppliers\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.998333333 0.001666667\n", + "\n", + " supplies\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.991666667 0.008333333\n", + "\n", + " supply\n", + "trainSet$label F T\n", + " ham 0.95234854 0.04765146\n", + " spam 0.98083333 0.01916667\n", + "\n", + " support\n", + "trainSet$label F T\n", + " ham 0.97413206 0.02586794\n", + " spam 0.97083333 0.02916667\n", + "\n", + " supported\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.997500000 0.002500000\n", + "\n", + " supporting\n", + "trainSet$label F T\n", + " ham 0.9976174268 0.0023825732\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " supports\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " suppose\n", + "trainSet$label F T\n", + " ham 0.9976174268 0.0023825732\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " supposed\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 1.000000000 0.000000000\n", + "\n", + " suppresses\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " supra\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " supramax\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " sur\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " sure\n", + "trainSet$label F T\n", + " ham 0.93941457 0.06058543\n", + " spam 0.97666667 0.02333333\n", + "\n", + " surface\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " surfing\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " surge\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " surprise\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " surprised\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " surprisingly\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " survey\n", + "trainSet$label F T\n", + " ham 0.992852280 0.007147720\n", + " spam 0.998333333 0.001666667\n", + "\n", + " surveyed\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " surveys\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " survival\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " survive\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " survivor\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " susan\n", + "trainSet$label F T\n", + " ham 0.9509870660 0.0490129340\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " susie\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " suspect\n", + "trainSet$label F T\n", + " ham 0.9969366916 0.0030633084\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " suspend\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " suspended\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " suspension\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " sustained\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " sutton\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.997500000 0.002500000\n", + "\n", + " suzanne\n", + "trainSet$label F T\n", + " ham 0.990810075 0.009189925\n", + " spam 1.000000000 0.000000000\n", + "\n", + " svajian\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 1.000000000 0.000000000\n", + "\n", + " svcs\n", + "trainSet$label F T\n", + " ham 0.984683458 0.015316542\n", + " spam 0.998333333 0.001666667\n", + "\n", + " swamp\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " swap\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " swarthmore\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " swbell\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " sweeney\n", + "trainSet$label F T\n", + " ham 0.9894486 0.0105514\n", + " spam 1.0000000 0.0000000\n", + "\n", + " sweep\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " sweepstakes\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " sweet\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " sweitzer\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " swiber\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " swift\n", + "trainSet$label F T\n", + " ham 0.989108237 0.010891763\n", + " spam 0.998333333 0.001666667\n", + "\n", + " swing\n", + "trainSet$label F T\n", + " ham 0.97038802 0.02961198\n", + " spam 0.99750000 0.00250000\n", + "\n", + " swings\n", + "trainSet$label F T\n", + " ham 0.9969366916 0.0030633084\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " swinney\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " swisher\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " swiss\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " switch\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " switzerland\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " sybase\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " sylvan\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " sylvia\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.998333333 0.001666667\n", + "\n", + " symbo\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " symbol\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.97583333 0.02416667\n", + "\n", + " syn\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " synthetic\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " syslync\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " system\n", + "trainSet$label F T\n", + " ham 0.93226685 0.06773315\n", + " spam 0.93166667 0.06833333\n", + "\n", + " systems\n", + "trainSet$label F T\n", + " ham 0.98672566 0.01327434\n", + " spam 0.97416667 0.02583333\n", + "\n", + " systemworks\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " szajac\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " tab\n", + "trainSet$label F T\n", + " ham 0.9959155888 0.0040844112\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " table\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.987500000 0.012500000\n", + "\n", + " tablet\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " tablets\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " tabs\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.97166667 0.02833333\n", + "\n", + " tackett\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 1.000000000 0.000000000\n", + "\n", + " tacton\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " tadalafil\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98666667 0.01333333\n", + "\n", + " tag\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9883333333 0.0116666667\n", + "\n", + " tagg\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " tago\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 1.000000000 0.000000000\n", + "\n", + " tags\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " tail\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " tailgate\n", + "trainSet$label F T\n", + " ham 0.98808713 0.01191287\n", + " spam 1.00000000 0.00000000\n", + "\n", + " take\n", + "trainSet$label F T\n", + " ham 0.93533016 0.06466984\n", + " spam 0.89583333 0.10416667\n", + "\n", + " taken\n", + "trainSet$label F T\n", + " ham 0.98468346 0.01531654\n", + " spam 0.98416667 0.01583333\n", + "\n", + " takes\n", + "trainSet$label F T\n", + " ham 0.98638530 0.01361470\n", + " spam 0.98416667 0.01583333\n", + "\n", + " taking\n", + "trainSet$label F T\n", + " ham 0.98298162 0.01701838\n", + " spam 0.97916667 0.02083333\n", + "\n", + " talent\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " talk\n", + "trainSet$label F T\n", + " ham 0.97889721 0.02110279\n", + " spam 0.98666667 0.01333333\n", + "\n", + " talked\n", + "trainSet$label F T\n", + " ham 0.9877467665 0.0122532335\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " talking\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.986666667 0.013333333\n", + "\n", + " tammie\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " tammy\n", + "trainSet$label F T\n", + " ham 0.9921715453 0.0078284547\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " tampon\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " tamu\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " tank\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " tap\n", + "trainSet$label F T\n", + " ham 0.938733833 0.061266167\n", + " spam 0.998333333 0.001666667\n", + "\n", + " tape\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995833333 0.004166667\n", + "\n", + " tapes\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " tara\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.997500000 0.002500000\n", + "\n", + " target\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.975000000 0.025000000\n", + "\n", + " targeted\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.992500000 0.007500000\n", + "\n", + " targeting\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " targets\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " targus\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.97166667 0.02833333\n", + "\n", + " tariff\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " tariffs\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " tasks\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.996666667 0.003333333\n", + "\n", + " taste\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " taught\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " tax\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.980833333 0.019166667\n", + "\n", + " taxes\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.990833333 0.009166667\n", + "\n", + " taylor\n", + "trainSet$label F T\n", + " ham 0.947923758 0.052076242\n", + " spam 0.998333333 0.001666667\n", + "\n", + " tbody\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " tci\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " tdimg\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " tdtd\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " teach\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9925000000 0.0075000000\n", + "\n", + " teacher\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " team\n", + "trainSet$label F T\n", + " ham 0.95881552 0.04118448\n", + " spam 0.98416667 0.01583333\n", + "\n", + " teamlead\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " teamleadership\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " teams\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.997500000 0.002500000\n", + "\n", + " tears\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " tech\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.991666667 0.008333333\n", + "\n", + " techlite\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " technical\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.995000000 0.005000000\n", + "\n", + " technician\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " techniques\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9925000000 0.0075000000\n", + "\n", + " technoiogies\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.990833333 0.009166667\n", + "\n", + " technoiogy\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.991666667 0.008333333\n", + "\n", + " technologies\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.975000000 0.025000000\n", + "\n", + " technology\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.954166667 0.045833333\n", + "\n", + " teco\n", + "trainSet$label F T\n", + " ham 0.92988428 0.07011572\n", + " spam 1.00000000 0.00000000\n", + "\n", + " ted\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " tee\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " teen\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " teenage\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " teenager\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " teens\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " teeth\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " tejas\n", + "trainSet$label F T\n", + " ham 0.98604493 0.01395507\n", + " spam 1.00000000 0.00000000\n", + "\n", + " tejones\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " tel\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.961666667 0.038333333\n", + "\n", + " telecommunications\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " telecoms\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " telephone\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.980000000 0.020000000\n", + "\n", + " telephony\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " television\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.995000000 0.005000000\n", + "\n", + " televisions\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " tell\n", + "trainSet$label F T\n", + " ham 0.98196052 0.01803948\n", + " spam 0.98166667 0.01833333\n", + "\n", + " telling\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " tells\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " temperature\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " template\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " templeton\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " temporarily\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " temporary\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99500000 0.00500000\n", + "\n", + " tempt\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " ten\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.989166667 0.010833333\n", + "\n", + " tenaska\n", + "trainSet$label F T\n", + " ham 0.96187883 0.03812117\n", + " spam 1.00000000 0.00000000\n", + "\n", + " tenn\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " tennessee\n", + "trainSet$label F T\n", + " ham 0.9952348536 0.0047651464\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " tennis\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " tenuate\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " teresa\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " term\n", + "trainSet$label F T\n", + " ham 0.96630361 0.03369639\n", + " spam 0.97583333 0.02416667\n", + "\n", + " termed\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 1.000000000 0.000000000\n", + "\n", + " terminal\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " terminals\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " terminate\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.997500000 0.002500000\n", + "\n", + " terminated\n", + "trainSet$label F T\n", + " ham 0.99149081 0.00850919\n", + " spam 1.00000000 0.00000000\n", + "\n", + " termination\n", + "trainSet$label F T\n", + " ham 0.9908100749 0.0091899251\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " terms\n", + "trainSet$label F T\n", + " ham 0.98842750 0.01157250\n", + " spam 0.96666667 0.03333333\n", + "\n", + " territory\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " terrorism\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " terrorist\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " terry\n", + "trainSet$label F T\n", + " ham 0.98400272 0.01599728\n", + " spam 0.99750000 0.00250000\n", + "\n", + " tess\n", + "trainSet$label F T\n", + " ham 0.9925119129 0.0074880871\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " tessie\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " test\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.987500000 0.012500000\n", + "\n", + " tested\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " tester\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " testimonials\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " testing\n", + "trainSet$label F T\n", + " ham 0.9945541184 0.0054458816\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " tests\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " tetco\n", + "trainSet$label F T\n", + " ham 0.991150442 0.008849558\n", + " spam 1.000000000 0.000000000\n", + "\n", + " tetra\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " tex\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " texaco\n", + "trainSet$label F T\n", + " ham 0.991150442 0.008849558\n", + " spam 0.998333333 0.001666667\n", + "\n", + " texas\n", + "trainSet$label F T\n", + " ham 0.88495575 0.11504425\n", + " spam 0.98916667 0.01083333\n", + "\n", + " texlan\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " texoma\n", + "trainSet$label F T\n", + " ham 0.9894486 0.0105514\n", + " spam 1.0000000 0.0000000\n", + "\n", + " text\n", + "trainSet$label F T\n", + " ham 0.99285228 0.00714772\n", + " spam 0.94833333 0.05166667\n", + "\n", + " textarea\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " tgc\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " tglo\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " tgp\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " thank\n", + "trainSet$label F T\n", + " ham 0.92579986 0.07420014\n", + " spam 0.94666667 0.05333333\n", + "\n", + " thanks\n", + "trainSet$label F T\n", + " ham 0.63002042 0.36997958\n", + " spam 0.94166667 0.05833333\n", + "\n", + " thanksgiving\n", + "trainSet$label F T\n", + " ham 0.9972770592 0.0027229408\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " thatexpress\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " theft\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " thelma\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " theme\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " therapy\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " thereafter\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " thereby\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " therefore\n", + "trainSet$label F T\n", + " ham 0.97651464 0.02348536\n", + " spam 0.98250000 0.01750000\n", + "\n", + " therein\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98416667 0.01583333\n", + "\n", + " thereof\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " theresa\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 1.000000000 0.000000000\n", + "\n", + " theriot\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " theta\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " thick\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " thicket\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " thin\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " thine\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " thing\n", + "trainSet$label F T\n", + " ham 0.990810075 0.009189925\n", + " spam 0.971666667 0.028333333\n", + "\n", + " things\n", + "trainSet$label F T\n", + " ham 0.97685500 0.02314500\n", + " spam 0.97583333 0.02416667\n", + "\n", + " think\n", + "trainSet$label F T\n", + " ham 0.93498979 0.06501021\n", + " spam 0.97333333 0.02666667\n", + "\n", + " thinking\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.997500000 0.002500000\n", + "\n", + " thinks\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.994166667 0.005833333\n", + "\n", + " third\n", + "trainSet$label F T\n", + " ham 0.98876787 0.01123213\n", + " spam 0.95583333 0.04416667\n", + "\n", + " thirty\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99500000 0.00500000\n", + "\n", + " thlt\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " thomas\n", + "trainSet$label F T\n", + " ham 0.97651464 0.02348536\n", + " spam 0.99250000 0.00750000\n", + "\n", + " thompson\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.997500000 0.002500000\n", + "\n", + " thompsonville\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 1.000000000 0.000000000\n", + "\n", + " thorough\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.985000000 0.015000000\n", + "\n", + " thou\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " though\n", + "trainSet$label F T\n", + " ham 0.98196052 0.01803948\n", + " spam 0.98083333 0.01916667\n", + "\n", + " thought\n", + "trainSet$label F T\n", + " ham 0.97481280 0.02518720\n", + " spam 0.98166667 0.01833333\n", + "\n", + " thoughts\n", + "trainSet$label F T\n", + " ham 0.991150442 0.008849558\n", + " spam 0.997500000 0.002500000\n", + "\n", + " thousand\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.960000000 0.040000000\n", + "\n", + " thousands\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9741666667 0.0258333333\n", + "\n", + " thr\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " three\n", + "trainSet$label F T\n", + " ham 0.97617427 0.02382573\n", + " spam 0.96166667 0.03833333\n", + "\n", + " thresa\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " throughout\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.987500000 0.012500000\n", + "\n", + " throughput\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " throw\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99500000 0.00500000\n", + "\n", + " thru\n", + "trainSet$label F T\n", + " ham 0.970728387 0.029271613\n", + " spam 0.996666667 0.003333333\n", + "\n", + " thruway\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " thu\n", + "trainSet$label F T\n", + " ham 0.98774677 0.01225323\n", + " spam 0.99500000 0.00500000\n", + "\n", + " thumb\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " thurs\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " thursday\n", + "trainSet$label F T\n", + " ham 0.954390742 0.045609258\n", + " spam 0.990833333 0.009166667\n", + "\n", + " thus\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.990000000 0.010000000\n", + "\n", + " tick\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " ticker\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " ticket\n", + "trainSet$label F T\n", + " ham 0.91558884 0.08441116\n", + " spam 0.99000000 0.01000000\n", + "\n", + " ticketing\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " tickets\n", + "trainSet$label F T\n", + " ham 0.964601770 0.035398230\n", + " spam 0.998333333 0.001666667\n", + "\n", + " ticnet\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " tie\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.995833333 0.004166667\n", + "\n", + " tied\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.998333333 0.001666667\n", + "\n", + " tier\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.995833333 0.004166667\n", + "\n", + " tiered\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " tiffany\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " tiger\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " tight\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995000000 0.005000000\n", + "\n", + " till\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.991666667 0.008333333\n", + "\n", + " tillison\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " tim\n", + "trainSet$label F T\n", + " ham 0.991150442 0.008849558\n", + " spam 0.998333333 0.001666667\n", + "\n", + " time\n", + "trainSet$label F T\n", + " ham 0.8897209 0.1102791\n", + " spam 0.8191667 0.1808333\n", + "\n", + " timed\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " timeline\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " timelines\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " timely\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.997500000 0.002500000\n", + "\n", + " times\n", + "trainSet$label F T\n", + " ham 0.98536419 0.01463581\n", + " spam 0.97583333 0.02416667\n", + "\n", + " timing\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.984166667 0.015833333\n", + "\n", + " timothy\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " timpowell\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " tina\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.998333333 0.001666667\n", + "\n", + " tion\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " tip\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " tippery\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " tips\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " tired\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9883333333 0.0116666667\n", + "\n", + " tires\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " tirr\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " tisdale\n", + "trainSet$label F T\n", + " ham 0.98264125 0.01735875\n", + " spam 1.00000000 0.00000000\n", + "\n", + " tissue\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " title\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.955000000 0.045000000\n", + "\n", + " titles\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.98083333 0.01916667\n", + "\n", + " tivoli\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " tks\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " tnray\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " tobacco\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " tocks\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " today\n", + "trainSet$label F T\n", + " ham 0.92818244 0.07181756\n", + " spam 0.88500000 0.11500000\n", + "\n", + " todays\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " todd\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 1.000000000 0.000000000\n", + "\n", + " together\n", + "trainSet$label F T\n", + " ham 0.97549353 0.02450647\n", + " spam 0.98583333 0.01416667\n", + "\n", + " togs\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " tol\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " told\n", + "trainSet$label F T\n", + " ham 0.98162015 0.01837985\n", + " spam 0.98916667 0.01083333\n", + "\n", + " toll\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " tom\n", + "trainSet$label F T\n", + " ham 0.9509870660 0.0490129340\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " tomcat\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " tommy\n", + "trainSet$label F T\n", + " ham 0.9965963240 0.0034036760\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " tomorrow\n", + "trainSet$label F T\n", + " ham 0.964601770 0.035398230\n", + " spam 0.996666667 0.003333333\n", + "\n", + " ton\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " tone\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " tongue\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9825000000 0.0175000000\n", + "\n", + " toni\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.998333333 0.001666667\n", + "\n", + " tonight\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.990000000 0.010000000\n", + "\n", + " tonk\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " tons\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " tony\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.996666667 0.003333333\n", + "\n", + " tonya\n", + "trainSet$label F T\n", + " ham 0.9965963240 0.0034036760\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " took\n", + "trainSet$label F T\n", + " ham 0.98672566 0.01327434\n", + " spam 0.98500000 0.01500000\n", + "\n", + " tool\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.990833333 0.009166667\n", + "\n", + " toolbar\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " tools\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.990833333 0.009166667\n", + "\n", + " top\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 0.952500000 0.047500000\n", + "\n", + " topic\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.995833333 0.004166667\n", + "\n", + " topica\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 1.000000000 0.000000000\n", + "\n", + " topics\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.997500000 0.002500000\n", + "\n", + " tor\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " torch\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " tori\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " toronto\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " torrey\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " toshiba\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.97166667 0.02833333\n", + "\n", + " total\n", + "trainSet$label F T\n", + " ham 0.94417971 0.05582029\n", + " spam 0.96166667 0.03833333\n", + "\n", + " totaling\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " totally\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.993333333 0.006666667\n", + "\n", + " totals\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 1.000000000 0.000000000\n", + "\n", + " touch\n", + "trainSet$label F T\n", + " ham 0.992852280 0.007147720\n", + " spam 0.993333333 0.006666667\n", + "\n", + " touched\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.997500000 0.002500000\n", + "\n", + " tough\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " tour\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.995000000 0.005000000\n", + "\n", + " tournament\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " tournaments\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " toward\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.997500000 0.002500000\n", + "\n", + " towards\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.994166667 0.005833333\n", + "\n", + " town\n", + "trainSet$label F T\n", + " ham 0.9925119129 0.0074880871\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " toy\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " tpa\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " trabulsi\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " trace\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " tracing\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " track\n", + "trainSet$label F T\n", + " ham 0.986385296 0.013614704\n", + " spam 0.993333333 0.006666667\n", + "\n", + " tracked\n", + "trainSet$label F T\n", + " ham 0.98230088 0.01769912\n", + " spam 1.00000000 0.00000000\n", + "\n", + " tracker\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " tracking\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.991666667 0.008333333\n", + "\n", + " tracks\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " tracy\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " trade\n", + "trainSet$label F T\n", + " ham 0.97345133 0.02654867\n", + " spam 0.96500000 0.03500000\n", + "\n", + " traded\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.993333333 0.006666667\n", + "\n", + " trademark\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " trademarks\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9700000000 0.0300000000\n", + "\n", + " trader\n", + "trainSet$label F T\n", + " ham 0.98604493 0.01395507\n", + " spam 1.00000000 0.00000000\n", + "\n", + " traders\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 0.995833333 0.004166667\n", + "\n", + " trades\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.998333333 0.001666667\n", + "\n", + " tradestar\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " trading\n", + "trainSet$label F T\n", + " ham 0.96902655 0.03097345\n", + " spam 0.97666667 0.02333333\n", + "\n", + " tradition\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " traditional\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " traffic\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " trail\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " trailer\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " trailers\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " train\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " training\n", + "trainSet$label F T\n", + " ham 0.98774677 0.01225323\n", + " spam 0.99750000 0.00250000\n", + "\n", + " tram\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " tramadol\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " trans\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " transact\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " transacted\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " transaction\n", + "trainSet$label F T\n", + " ham 0.97038802 0.02961198\n", + " spam 0.98250000 0.01750000\n", + "\n", + " transactional\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " transactions\n", + "trainSet$label F T\n", + " ham 0.9874064 0.0125936\n", + " spam 0.9950000 0.0050000\n", + "\n", + " transco\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 1.000000000 0.000000000\n", + "\n", + " transcription\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " transfer\n", + "trainSet$label F T\n", + " ham 0.99285228 0.00714772\n", + " spam 0.97166667 0.02833333\n", + "\n", + " transferred\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " transferring\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " transfers\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " transforming\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " transistion\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " transition\n", + "trainSet$label F T\n", + " ham 0.9853641933 0.0146358067\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " transmission\n", + "trainSet$label F T\n", + " ham 0.99149081 0.00850919\n", + " spam 0.99750000 0.00250000\n", + "\n", + " transmitted\n", + "trainSet$label F T\n", + " ham 0.9965963240 0.0034036760\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " transport\n", + "trainSet$label F T\n", + " ham 0.948264125 0.051735875\n", + " spam 0.993333333 0.006666667\n", + "\n", + " transportation\n", + "trainSet$label F T\n", + " ham 0.98264125 0.01735875\n", + " spam 0.99500000 0.00500000\n", + "\n", + " transported\n", + "trainSet$label F T\n", + " ham 0.9952348536 0.0047651464\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " transports\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " tras\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " travel\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.992500000 0.007500000\n", + "\n", + " traveler\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " travelers\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " traveling\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " travis\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " treasure\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " treasury\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " treat\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " treated\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.989166667 0.010833333\n", + "\n", + " treating\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " treatment\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.978333333 0.021666667\n", + "\n", + " tree\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " trees\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " tremendous\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " trend\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " trends\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " trevino\n", + "trainSet$label F T\n", + " ham 0.9904697073 0.0095302927\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " trey\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 1.000000000 0.000000000\n", + "\n", + " tri\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 0.993333333 0.006666667\n", + "\n", + " trial\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9866666667 0.0133333333\n", + "\n", + " tribute\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " tricia\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " tricks\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " tried\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.980000000 0.020000000\n", + "\n", + " trigger\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " trillion\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " trini\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " trip\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.994166667 0.005833333\n", + "\n", + " triphasil\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " triple\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99500000 0.00500000\n", + "\n", + " trips\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.994166667 0.005833333\n", + "\n", + " trisha\n", + "trainSet$label F T\n", + " ham 0.9942137509 0.0057862491\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " trivia\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " trochta\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " troops\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " trouble\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.995000000 0.005000000\n", + "\n", + " troubles\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " troy\n", + "trainSet$label F T\n", + " ham 0.9863853 0.0136147\n", + " spam 1.0000000 0.0000000\n", + "\n", + " trtd\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " trtrtd\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " truck\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " true\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.986666667 0.013333333\n", + "\n", + " truly\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.992500000 0.007500000\n", + "\n", + " truong\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " truro\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " trust\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.990833333 0.009166667\n", + "\n", + " trusted\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " trustworthy\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " truth\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " try\n", + "trainSet$label F T\n", + " ham 0.97957794 0.02042206\n", + " spam 0.95666667 0.04333333\n", + "\n", + " trying\n", + "trainSet$label F T\n", + " ham 0.97821647 0.02178353\n", + " spam 0.99250000 0.00750000\n", + "\n", + " tsp\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " tsteel\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " tube\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " tudor\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " tue\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.989166667 0.010833333\n", + "\n", + " tues\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " tuesday\n", + "trainSet$label F T\n", + " ham 0.96085773 0.03914227\n", + " spam 0.99000000 0.01000000\n", + "\n", + " tufco\n", + "trainSet$label F T\n", + " ham 0.98706603 0.01293397\n", + " spam 1.00000000 0.00000000\n", + "\n", + " tulsa\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.998333333 0.001666667\n", + "\n", + " tune\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.998333333 0.001666667\n", + "\n", + " tunnels\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " turbine\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " turbotax\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " turkey\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " turn\n", + "trainSet$label F T\n", + " ham 0.990810075 0.009189925\n", + " spam 0.978333333 0.021666667\n", + "\n", + " turnaround\n", + "trainSet$label F T\n", + " ham 0.9962559564 0.0037440436\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " turned\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.990833333 0.009166667\n", + "\n", + " turning\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995000000 0.005000000\n", + "\n", + " turnkey\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " twa\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " twelve\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " twenty\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9866666667 0.0133333333\n", + "\n", + " twice\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.995000000 0.005000000\n", + "\n", + " twit\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " two\n", + "trainSet$label F T\n", + " ham 0.94043567 0.05956433\n", + " spam 0.94083333 0.05916667\n", + "\n", + " txu\n", + "trainSet$label F T\n", + " ham 0.97072839 0.02927161\n", + " spam 1.00000000 0.00000000\n", + "\n", + " tyler\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " type\n", + "trainSet$label F T\n", + " ham 0.97515317 0.02484683\n", + " spam 0.96750000 0.03250000\n", + "\n", + " typed\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " types\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.993333333 0.006666667\n", + "\n", + " typically\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.998333333 0.001666667\n", + "\n", + " uacp\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " uae\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.97333333 0.02666667\n", + "\n", + " uauthorize\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " udve\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " uhc\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " ulead\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " ultimate\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.992500000 0.007500000\n", + "\n", + " ultimately\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " ultram\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " ume\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " unable\n", + "trainSet$label F T\n", + " ham 0.988087134 0.011912866\n", + " spam 0.998333333 0.001666667\n", + "\n", + " unaccounted\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 1.000000000 0.000000000\n", + "\n", + " unassigned\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " unauthorised\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " unauthorized\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.996666667 0.003333333\n", + "\n", + " uncertainties\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9675 0.0325\n", + "\n", + " unchristian\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " unclaimed\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " und\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9933333333 0.0066666667\n", + "\n", + " underground\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " understand\n", + "trainSet$label F T\n", + " ham 0.982981620 0.017018380\n", + " spam 0.994166667 0.005833333\n", + "\n", + " understanding\n", + "trainSet$label F T\n", + " ham 0.98162015 0.01837985\n", + " spam 0.99250000 0.00750000\n", + "\n", + " understands\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.977500000 0.022500000\n", + "\n", + " understood\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.975833333 0.024166667\n", + "\n", + " undertake\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " undervalued\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98166667 0.01833333\n", + "\n", + " underway\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " undiscovered\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " undue\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98833333 0.01166667\n", + "\n", + " une\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " unfinaled\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " unfortunately\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 0.995000000 0.005000000\n", + "\n", + " unheard\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " unify\n", + "trainSet$label F T\n", + " ham 0.96562287 0.03437713\n", + " spam 1.00000000 0.00000000\n", + "\n", + " union\n", + "trainSet$label F T\n", + " ham 0.98264125 0.01735875\n", + " spam 0.99500000 0.00500000\n", + "\n", + " unique\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9733333333 0.0266666667\n", + "\n", + " unit\n", + "trainSet$label F T\n", + " ham 0.982300885 0.017699115\n", + " spam 0.993333333 0.006666667\n", + "\n", + " united\n", + "trainSet$label F T\n", + " ham 0.991150442 0.008849558\n", + " spam 0.964166667 0.035833333\n", + "\n", + " units\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.990833333 0.009166667\n", + "\n", + " universal\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " universitat\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " university\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99250000 0.00750000\n", + "\n", + " unix\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " unknown\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.993333333 0.006666667\n", + "\n", + " unlawful\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " unless\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.990000000 0.010000000\n", + "\n", + " unlike\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " unlimited\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9875000000 0.0125000000\n", + "\n", + " unmetered\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " unnecessary\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " unopened\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " unparalleled\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " unpathed\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " unprecedented\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " unresolved\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " unscrupulous\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " unsere\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " unshipped\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " unsub\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " unsubscribe\n", + "trainSet$label F T\n", + " ham 0.9874064 0.0125936\n", + " spam 0.9550000 0.0450000\n", + "\n", + " unsubscription\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98666667 0.01333333\n", + "\n", + " unsuitable\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " unusual\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " unwanted\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " upcoming\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.995000000 0.005000000\n", + "\n", + " update\n", + "trainSet$label F T\n", + " ham 0.96664398 0.03335602\n", + " spam 0.98166667 0.01833333\n", + "\n", + " updated\n", + "trainSet$label F T\n", + " ham 0.97651464 0.02348536\n", + " spam 0.99000000 0.01000000\n", + "\n", + " updates\n", + "trainSet$label F T\n", + " ham 0.990810075 0.009189925\n", + " spam 0.994166667 0.005833333\n", + "\n", + " updating\n", + "trainSet$label F T\n", + " ham 0.9965963240 0.0034036760\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " upgrade\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.993333333 0.006666667\n", + "\n", + " upgrades\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " upload\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " upon\n", + "trainSet$label F T\n", + " ham 0.98944860 0.01055140\n", + " spam 0.96916667 0.03083333\n", + "\n", + " upper\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " ups\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " upset\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " upsets\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " upstream\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 1.000000000 0.000000000\n", + "\n", + " upto\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " upward\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " upwards\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " ural\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " urbanek\n", + "trainSet$label F T\n", + " ham 0.99285228 0.00714772\n", + " spam 1.00000000 0.00000000\n", + "\n", + " urge\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.991666667 0.008333333\n", + "\n", + " urgent\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.987500000 0.012500000\n", + "\n", + " urgently\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " uribe\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " url\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.991666667 0.008333333\n", + "\n", + " usa\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.960833333 0.039166667\n", + "\n", + " usage\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.991666667 0.008333333\n", + "\n", + " usb\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9900000000 0.0100000000\n", + "\n", + " usd\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.989166667 0.010833333\n", + "\n", + " use\n", + "trainSet$label F T\n", + " ham 0.94622192 0.05377808\n", + " spam 0.90083333 0.09916667\n", + "\n", + " used\n", + "trainSet$label F T\n", + " ham 0.97277059 0.02722941\n", + " spam 0.96166667 0.03833333\n", + "\n", + " useful\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " user\n", + "trainSet$label F T\n", + " ham 0.98978897 0.01021103\n", + " spam 0.98083333 0.01916667\n", + "\n", + " username\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " users\n", + "trainSet$label F T\n", + " ham 0.99149081 0.00850919\n", + " spam 0.98750000 0.01250000\n", + "\n", + " uses\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.991666667 0.008333333\n", + "\n", + " using\n", + "trainSet$label F T\n", + " ham 0.97072839 0.02927161\n", + " spam 0.95500000 0.04500000\n", + "\n", + " usr\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " usual\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.998333333 0.001666667\n", + "\n", + " usually\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.995000000 0.005000000\n", + "\n", + " utah\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " utilities\n", + "trainSet$label F T\n", + " ham 0.9727705922 0.0272294078\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " utility\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.998333333 0.001666667\n", + "\n", + " utilize\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.995833333 0.004166667\n", + "\n", + " utilized\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " utilizes\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " utilizing\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.994166667 0.005833333\n", + "\n", + " utmost\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " uvre\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " vacation\n", + "trainSet$label F T\n", + " ham 0.9850238257 0.0149761743\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " vagra\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " vaiium\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " vaiue\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " val\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " valadez\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 1.000000000 0.000000000\n", + "\n", + " valdes\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " valentin\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " valerie\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " valero\n", + "trainSet$label F T\n", + " ham 0.9894486 0.0105514\n", + " spam 1.0000000 0.0000000\n", + "\n", + " valid\n", + "trainSet$label F T\n", + " ham 0.97515317 0.02484683\n", + " spam 0.99000000 0.01000000\n", + "\n", + " validate\n", + "trainSet$label F T\n", + " ham 0.9982981620 0.0017018380\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " validation\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.998333333 0.001666667\n", + "\n", + " validity\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " valign\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " valium\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.96916667 0.03083333\n", + "\n", + " valley\n", + "trainSet$label F T\n", + " ham 0.971749489 0.028250511\n", + " spam 0.998333333 0.001666667\n", + "\n", + " vallum\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " valtrex\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " valuable\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.991666667 0.008333333\n", + "\n", + " value\n", + "trainSet$label F T\n", + " ham 0.98706603 0.01293397\n", + " spam 0.97833333 0.02166667\n", + "\n", + " valued\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.990000000 0.010000000\n", + "\n", + " values\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.997500000 0.002500000\n", + "\n", + " valve\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 1.000000000 0.000000000\n", + "\n", + " valves\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " valving\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " van\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.997500000 0.002500000\n", + "\n", + " vance\n", + "trainSet$label F T\n", + " ham 0.942477876 0.057522124\n", + " spam 0.998333333 0.001666667\n", + "\n", + " vances\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " vancouver\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " vandenberg\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " vanessa\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " vaniqa\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " var\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " variance\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 1.000000000 0.000000000\n", + "\n", + " variances\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 1.000000000 0.000000000\n", + "\n", + " variety\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.986666667 0.013333333\n", + "\n", + " various\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.980833333 0.019166667\n", + "\n", + " varou\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.991666667 0.008333333\n", + "\n", + " vary\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.995000000 0.005000000\n", + "\n", + " vast\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " vastar\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " vaughn\n", + "trainSet$label F T\n", + " ham 0.9952348536 0.0047651464\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " vcsc\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " vegas\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.985833333 0.014166667\n", + "\n", + " vehicle\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " vela\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " vendor\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " vente\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " venturatos\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 1.000000000 0.000000000\n", + "\n", + " venture\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.991666667 0.008333333\n", + "\n", + " ventures\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.995833333 0.004166667\n", + "\n", + " vera\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " verdana\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " verge\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.985 0.015\n", + "\n", + " verification\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.994166667 0.005833333\n", + "\n", + " verified\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 0.997500000 0.002500000\n", + "\n", + " verify\n", + "trainSet$label F T\n", + " ham 0.981620150 0.018379850\n", + " spam 0.996666667 0.003333333\n", + "\n", + " verizon\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " vernon\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " veronica\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " versen\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " version\n", + "trainSet$label F T\n", + " ham 0.98876787 0.01123213\n", + " spam 0.96750000 0.03250000\n", + "\n", + " versions\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " versionsfeatures\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " versus\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.994166667 0.005833333\n", + "\n", + " vertical\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " vest\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " veterans\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " via\n", + "trainSet$label F T\n", + " ham 0.97515317 0.02484683\n", + " spam 0.93583333 0.06416667\n", + "\n", + " viable\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " viagr\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " viagra\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.93583333 0.06416667\n", + "\n", + " vic\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " vice\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.997500000 0.002500000\n", + "\n", + " vicente\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " vicodin\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98083333 0.01916667\n", + "\n", + " victor\n", + "trainSet$label F T\n", + " ham 0.98230088 0.01769912\n", + " spam 1.00000000 0.00000000\n", + "\n", + " victoria\n", + "trainSet$label F T\n", + " ham 0.989448604 0.010551396\n", + " spam 0.998333333 0.001666667\n", + "\n", + " video\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 0.980833333 0.019166667\n", + "\n", + " videos\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9866666667 0.0133333333\n", + "\n", + " vidor\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " view\n", + "trainSet$label F T\n", + " ham 0.98944860 0.01055140\n", + " spam 0.96083333 0.03916667\n", + "\n", + " viewed\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " viewing\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.997500000 0.002500000\n", + "\n", + " views\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " viewsonic\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.97166667 0.02833333\n", + "\n", + " viiagra\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " viiagrra\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " viicodin\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " vikings\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " village\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " villanueva\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " villarreal\n", + "trainSet$label F T\n", + " ham 0.99012934 0.00987066\n", + " spam 1.00000000 0.00000000\n", + "\n", + " ville\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " viltz\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " vintage\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.997500000 0.002500000\n", + "\n", + " vinyl\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " violence\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " vioxx\n", + "trainSet$label F T\n", + " ham 1.00 0.00\n", + " spam 0.99 0.01\n", + "\n", + " vir\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " virgin\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " virginia\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " virtual\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995833333 0.004166667\n", + "\n", + " virtue\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " virus\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " viruses\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " visa\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " visio\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " vision\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.993333333 0.006666667\n", + "\n", + " visit\n", + "trainSet$label F T\n", + " ham 0.98366236 0.01633764\n", + " spam 0.91333333 0.08666667\n", + "\n", + " visiting\n", + "trainSet$label F T\n", + " ham 0.9972770592 0.0027229408\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " visitors\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " visits\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99000000 0.01000000\n", + "\n", + " visual\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9875000000 0.0125000000\n", + "\n", + " vlagr\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " vlagra\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98416667 0.01583333\n", + "\n", + " vlt\n", + "trainSet$label F T\n", + " ham 0.9683458135 0.0316541865\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " vnf\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 1.000000000 0.000000000\n", + "\n", + " vocalscape\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " voice\n", + "trainSet$label F T\n", + " ham 0.98400272 0.01599728\n", + " spam 0.98166667 0.01833333\n", + "\n", + " voicemail\n", + "trainSet$label F T\n", + " ham 0.9976174268 0.0023825732\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " void\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " voip\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.990833333 0.009166667\n", + "\n", + " vol\n", + "trainSet$label F T\n", + " ham 0.9955752212 0.0044247788\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " volatile\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995833333 0.004166667\n", + "\n", + " volatility\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " vols\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 1.000000000 0.000000000\n", + "\n", + " volume\n", + "trainSet$label F T\n", + " ham 0.86147039 0.13852961\n", + " spam 0.98833333 0.01166667\n", + "\n", + " volumes\n", + "trainSet$label F T\n", + " ham 0.8812117 0.1187883\n", + " spam 1.0000000 0.0000000\n", + "\n", + " volumetric\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " volunteers\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " von\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " vote\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " voted\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " votre\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " vous\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " vuitton\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " vuittonet\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " waco\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " wacog\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " wade\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " wages\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " wagner\n", + "trainSet$label F T\n", + " ham 0.996596324 0.003403676\n", + " spam 1.000000000 0.000000000\n", + "\n", + " wagstaff\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " waha\n", + "trainSet$label F T\n", + " ham 0.9884275 0.0115725\n", + " spam 1.0000000 0.0000000\n", + "\n", + " wait\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 0.981666667 0.018333333\n", + "\n", + " waiting\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 0.978333333 0.021666667\n", + "\n", + " wakey\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " walk\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.997500000 0.002500000\n", + "\n", + " walker\n", + "trainSet$label F T\n", + " ham 0.9850238257 0.0149761743\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " walking\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " wall\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " wallace\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " wallis\n", + "trainSet$label F T\n", + " ham 0.9894486045 0.0105513955\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " walls\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.997500000 0.002500000\n", + "\n", + " wallumrod\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " walt\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " walter\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.998333333 0.001666667\n", + "\n", + " walters\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 1.000000000 0.000000000\n", + "\n", + " walton\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " wamu\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " wanda\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " want\n", + "trainSet$label F T\n", + " ham 0.9128659 0.0871341\n", + " spam 0.8650000 0.1350000\n", + "\n", + " wanted\n", + "trainSet$label F T\n", + " ham 0.97072839 0.02927161\n", + " spam 0.98250000 0.01750000\n", + "\n", + " wanting\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " wants\n", + "trainSet$label F T\n", + " ham 0.98332199 0.01667801\n", + " spam 0.98083333 0.01916667\n", + "\n", + " war\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.98750000 0.01250000\n", + "\n", + " ward\n", + "trainSet$label F T\n", + " ham 0.9945541184 0.0054458816\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " wardle\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " ware\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " warehouse\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " warm\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " warned\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " warner\n", + "trainSet$label F T\n", + " ham 0.9976174268 0.0023825732\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " warning\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.990000000 0.010000000\n", + "\n", + " warranty\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.990833333 0.009166667\n", + "\n", + " washbowl\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " washington\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.998333333 0.001666667\n", + "\n", + " waskom\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " wasn\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 1.000000000 0.000000000\n", + "\n", + " wassup\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " waste\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9916666667 0.0083333333\n", + "\n", + " wastes\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " wasting\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " watch\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 0.950000000 0.050000000\n", + "\n", + " watches\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9875000000 0.0125000000\n", + "\n", + " watching\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.994166667 0.005833333\n", + "\n", + " water\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9925000000 0.0075000000\n", + "\n", + " watson\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.998333333 0.001666667\n", + "\n", + " watts\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " wave\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " wavefront\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " way\n", + "trainSet$label F T\n", + " ham 0.96119809 0.03880191\n", + " spam 0.94166667 0.05833333\n", + "\n", + " waymark\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " wayne\n", + "trainSet$label F T\n", + " ham 0.993533016 0.006466984\n", + " spam 0.998333333 0.001666667\n", + "\n", + " ways\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.995833333 0.004166667\n", + "\n", + " wealth\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995833333 0.004166667\n", + "\n", + " weapons\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " wear\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " wearing\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " weather\n", + "trainSet$label F T\n", + " ham 0.993873383 0.006126617\n", + " spam 0.997500000 0.002500000\n", + "\n", + " weatherstone\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " weaver\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " web\n", + "trainSet$label F T\n", + " ham 0.97923758 0.02076242\n", + " spam 0.96833333 0.03166667\n", + "\n", + " webb\n", + "trainSet$label F T\n", + " ham 0.9969366916 0.0030633084\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " webcam\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " webmaster\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " website\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 0.966666667 0.033333333\n", + "\n", + " websites\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.98083333 0.01916667\n", + "\n", + " wed\n", + "trainSet$label F T\n", + " ham 0.993192648 0.006807352\n", + " spam 0.989166667 0.010833333\n", + "\n", + " wedding\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " wedelmusic\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " wednesday\n", + "trainSet$label F T\n", + " ham 0.96732471 0.03267529\n", + " spam 0.99250000 0.00750000\n", + "\n", + " week\n", + "trainSet$label F T\n", + " ham 0.93533016 0.06466984\n", + " spam 0.95583333 0.04416667\n", + "\n", + " weekend\n", + "trainSet$label F T\n", + " ham 0.98230088 0.01769912\n", + " spam 0.97666667 0.02333333\n", + "\n", + " weekends\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " weekly\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.995000000 0.005000000\n", + "\n", + " weeks\n", + "trainSet$label F T\n", + " ham 0.98264125 0.01735875\n", + " spam 0.98083333 0.01916667\n", + "\n", + " wehner\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " wei\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " weight\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9625000000 0.0375000000\n", + "\n", + " weightloss\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " weil\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " wein\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " weir\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " weissman\n", + "trainSet$label F T\n", + " ham 0.98025868 0.01974132\n", + " spam 1.00000000 0.00000000\n", + "\n", + " wel\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " welcome\n", + "trainSet$label F T\n", + " ham 0.990810075 0.009189925\n", + " spam 0.990000000 0.010000000\n", + "\n", + " well\n", + "trainSet$label F T\n", + " ham 0.93601089 0.06398911\n", + " spam 0.94500000 0.05500000\n", + "\n", + " wellbore\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " wellbutrin\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " wellhead\n", + "trainSet$label F T\n", + " ham 0.95813479 0.04186521\n", + " spam 1.00000000 0.00000000\n", + "\n", + " wellheads\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " wells\n", + "trainSet$label F T\n", + " ham 0.991490810 0.008509190\n", + " spam 0.993333333 0.006666667\n", + "\n", + " wendy\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " went\n", + "trainSet$label F T\n", + " ham 0.98502383 0.01497617\n", + " spam 0.98750000 0.01250000\n", + "\n", + " wes\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " wesley\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " west\n", + "trainSet$label F T\n", + " ham 0.990469707 0.009530293\n", + " spam 0.990833333 0.009166667\n", + "\n", + " wester\n", + "trainSet$label F T\n", + " ham 0.995234854 0.004765146\n", + " spam 1.000000000 0.000000000\n", + "\n", + " western\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.994166667 0.005833333\n", + "\n", + " westex\n", + "trainSet$label F\n", + " ham 1\n", + " spam 1\n", + "\n", + " westminster\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " westmoreland\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 1.000000000 0.000000000\n", + "\n", + " wet\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " wgr\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.998333333 0.001666667\n", + "\n", + " whalley\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " whatever\n", + "trainSet$label F T\n", + " ham 0.992171545 0.007828455\n", + " spam 0.992500000 0.007500000\n", + "\n", + " whatsoever\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " wheeler\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " whenever\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.995833333 0.004166667\n", + "\n", + " whereby\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " whether\n", + "trainSet$label F T\n", + " ham 0.986725664 0.013274336\n", + " spam 0.990833333 0.009166667\n", + "\n", + " whihc\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " white\n", + "trainSet$label F T\n", + " ham 0.98876787 0.01123213\n", + " spam 0.98083333 0.01916667\n", + "\n", + " whiteboard\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " whitehead\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " whiting\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 1.000000000 0.000000000\n", + "\n", + " whoever\n", + "trainSet$label F T\n", + " ham 0.9979577944 0.0020422056\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " whole\n", + "trainSet$label F T\n", + " ham 0.98604493 0.01395507\n", + " spam 0.98833333 0.01166667\n", + "\n", + " wholesale\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.993333333 0.006666667\n", + "\n", + " wholly\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.996666667 0.003333333\n", + "\n", + " whomever\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 1.000000000 0.000000000\n", + "\n", + " whose\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.991666667 0.008333333\n", + "\n", + " wide\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.960000000 0.040000000\n", + "\n", + " widely\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " widget\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " width\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98833333 0.01166667\n", + "\n", + " wiesepape\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " wife\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.975833333 0.024166667\n", + "\n", + " wifi\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " wiggins\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " wiil\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98583333 0.01416667\n", + "\n", + " wil\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9883333333 0.0116666667\n", + "\n", + " wild\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.98583333 0.01416667\n", + "\n", + " wildest\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " wildfire\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " will\n", + "trainSet$label F T\n", + " ham 0.6361470 0.3638530\n", + " spam 0.7891667 0.2108333\n", + "\n", + " william\n", + "trainSet$label F T\n", + " ham 0.983321988 0.016678012\n", + " spam 0.998333333 0.001666667\n", + "\n", + " williams\n", + "trainSet$label F T\n", + " ham 0.98434309 0.01565691\n", + " spam 0.99750000 0.00250000\n", + "\n", + " williamson\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " willie\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " willing\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.991666667 0.008333333\n", + "\n", + " willingness\n", + "trainSet$label F T\n", + " ham 0.9986385296 0.0013614704\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " wilma\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " wilson\n", + "trainSet$label F T\n", + " ham 0.992511913 0.007488087\n", + " spam 0.997500000 0.002500000\n", + "\n", + " wimberley\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " win\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.990833333 0.009166667\n", + "\n", + " wind\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.992500000 0.007500000\n", + "\n", + " window\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.992500000 0.007500000\n", + "\n", + " windows\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.952500000 0.047500000\n", + "\n", + " windowxp\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " wine\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " winfree\n", + "trainSet$label F T\n", + " ham 0.9884275 0.0115725\n", + " spam 1.0000000 0.0000000\n", + "\n", + " wing\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " wink\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " winn\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " winner\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.995833333 0.004166667\n", + "\n", + " winners\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.992500000 0.007500000\n", + "\n", + " winning\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.991666667 0.008333333\n", + "\n", + " winnings\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " wins\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " winston\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " winter\n", + "trainSet$label F T\n", + " ham 0.995575221 0.004424779\n", + " spam 0.996666667 0.003333333\n", + "\n", + " wiped\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " wir\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " wire\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.991666667 0.008333333\n", + "\n", + " wired\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " wireless\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9891666667 0.0108333333\n", + "\n", + " wisdom\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " wise\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.996666667 0.003333333\n", + "\n", + " wish\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 0.941666667 0.058333333\n", + "\n", + " wishes\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " wit\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " witer\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " withdrawal\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.997500000 0.002500000\n", + "\n", + " withdrawl\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " withers\n", + "trainSet$label F T\n", + " ham 0.98502383 0.01497617\n", + " spam 1.00000000 0.00000000\n", + "\n", + " within\n", + "trainSet$label F T\n", + " ham 0.97311096 0.02688904\n", + " spam 0.93166667 0.06833333\n", + "\n", + " without\n", + "trainSet$label F T\n", + " ham 0.97515317 0.02484683\n", + " spam 0.91000000 0.09000000\n", + "\n", + " wives\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " wiz\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " wizard\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " wkd\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " wlndows\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " woman\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.985000000 0.015000000\n", + "\n", + " wombat\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " women\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.96833333 0.03166667\n", + "\n", + " won\n", + "trainSet$label F T\n", + " ham 0.991150442 0.008849558\n", + " spam 0.977500000 0.022500000\n", + "\n", + " wonder\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " wonderful\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 0.995833333 0.004166667\n", + "\n", + " wondering\n", + "trainSet$label F T\n", + " ham 0.9962559564 0.0037440436\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " wont\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " wood\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99750000 0.00250000\n", + "\n", + " woodland\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " woodlands\n", + "trainSet$label F T\n", + " ham 0.997617427 0.002382573\n", + " spam 1.000000000 0.000000000\n", + "\n", + " woods\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " woodward\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " woodworking\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " wor\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " word\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 0.981666667 0.018333333\n", + "\n", + " words\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.973333333 0.026666667\n", + "\n", + " worid\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " work\n", + "trainSet$label F T\n", + " ham 0.93975494 0.06024506\n", + " spam 0.95166667 0.04833333\n", + "\n", + " workday\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " worked\n", + "trainSet$label F T\n", + " ham 0.989108237 0.010891763\n", + " spam 0.994166667 0.005833333\n", + "\n", + " workers\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " working\n", + "trainSet$label F T\n", + " ham 0.97140912 0.02859088\n", + " spam 0.97916667 0.02083333\n", + "\n", + " works\n", + "trainSet$label F T\n", + " ham 0.98672566 0.01327434\n", + " spam 0.93166667 0.06833333\n", + "\n", + " worksheet\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 1.000000000 0.000000000\n", + "\n", + " worksheets\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " workshop\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " workspace\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " workstation\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " world\n", + "trainSet$label F T\n", + " ham 0.99012934 0.00987066\n", + " spam 0.92000000 0.08000000\n", + "\n", + " worldnet\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " worlds\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " worldwide\n", + "trainSet$label F T\n", + " ham 0.995915589 0.004084411\n", + " spam 0.958333333 0.041666667\n", + "\n", + " worried\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " worry\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 0.99250000 0.00750000\n", + "\n", + " worse\n", + "trainSet$label F T\n", + " ham 0.997277059 0.002722941\n", + " spam 0.995833333 0.004166667\n", + "\n", + " worst\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 0.9983333333 0.0016666667\n", + "\n", + " worth\n", + "trainSet$label F T\n", + " ham 0.994554118 0.005445882\n", + " spam 0.977500000 0.022500000\n", + "\n", + " wouid\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.993333333 0.006666667\n", + "\n", + " wouldn\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " wounded\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " wounding\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " wow\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " wowgao\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " wright\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 0.997500000 0.002500000\n", + "\n", + " wrinkles\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " write\n", + "trainSet$label F T\n", + " ham 0.98672566 0.01327434\n", + " spam 0.97916667 0.02083333\n", + "\n", + " writeoff\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 1.000000000 0.000000000\n", + "\n", + " writing\n", + "trainSet$label F T\n", + " ham 0.998638530 0.001361470\n", + " spam 0.994166667 0.005833333\n", + "\n", + " written\n", + "trainSet$label F T\n", + " ham 0.996255956 0.003744044\n", + " spam 0.989166667 0.010833333\n", + "\n", + " wrong\n", + "trainSet$label F T\n", + " ham 0.989788972 0.010211028\n", + " spam 0.994166667 0.005833333\n", + "\n", + " wrongfu\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " wrongfuily\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " wrongfully\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " wrote\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.995833333 0.004166667\n", + "\n", + " www\n", + "trainSet$label F T\n", + " ham 0.97072839 0.02927161\n", + " spam 0.82500000 0.17500000\n", + "\n", + " wxga\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " wyndham\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " wynne\n", + "trainSet$label F T\n", + " ham 0.96732471 0.03267529\n", + " spam 1.00000000 0.00000000\n", + "\n", + " wyoming\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " wysak\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " wysk\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " xan\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " xanaax\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " xanax\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.96666667 0.03333333\n", + "\n", + " xenical\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " xenlcal\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " xga\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " xil\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " xls\n", + "trainSet$label F T\n", + " ham 0.8590878 0.1409122\n", + " spam 1.0000000 0.0000000\n", + "\n", + " xms\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " xph\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " xpress\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.994166667 0.005833333\n", + "\n", + " xual\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " yahoo\n", + "trainSet$label F T\n", + " ham 0.994894486 0.005105514\n", + " spam 0.969166667 0.030833333\n", + "\n", + " yankee\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " yanowski\n", + "trainSet$label F T\n", + " ham 0.997957794 0.002042206\n", + " spam 1.000000000 0.000000000\n", + "\n", + " yap\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " yard\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " yards\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " yasser\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " yates\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 1.000000000 0.000000000\n", + "\n", + " yea\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " yeah\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " year\n", + "trainSet$label F T\n", + " ham 0.96051736 0.03948264\n", + " spam 0.93500000 0.06500000\n", + "\n", + " yearly\n", + "trainSet$label F T\n", + " ham 0.9989788972 0.0010211028\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " years\n", + "trainSet$label F T\n", + " ham 0.9874064 0.0125936\n", + " spam 0.9575000 0.0425000\n", + "\n", + " yellow\n", + "trainSet$label F T\n", + " ham 0.998298162 0.001701838\n", + " spam 0.996666667 0.003333333\n", + "\n", + " yes\n", + "trainSet$label F T\n", + " ham 0.98740640 0.01259360\n", + " spam 0.98583333 0.01416667\n", + "\n", + " yesterday\n", + "trainSet$label F T\n", + " ham 0.984683458 0.015316542\n", + " spam 0.994166667 0.005833333\n", + "\n", + " yet\n", + "trainSet$label F T\n", + " ham 0.97243022 0.02756978\n", + " spam 0.98333333 0.01666667\n", + "\n", + " yield\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " yokel\n", + "trainSet$label F T\n", + " ham 1.0000000000 0.0000000000\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " yore\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " york\n", + "trainSet$label F T\n", + " ham 0.996936692 0.003063308\n", + " spam 0.992500000 0.007500000\n", + "\n", + " young\n", + "trainSet$label F T\n", + " ham 0.97685500 0.02314500\n", + " spam 0.98166667 0.01833333\n", + "\n", + " younger\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9950000000 0.0050000000\n", + "\n", + " yourseif\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " youth\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9941666667 0.0058333333\n", + "\n", + " ypi\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " ypil\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.995833333 0.004166667\n", + "\n", + " yrs\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9966666667 0.0033333333\n", + "\n", + " yunis\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " yvette\n", + "trainSet$label F T\n", + " ham 0.989788972 0.010211028\n", + " spam 0.998333333 0.001666667\n", + "\n", + " zajac\n", + "trainSet$label F T\n", + " ham 0.994213751 0.005786249\n", + " spam 1.000000000 0.000000000\n", + "\n", + " zanaflex\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " zap\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " zapata\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 1.000000000 0.000000000\n", + "\n", + " zbaqooqk\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.998333333 0.001666667\n", + "\n", + " zealand\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9958333333 0.0041666667\n", + "\n", + " zebutal\n", + "trainSet$label F T\n", + " ham 1.000 0.000\n", + " spam 0.995 0.005\n", + "\n", + " zenith\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9925 0.0075\n", + "\n", + " zero\n", + "trainSet$label F T\n", + " ham 0.966303608 0.033696392\n", + " spam 0.995833333 0.004166667\n", + "\n", + " zeroed\n", + "trainSet$label F T\n", + " ham 0.991831178 0.008168822\n", + " spam 1.000000000 0.000000000\n", + "\n", + " zeroes\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9991666667 0.0008333333\n", + "\n", + " zimbabwe\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " zinc\n", + "trainSet$label F T\n", + " ham 0.9996596324 0.0003403676\n", + " spam 0.9975000000 0.0025000000\n", + "\n", + " zipper\n", + "trainSet$label F T\n", + " ham 0.9993192648 0.0006807352\n", + " spam 1.0000000000 0.0000000000\n", + "\n", + " zisman\n", + "trainSet$label F T\n", + " ham 0.99863853 0.00136147\n", + " spam 1.00000000 0.00000000\n", + "\n", + " zivley\n", + "trainSet$label F T\n", + " ham 0.98910824 0.01089176\n", + " spam 1.00000000 0.00000000\n", + "\n", + " zoloft\n", + "trainSet$label F T\n", + " ham 1.000000000 0.000000000\n", + " spam 0.996666667 0.003333333\n", + "\n", + " zone\n", + "trainSet$label F T\n", + " ham 0.98774677 0.01225323\n", + " spam 0.96583333 0.03416667\n", + "\n", + " zonedubai\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.97416667 0.02583333\n", + "\n", + " zones\n", + "trainSet$label F T\n", + " ham 0.998978897 0.001021103\n", + " spam 0.995833333 0.004166667\n", + "\n", + " zwallet\n", + "trainSet$label F T\n", + " ham 1.0000 0.0000\n", + " spam 0.9975 0.0025\n", + "\n", + " zyban\n", + "trainSet$label F T\n", + " ham 1.00000000 0.00000000\n", + " spam 0.98666667 0.01333333\n" + ] + }, + "metadata": {} + } + ] + }, + { + "cell_type": "markdown", + "source": [ + "Now we test our model:" + ], + "metadata": { + "id": "lhjA1B6EQY_J" + } + }, + { + "cell_type": "code", + "source": [ + "testPredictMsgLabel <- predict(NBbasedSpamFilter, myDTMTestNew,) # predict labels for test cases" + ], + "metadata": { + "id": "M_YaCKNeJ2PJ" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "Let's check the confusion matrix. Notice we get an accuracy of ~90%!" + ], + "metadata": { + "id": "3hsu_AYoOAeo" + } + }, + { + "cell_type": "code", + "source": [ + "confusionMatrix(testPredictMsgLabel, as.factor(testSet$label), positive = \"spam\") # Print confusion matrix" + ], + "metadata": { + "id": "35-HE9dIOCuo", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 499 + }, + "outputId": "dc811378-8cbd-4440-c268-6ccc7b66fe79" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": [ + "Confusion Matrix and Statistics\n", + "\n", + " Reference\n", + "Prediction ham spam\n", + " ham 701 60\n", + " spam 33 239\n", + " \n", + " Accuracy : 0.91 \n", + " 95% CI : (0.8908, 0.9267)\n", + " No Information Rate : 0.7106 \n", + " P-Value [Acc > NIR] : < 2.2e-16 \n", + " \n", + " Kappa : 0.7751 \n", + " \n", + " Mcnemar's Test P-Value : 0.007016 \n", + " \n", + " Sensitivity : 0.7993 \n", + " Specificity : 0.9550 \n", + " Pos Pred Value : 0.8787 \n", + " Neg Pred Value : 0.9212 \n", + " Prevalence : 0.2894 \n", + " Detection Rate : 0.2314 \n", + " Detection Prevalence : 0.2633 \n", + " Balanced Accuracy : 0.8772 \n", + " \n", + " 'Positive' Class : spam \n", + " " + ] + }, + "metadata": {} + } + ] + }, + { + "cell_type": "markdown", + "source": [ + "In addition, we can save our model into a `.rds` file so that we can use it or deploy it later on an IDS server" + ], + "metadata": { + "id": "Otp-JMC65hTW" + } + }, + { + "cell_type": "code", + "source": [ + "saveRDS(NBbasedSpamFilter, \"./final_NbbasedSpamFilter.rds\")" + ], + "metadata": { + "id": "xvBM3xLj5vqn" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "## Doing the Bayesian Infection" + ], + "metadata": { + "id": "F5et0am0xnWV" + } + }, + { + "cell_type": "markdown", + "source": [ + "To bypass the spam filter, we need to **poison** the test data! First, we randomly select non-spam messages are amended at the end of the spam messages in our test data set." + ], + "metadata": { + "id": "BWK71_h36ChL" + } + }, + { + "cell_type": "code", + "source": [ + "spamTestCases <- subset(testSet,label==\"spam\") # select spams in test cases\n", + "hamTestCases <- subset(testSet, label==\"ham\") # select ham in test cases\n", + "hamMsgInmyData<-subset(myData, label==\"ham\") # select ham in our original dataset\n", + "hamMsg2ammend<-hamMsgInmyData[sample(nrow(hamMsgInmyData), nrow(spamTestCases)),]\n", + "# select number of ham messages equal to the spam messages in test cases\n", + "spamTestCases$text <-paste(spamTestCases$text,hamMsg2ammend$text,sep = \" \") # amend selected ham at the end of spams in test cases\n", + "poisTestData<-rbind(hamTestCases,spamTestCases) # create the poisoned test set\n", + "myData[-tr_index,]<-poisTestData # replace the test entries in original dataset with poisoned test cases" + ], + "metadata": { + "id": "q1yYaT8m6ebS" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "Now, we create the new DTM with poisoned data and select high frequency words:" + ], + "metadata": { + "id": "jRAS72-S7qLw" + } + }, + { + "cell_type": "code", + "source": [ + "myCorpusPoisoned <- VCorpus(VectorSource(myData$text))\n", + "myDTMPoisoned <- DocumentTermMatrix(myCorpusPoisoned, control = list(tolower=T,\n", + "removeNumbers=T,\n", + "removePunctuation=T,\n", + "stopwords = T,\n", + "stem=T))\n", + "freqWords <- findFreqTerms(myDTMPoisoned,5)\n", + "myDTMPoisoned <- myDTMPoisoned[,freqWords]\n", + "myDTMTestPoisoned <- myDTMPoisoned[-tr_index,] # new test set, note that we don't need a training set as we use the same model created above\n", + "myDTMTestNewPoisoned <- apply(myDTMTestPoisoned, MARGIN = 2, convert_counts) # Using the same convert_counts function, we code our poisoned test DTM as above." + ], + "metadata": { + "id": "bA_Z75RH7tbD" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "Finally, we try again to predict labels, but now for the poisoned test cases." + ], + "metadata": { + "id": "kYi74QWe8Fex" + } + }, + { + "cell_type": "code", + "source": [ + "poisonedTestPredictMsgLabel <- predict(NBbasedSpamFilter, myDTMTestNewPoisoned)\n", + "confusionMatrix(poisonedTestPredictMsgLabel, as.factor(testSet$label), positive = \"spam\") # Print confusion matrix for poisoned data" + ], + "metadata": { + "id": "yLAk5Beo8FOZ", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 499 + }, + "outputId": "f7b51c09-93a0-4ddc-b980-03d48bd28819" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": [ + "Confusion Matrix and Statistics\n", + "\n", + " Reference\n", + "Prediction ham spam\n", + " ham 640 249\n", + " spam 94 50\n", + " \n", + " Accuracy : 0.668 \n", + " 95% CI : (0.6383, 0.6966)\n", + " No Information Rate : 0.7106 \n", + " P-Value [Acc > NIR] : 0.9987 \n", + " \n", + " Kappa : 0.0463 \n", + " \n", + " Mcnemar's Test P-Value : <2e-16 \n", + " \n", + " Sensitivity : 0.1672 \n", + " Specificity : 0.8719 \n", + " Pos Pred Value : 0.3472 \n", + " Neg Pred Value : 0.7199 \n", + " Prevalence : 0.2894 \n", + " Detection Rate : 0.0484 \n", + " Detection Prevalence : 0.1394 \n", + " Balanced Accuracy : 0.5196 \n", + " \n", + " 'Positive' Class : spam \n", + " " + ] + }, + "metadata": {} + } + ] + }, + { + "cell_type": "markdown", + "source": [ + "As you can see in the confusion matrix, classifications of spam as ham (false negatives) increase in the poisoned test cases. Now our accuracy sits at ~66%!" + ], + "metadata": { + "id": "Zt8Io1DC8Rdh" + } + } + ] +} \ No newline at end of file From 2360fe4c0428770419eff3b71b0e91970c3b1704 Mon Sep 17 00:00:00 2001 From: C M-G <43293156+carlosfmorenog@users.noreply.github.com> Date: Mon, 25 Mar 2024 21:44:49 +0000 Subject: [PATCH 04/12] Delete CMM536_T9_2_Lab.ipynb --- CMM536_Topic_9/CMM536_T9_2_Lab.ipynb | 45662 ------------------------- 1 file changed, 45662 deletions(-) delete mode 100644 CMM536_Topic_9/CMM536_T9_2_Lab.ipynb diff --git a/CMM536_Topic_9/CMM536_T9_2_Lab.ipynb b/CMM536_Topic_9/CMM536_T9_2_Lab.ipynb deleted file mode 100644 index 6d0a5fc..0000000 --- a/CMM536_Topic_9/CMM536_T9_2_Lab.ipynb +++ /dev/null @@ -1,45662 +0,0 @@ -{ - "nbformat": 4, - "nbformat_minor": 0, - "metadata": { - "colab": { - "provenance": [], - "authorship_tag": "ABX9TyMbgjJ49ITMB+4Iun3wqCK5", - "include_colab_link": true - }, - "kernelspec": { - "name": "ir", - "display_name": "R" - }, - "language_info": { - "name": "R" - } - }, - "cells": [ - { - "cell_type": "markdown", - "metadata": { - "id": "view-in-github", - "colab_type": "text" - }, - "source": [ - "\"Open" - ] - }, - { - "cell_type": "markdown", - "source": [ - "# CMM536 Topic 9.2 Lab: Bayesian Poisoning in R" - ], - "metadata": { - "id": "-Psq7K4bIBGl" - } - }, - { - "cell_type": "markdown", - "source": [ - "**PRO TIP**: To generate a Colab Notebook that runs in R, just click https://colab.to/r and a new notebook will appear!" - ], - "metadata": { - "id": "rrcMyUEBJkpM" - } - }, - { - "cell_type": "markdown", - "source": [ - "The purpose of this activity is to demonstrate that the Naïve Bayes (NB) classifier is vulnerable to Bayesian poisoning attacks. Bayesian poisoning is a technique used by email spammers to compromise the effectiveness of Bayesian spam filters by adding non-spamming (ham) words to the end of a spam message." - ], - "metadata": { - "id": "Z80rE0LHIBCz" - } - }, - { - "cell_type": "code", - "source": [ - "# Installing the necessary packages (it takes a loooong time)\n", - "install.packages(\"wordcloud\")\n", - "install.packages(\"tm\")\n", - "install.packages(\"caret\")\n", - "install.packages(\"e1071\")\n", - "\n", - "# Loading the necessary packages\n", - "library(wordcloud)\n", - "library(tm)\n", - "library(caret)\n", - "library(e1071)" - ], - "metadata": { - "id": "pOkdv4_WM3hH", - "colab": { - "base_uri": "https://localhost:8080/" - }, - "outputId": "4ab8be6a-b756-4bde-f7bb-ca24a6d09a75" - }, - "execution_count": null, - "outputs": [ - { - "output_type": "stream", - "name": "stderr", - "text": [ - "Installing package into ‘/usr/local/lib/R/site-library’\n", - "(as ‘lib’ is unspecified)\n", - "\n", - "also installing the dependency ‘Rcpp’\n", - "\n", - "\n", - "Installing package into ‘/usr/local/lib/R/site-library’\n", - "(as ‘lib’ is unspecified)\n", - "\n", - "also installing the dependencies ‘NLP’, ‘slam’, ‘BH’\n", - "\n", - "\n", - "Installing package into ‘/usr/local/lib/R/site-library’\n", - "(as ‘lib’ is unspecified)\n", - "\n", - "also installing the dependencies ‘listenv’, ‘parallelly’, ‘future’, ‘globals’, ‘shape’, ‘future.apply’, ‘numDeriv’, ‘progressr’, ‘SQUAREM’, ‘diagram’, ‘lava’, ‘prodlim’, ‘proxy’, ‘iterators’, ‘clock’, ‘gower’, ‘hardhat’, ‘ipred’, ‘timeDate’, ‘e1071’, ‘foreach’, ‘ModelMetrics’, ‘plyr’, ‘pROC’, ‘recipes’, ‘reshape2’\n", - "\n", - "\n", - "Installing package into ‘/usr/local/lib/R/site-library’\n", - "(as ‘lib’ is unspecified)\n", - "\n", - "Loading required package: RColorBrewer\n", - "\n", - "Loading required package: NLP\n", - "\n", - "Loading required package: ggplot2\n", - "\n", - "\n", - "Attaching package: ‘ggplot2’\n", - "\n", - "\n", - "The following object is masked from ‘package:NLP’:\n", - "\n", - " annotate\n", - "\n", - "\n", - "Loading required package: lattice\n", - "\n" - ] - } - ] - }, - { - "cell_type": "markdown", - "source": [ - "## Training and Testing the Bayesian Spam Filter" - ], - "metadata": { - "id": "-tgcXbzbIxqh" - } - }, - { - "cell_type": "markdown", - "source": [ - "First, we will train a Bayesian based spam filter using raw email messages downloaded from https://www.kaggle.com/venky73/spam-mails-dataset. If you are working locally in your computer, use the link to download `spam_ham_dataset.csv` and store it in the same directory as your R code/notebook. Otherwise, we will load it from my Dropbox account." - ], - "metadata": { - "id": "_KvwSvOAI1S1" - } - }, - { - "cell_type": "markdown", - "source": [ - "Once you have done this, run the following cell to load the dataset into the R environment. You can see it has $5171$ mails and $4$ columns (X, label, text and label_num)" - ], - "metadata": { - "id": "QM4967SJK72B" - } - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "id": "RRm2SY_gHMY1", - "colab": { - "base_uri": "https://localhost:8080/", - "height": 1000 - }, - "outputId": "f90f674c-3749-4efa-8001-abae7693c52e" - }, - "outputs": [ - { - "output_type": "display_data", - "data": { - "text/html": [ - "\n", - "\n", - "\n", - "\t\n", - "\t\n", - "\n", - "\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\n", - "
A data.frame: 5171 × 4
Xlabeltextlabel_num
<int><chr><chr><int>
605ham Subject: enron methanol ; meter # : 988291\n", - "this is a follow up to the note i gave you on monday , 4 / 3 / 00 { preliminary\n", - "flow data provided by daren } .\n", - "please override pop ' s daily volume { presently zero } to reflect daily\n", - "activity you can obtain from gas control .\n", - "this change is needed asap for economics purposes . 0
2349ham Subject: hpl nom for january 9 , 2001\n", - "( see attached file : hplnol 09 . xls )\n", - "- hplnol 09 . xls 0
3624ham Subject: neon retreat\n", - "ho ho ho , we ' re around to that most wonderful time of the year - - - neon leaders retreat time !\n", - "i know that this time of year is extremely hectic , and that it ' s tough to think about anything past the holidays , but life does go on past the week of december 25 through january 1 , and that ' s what i ' d like you to think about for a minute .\n", - "on the calender that i handed out at the beginning of the fall semester , the retreat was scheduled for the weekend of january 5 - 6 . but because of a youth ministers conference that brad and dustin are connected with that week , we ' re going to change the date to the following weekend , january 12 - 13 . now comes the part you need to think about .\n", - "i think we all agree that it ' s important for us to get together and have some time to recharge our batteries before we get to far into the spring semester , but it can be a lot of trouble and difficult for us to get away without kids , etc . so , brad came up with a potential alternative for how we can get together on that weekend , and then you can let me know which you prefer .\n", - "the first option would be to have a retreat similar to what we ' ve done the past several years . this year we could go to the heartland country inn ( www . . com ) outside of brenham . it ' s a nice place , where we ' d have a 13 - bedroom and a 5 - bedroom house side by side . it ' s in the country , real relaxing , but also close to brenham and only about one hour and 15 minutes from here . we can golf , shop in the antique and craft stores in brenham , eat dinner together at the ranch , and spend time with each other . we ' d meet on saturday , and then return on sunday morning , just like what we ' ve done in the past .\n", - "the second option would be to stay here in houston , have dinner together at a nice restaurant , and then have dessert and a time for visiting and recharging at one of our homes on that saturday evening . this might be easier , but the trade off would be that we wouldn ' t have as much time together . i ' ll let you decide .\n", - "email me back with what would be your preference , and of course if you ' re available on that weekend . the democratic process will prevail - - majority vote will rule ! let me hear from you as soon as possible , preferably by the end of the weekend . and if the vote doesn ' t go your way , no complaining allowed ( like i tend to do ! )\n", - "have a great weekend , great golf , great fishing , great shopping , or whatever makes you happy !\n", - "bobby 0
4685spamSubject: photoshop , windows , office . cheap . main trending\n", - "abasements darer prudently fortuitous undergone\n", - "lighthearted charm orinoco taster\n", - "railroad affluent pornographic cuvier\n", - "irvin parkhouse blameworthy chlorophyll\n", - "robed diagrammatic fogarty clears bayda\n", - "inconveniencing managing represented smartness hashish\n", - "academies shareholders unload badness\n", - "danielson pure caffein\n", - "spaniard chargeable levin\n", - " 1
2030ham Subject: re : indian springs\n", - "this deal is to book the teco pvr revenue . it is my understanding that teco\n", - "just sends us a check , i haven ' t received an answer as to whether there is a\n", - "predermined price associated with this deal or if teco just lets us know what\n", - "we are giving . i can continue to chase this deal down if you need . 0
2949ham Subject: ehronline web address change\n", - "this message is intended for ehronline users only .\n", - "due to a recent change to ehronline , the url ( aka \" web address \" ) for accessing ehronline needs to be changed on your computer . the change involves adding the letter \" s \" to the \" http \" reference in the url . the url for accessing ehronline should be : https : / / ehronline . enron . com .\n", - "this change should be made by those who have added the url as a favorite on the browser . 0
2793ham Subject: spring savings certificate - take 30 % off\n", - "save 30 % when you use our customer appreciation spring savings\n", - "certificate at foot locker , lady foot locker , kids foot locker and at\n", - "our online stores !\n", - "welcome to our customer appreciation spring savings certificate !\n", - "use the special certificate below and receive 30 % off your purchases either in our stores or online . hurry ! this 4 - day sale begins thursday , march 22 and ends sunday , march 25 .\n", - "share the savings today and e - mail this offer to your friends . many items already are reduced and the 30 % discount is taken off the lowest sale price .\n", - "click below to print your customer appreciation spring savings certificate . you must present this coupon at any foot locker , lady foot locker or kids foot locker store in the u . s . foot locker canada is not participating in this program .\n", - "ready , set , save !\n", - "our spring savings discount will automatically appear when you use the links below or type camlem 21 into the promotion code box during checkout .\n", - "footlocker . com certificate code : camlem 21\n", - "ladyfootlocker . com certificate code : camlem 21\n", - "kidsfootlocker . com certificate code : camlem 21\n", - "remember , returns are hassle - free . simply bring your items to any of our stores nationwide or through the mail .\n", - "don ' t be left out - register today to learn about our new products , promotions , events and other specials . simply click below .\n", - "terms and conditions . some exclusions apply , please see manager for complete details . certificate must be presented at the time of purchase and cannot be used in conjunction with any other discount offer or associate benefit . not redeemable for cash . applicable taxes must be paid by bearer . cannot be applied to prior purchases or to gift card purchases . void where prohibited , licensed or regulated . catalog exclusions apply . valid thursday , 3 / 22 / 01 through sunday , 3 / 25 / 01 . foot locker canada will not participate in this program .\n", - "if you do not wish to receive future emails please click below to\n", - "unsubscribe :\n", - " 0
4185spamSubject: looking for medication ? we ` re the best source .\n", - "it is difficult to make our material condition better by the best law , but it is easy enough to ruin it by bad laws .\n", - "excuse me . . . : ) you just found the\n", - "best and simpliest site for\n", - "medication on the net . no perscription , easy\n", - "delivery .\n", - "private , secure , and easy .\n", - "better see rightly on a pound a week than squint on a million .\n", - "we ` ve got\n", - "anything that you will ever want .\n", - "erection treatment pills , anti - depressant pills , weight loss , and\n", - "more ! http : / / splicings . bombahakcx . com / 3 /\n", - "knowledge and human power are synonymous .\n", - "only high - quality stuff for low rates !\n", - "100 % moneyback guarantee !\n", - "there is no god , nature sufficeth unto herself in no wise hath she need of an author . 1
2641ham Subject: noms / actual flow for 2 / 26\n", - "we agree\n", - "- - - - - - - - - - - - - - - - - - - - - - forwarded by melissa jones / texas utilities on\n", - "02 / 27 / 2001\n", - "10 : 33 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", - "\" eileen ponton \" on 02 / 27 / 2001 09 : 46 : 26 am\n", - "to : david avila / lsp / enserch / us @ tu , charlie stone / texas utilities @ tu , melissa\n", - "jones / texas utilities @ tu , hpl . scheduling @ enron . com ,\n", - "liz . bellamy @ enron . com\n", - "cc :\n", - "subject : noms / actual flow for 2 / 26\n", - "date nom flow - mcf flow - mmbtu\n", - "2 / 26 / 01 0 456 469\n", - "btu = 1 . 027 0
1870ham Subject: nominations for oct . 21 - 23 , 2000\n", - "( see attached file : hplnl 021 . xls )\n", - "- hplnl 021 . xls 0
4922spamSubject: vocable % rnd - word asceticism\n", - "vcsc - brand new stock for your attention\n", - "vocalscape inc - the stock symbol is : vcsc\n", - "vcsc will be our top stock pick for the month of april - stock expected to\n", - "bounce to 12 cents level\n", - "the stock hit its all time low and will bounce back\n", - "stock is going to explode in next 5 days - watch it soar\n", - "watch the stock go crazy this and next week .\n", - "breaking news - vocalscape inc . announces agreement to resell mix network\n", - "services\n", - "current price : $ 0 . 025\n", - "we expect projected speculative price in next 5 days : $ 0 . 12\n", - "we expect projected speculative price in next 15 days : $ 0 . 15\n", - "vocalscape networks inc . is building a company that ' s revolutionizing the\n", - "telecommunications industry with the most affordable phone systems , hardware ,\n", - "online software , and rates in canada and the us . vocalscape , a company with\n", - "global reach , is receiving international attention for the development of voice\n", - "over ip ( voip ) application solutions , including the award - winning eyefontm , a\n", - "softphone for real - time pc - to - phone . we are an advanced implementer of pbx\n", - "systems for companies , call centers , itsps and service providers .\n", - "vocalscape has created software and interactive solutions revolving around\n", - "global communications and data voice convergence . companies use vocalscape for\n", - "voice over internet protocol applications like ip pbxs , softswitches , pc 2 phone\n", - "and web 2 phone , providing real - time human interaction and information delivery\n", - "over the internet . through vocalscape ' s solutions , businesses can offer a\n", - "quality voice service to anywhere in the world at rates that are significantly\n", - "lower than current long distance charges . we develop software to run voip\n", - "networks , and sell , install and service our own branded voip gateways and\n", - "gatekeeper control software . we also license our software to customers who want\n", - "to brand their own voip solutions .\n", - "vocalscape is committed to making great technology ; challenging the status quo ,\n", - "and building a 21 st century company that changes the way businesses communicate\n", - "and interact through the internet .\n", - "current price : $ 0 . 025\n", - "we expect projected speculative price in next 5 days : $ 0 . 12\n", - "we expect projected speculative price in next 15 days : $ 0 . 15\n", - "breaking news - vocalscape inc . announces agreement to resell mix network\n", - "services\n", - "- - - - - - - - - -\n", - "katonah , n . y . , / prnewswire - firstcall via comtex / - - vocalscape , inc . pink : vcsc ) ,\n", - "an emerging leader in the development of voice over internet protocol ( voip )\n", - "telephony solutions , announced today it has entered into a sales agent agreement\n", - "with mix networks , inc . a voip enhanced telephony service provider .\n", - "this agreement provides vocalscape ' s turnkey calling card customers with access\n", - "to mix networks services including north american dids ( phone numbers ) and\n", - "domestic long distance termination . vocalscape will also be able to supply their\n", - "clients with enhanced voip products including pre - paid calling through mix\n", - "networks north american network .\n", - "we are excited to help companies launch voip business models using our solution\n", - "with the whole picture from the software to the network needed to route the\n", - "calls . mix networks gives us the ability to offer wholesale monthly flat rate\n", - "plans and dids to our clients that allow for us to build business models like\n", - "popular voip companies such as vonage and packet 8 , says ryan gibson , vp\n", - "vocalscape networks\n", - "some legal words before you continue :\n", - "information within this email contains forward looking statements within the\n", - "meaning of section 27 a of the securities act of 1933 and section 21 b of the\n", - "securities exchange act of 1934 . any statements that express or involve\n", - "discussions with respect to predictions , goals , expectations , beliefs , plans ,\n", - "projections , objectives , assumptions or future events or performance are not\n", - "statements of historical fact and may be forward looking statements . forward\n", - "looking statements are based on expectations , estimates and projections at the\n", - "time the statements are made that involve a number of risks and uncertainties\n", - "which could cause actual results or events to differ materially from those\n", - "presently anticipated . forward looking statements in this action may be\n", - "identified through the use of words such as : projects , foresee , expects ,\n", - "estimates , believes , understands will , part of : anticipates , or that\n", - "by statements indicating certain actions may , could , or might occur . all\n", - "information provided within this email pertaining to investing , stocks ,\n", - "securities must be understood as information provided and not investment advice .\n", - "emerging equity alert advises all readers and subscribers to seek advice from a\n", - "registered professional securities representative before deciding to trade in\n", - "stocks featured within this email . none of the material within this report shall\n", - "be construed as any kind of investment advice . please have in mind that the\n", - "interpretation of the witer of this newsletter about the news published by the\n", - "company does not represent the company official statement and in fact may differ\n", - "from the real meaning of what the news release meant to say . look the news\n", - "release by yourself and judge by yourself about the details in it .\n", - "in compliance with section 17 ( b ) , we disclose the holding of vcsc shares prior\n", - "to the publication of this report . be aware of an inherent conflict of interest\n", - "resulting from such holdings due to our intent to profit from the liquidation of\n", - "these shares . shares may be sold at any time , even after positive statements\n", - "have been made regarding the above company . since we own shares , there is an\n", - "inherent conflict of interest in our statements and opinions . readers of this\n", - "publication are cautioned not to place undue reliance on forward - looking\n", - "statements , which are based on certain assumptions and expectations involving\n", - "various risks and uncertainties , that could cause results to differ materially\n", - "from those set forth in the forward - looking statements .\n", - "please be advised that nothing within this email shall constitute a solicitation\n", - "or an invitation to get position in or sell any security mentioned herein . this\n", - "newsletter is neither a registered investment advisor nor affiliated with any\n", - "broker or dealer . this newsletter was paid $ 49000 from third party to send this\n", - "report . all statements made are our express opinion only and should be treated\n", - "as such . we may own , take position and sell any securities mentioned at any\n", - "time . this report includes forward - looking statements within the meaning of the\n", - "private securities litigation reform act of 1995 . these statements may include\n", - "terms as projected speculative price expect , believe , may , will ,\n", - "soar move , undervalued and intend or similar terms .\n", - " 1
3799spamSubject: report 01405 !\n", - "wffur attion brom est inst siupied 1 pgst our riwe asently rest .\n", - "tont to presyou tew cons of benco 4 . yee : fater 45 y . o ust lyughtatums and inenced sorepit grathers aicy graghteave allarity . oarity wow to yur coons , as were then 60 ve mers of oite .\n", - "ithat yoit ? ! berst thar ! enth excives 2004 . . .\n", - " 1
1488ham Subject: enron / hpl actuals for august 28 , 2000\n", - "teco tap 20 . 000 / enron ; 120 . 000 / hpl gas daily\n", - "ls hpl lsk ic 20 . 000 / enron 0
3948spamSubject: vic . odin n ^ ow\n", - "berne hotbox carnal bride cutworm dyadic\n", - "guardia continuous born gremlin akin counterflow hereafter vocabularian pessimum yaounde cannel bitch penetrate demagogue arbitrary egregious adenosine rubin gil luminosity delicti yarmulke sauterne selfadjoint agleam exeter picofarad consulate dichotomous boyhood balfour spheric frey pillory hoosier fibonacci cat handful\n", - " 1
3418ham Subject: tenaska iv july\n", - "darren :\n", - "please remove the price on the tenaska iv sale , deal 384258 , for july and enter the demand fee . the amount should be $ 3 , 902 , 687 . 50 .\n", - "thanks ,\n", - "megan 0
4791spamSubject: underpriced issue with high return on equity\n", - "stock report .\n", - "dont sieep on this stock ! this is a hot one !\n", - "company : gaming transactions inc .\n", - "stock symbol : ggts\n", - "currentiy trading at : o . 30\n", - "rating : strong purchase\n", - "near - term target : 0 . 45\n", - "long - term target : 1 . oo\n", - "breaking news for ggts :\n", - "gaming transactions inc . ( ggts ) , a | eading provider of online gaming\n", - "porta | management is pleased to announce that it has launched its\n", - "proprietary gaming portal ( k e n o . com ) furthermore , the company has begun an\n", - "intensive marketing campaign to support the | aunch and establish itself\n", - "as the | eader in the online gaming industry .\n", - "( k e n o . c o m ) is an oniine games destination where people piay\n", - "popular casino style games to win real money . the foundation of the site is\n", - "an online version of keno . the game of keno uses 80 balls numbered 1\n", - "thru 8 o . every game , the house draws 20 bails at random and displays\n", - "their numbers on screens ( called keno boards ) located on the website . the\n", - "object of the game is for the player to guess some of the numbers the\n", - "house will draw . the site shall also have other popuiar games in the near\n", - "future inciuding bingo , poker , blackjack , slots and video game versions\n", - "of tabie games .\n", - "patrick smyth , ceo of gaming transactions inc . , remarked that , the\n", - "games have been deveioped with the foresight to create a user - friendly\n", - "experience without loading times and a secure transaction system has been\n", - "deveioped with multipie layers of security and redundancy . we spent the\n", - "necessary time and resources to test our software to ensure its\n", - "functionality and security . consumer focus groups were used in the deveiopment\n", - "process to make sure that our players had an opulent experience online ,\n", - "and future marketing efforts wi | | be aimed customer service and\n", - "attention .\n", - "about the company :\n", - "gaming transactions inc . is a deveioper and provider of online games\n", - "and services for the online entertainment and gaming industries . the\n", - "company ! s centra | licensed games portal , ( k e n o . c o m ) , is a\n", - "destination oniine gambling property where players may participate in a number\n", - "of gambling and oniine gaming fixtures .\n", - "the foundation of the site is of course an online version of keno . the\n", - "game of keno uses 8 o bails numbered 1 thru 80 . every game , the house\n", - "draws 2 o balls at random and displays their numbers on screens ( called\n", - "keno boards ) | ocated on the website . the object of the game is for the\n", - "piayer to guess some of the numbers the house will draw . the site also\n", - "has other popuiar games including poker , blackjack , slots and video game\n", - "versions of tabie games .\n", - "gaming transactions inc . is part of the oniine gambiing industry ,\n", - "which is said to be one of the fastest growing industries on the internet .\n", - "! ' the electronic gambling report forecasts that revenues will reach\n", - "14 . 5 biliion by 2006 ! ( market statistics : - informa media grp . giobal\n", - "revenues from oniine gambiing wi | | reach 14 . 52 bi | | ion in 20 o 6 , up from\n", - "3 . 81 biilion this year . this is according to a report from the informa\n", - "media grp . , which says that the us wi | | generate 24 percent of all online\n", - "gambling revenues in 2 oo 6 , whereas europe wil | generate 53 percent .\n", - "north american oniine gambling revenues are expected to reach 1 . 99 biliion\n", - "this year and 3 . 85 bi | | ion in 2 oo 6 . in europe , revenues wil | grow from\n", - "1 . 29 billion this year to 7 . 64 biilion in 2 oo 6 . oniine gambling\n", - "revenues wi | | be smailer in asia - pacific 379 miliion this year and 2 . 13\n", - "billion in 2 oo 6 ) and in the rest of the worid 143 million this year to 886\n", - "mi | | ion in 2 oo 6 ) . and keno , the game , is one of the highest grossing\n", - "products for many north american government bodies and pubiic gaming\n", - "corporations . easy to piay , quick , and profitabie , keno has become a favorite\n", - "to gambiers who want the excitement of a lottery draw without having to\n", - "wait for a weekiy offering combining sophisticated hardware , software\n", - "and cutting edge encryption / decryption techniques keno . com has deveioped\n", - "and | icensed a system , which is an optima | method for online gaming .\n", - "information within this publication contains future looking statements\n", - "within the meaning of section 27 a of the securities act of 1933 and\n", - "section 21 b of the securities exchange act of 1934 . any statements that\n", - "express or involve discussions with respect to predictions ,\n", - "expectations , beliefs , pians , projections , objectives , goals , assumptions or future\n", - "events or performance are not statements of historica | fact and may be\n", - "future looking statements . future | ooking statements are based on\n", - "expectations , estimates and projections at the time the statements are made\n", - "that involve a number of risks and uncertainties which couid cause\n", - "actual results or events to differ materia | | y from those presently\n", - "anticipated . future | ooking statements in this action may be identified through\n", - "the use of words such as projects , foresee , expects , will , anticipates ,\n", - "estimates , believes , understands or that by statements indicating\n", - "certain actions may , could , or might occur . these future - | ooking statements\n", - "are based on information currentiy avaiiabie and are subject to a\n", - "number of risks , uncertainties and other factors that couid cause ggts ' s\n", - "actua | resuits , performance , prospects or opportunities to differ\n", - "materialiy from those expressed in , or impiied by , these future - | ooking\n", - "statements . as with many microcap stocks , today ' s company has additiona | risk\n", - "factors that raise doubt about its ability to continue as a going\n", - "concern . ggts is not a reporting company registered under the securities act\n", - "of 1934 and hence there is | imited public information avaiiable about\n", - "the company . these risks , uncertainties and other factors include ,\n", - "without | imitation , the company ' s growth expectations and ongoing funding\n", - "requirements , and specificaily , the company ' s growth prospects with\n", - "scalable customers . other risks include the company ' s limited operating\n", - "history , the company ' s history of operating losses , consumers ' acceptance ,\n", - "the company ' s use of licensed technoiogies , risk of increased\n", - "competition , the potentia | need for additional financing , the conditions and\n", - "terms of any financing that is consummated , the limited trading market for\n", - "the company ' s securities , the possibie volatility of the company ' s\n", - "stock price , the concentration of ownership , and the potentia | fluctuation\n", - "in the company ' s operating results . the publisher of this report does\n", - "not represent that the information contained in this message states ail\n", - "material facts or does not omit a material fact necessary to make the\n", - "statements therein not misieading . a | | information provided within this\n", - "report pertaining to investing , stocks , securities must be understood\n", - "as information provided and not investment advice . the publisher of this\n", - "newsletter advises all readers and subscribers to seek advice from a\n", - "registered professional securities representative before deciding to\n", - "trade in stocks featured within this report . none of the materia | within\n", - "this report shall be construed as any kind of investment advice or\n", - "solicitation . many of these companies are on the verge of bankruptcy . you can\n", - "lose al | your money by investing in this stock . the pubiisher of this\n", - "report is not a registered investment expert . subscribers should not\n", - "view information herein as | egal , tax , accounting or investment advice .\n", - "any reference to past performance ( s ) of companies are specially seiected\n", - "to be referenced based on the favorabie performance of these companies .\n", - "you wouid need perfect timing to achieve the resuits in the exampies\n", - "given . there can be no assurance of that happening . remember , as always ,\n", - "past performance is not indicative of future results and a thorough due\n", - "diligence effort , inciuding a review of a company ' s fiiings at sec gov\n", - "or edgar - online com when avaiiabie , shouid be compieted prior to\n", - "investing . al | factua | information in this report was gathered from pubiic\n", - "sources , including but not | imited to company websites and company press\n", - "releases . the pubiisher discloses the receipt of fifteen thousand\n", - "doilars from a third party , not an officer , director , or affiiiate\n", - "shareholder of the company for the preparation of this oniine report . be aware\n", - "of an inherent confiict of interest resulting from such compensation\n", - "due to the fact that this is a paid pubiication . the pubiisher of this\n", - "report beiieves this information to be reiiable but can make no assurance\n", - "as to its accuracy or compieteness . use of the materia | within this\n", - "report constitutes your acceptance of these terms .\n", - "if you wish to stop future maiiings , or if you feel you have been\n", - "wrongfuliy placed in our membership , piease go here or send a biank\n", - "e mai | with no thanks in the subject to ( - stoxo 042 @ yahoo . com - )\n", - "1
2643ham Subject: re : first delivery - wheeler operating\n", - "vance ,\n", - "deal # 643714 has been created and entered in sitara .\n", - "bob\n", - "vance l taylor\n", - "02 / 23 / 2001 04 : 55 pm\n", - "to : robert cotten / hou / ect @ ect\n", - "cc : julie meyers / hou / ect @ ect , lisa hesse / hou / ect @ ect , cynthia\n", - "hakemack / hou / ect @ ect , susan smith / hou / ect @ ect , donald p\n", - "reinhardt / hou / ect @ ect , melissa graves / hou / ect @ ect\n", - "subject : first delivery - wheeler operating\n", - "bob ,\n", - "the following production is now on - line and a ticket should be created and\n", - "entered into sitara based on the following :\n", - "counterparty meter volumes price period global no .\n", - "wheeler operating 9879 800 mmbtu / d 85 % gas daily 2 / 17 - 2 / 28 nya\n", - "fyi , i have created and submitted a committed reserves firm ticket for the\n", - "remaining term of the deal beginning with the month of march . additionally ,\n", - "this is a producer svcs . deal and should be tracked in the im wellhead\n", - "portfolio . . . attached to the gathering contract .\n", - "thanks ,\n", - "vlt\n", - "x 3 - 6353\n", - "- - - - - - - - - - - - - - - - - - - - - - forwarded by vance l taylor / hou / ect on 02 / 23 / 2001\n", - "04 : 21 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", - "from : esther buckley 02 / 22 / 2001 10 : 39 am\n", - "to : molly l carriere / hou / ect @ ect , clem cernosek / hou / ect @ ect , donna\n", - "consemiu / hou / ect @ ect , robert cook / hou / ect @ ect , howard b camp / hou / ect @ ect ,\n", - "lisa hesse / hou / ect @ ect , nathan l hlavaty / hou / ect @ ect , wayne e\n", - "lightfoot / hou / ect , james mckay / hou / ect @ ect , mary m smith / hou / ect @ ect , steve\n", - "hpl schneider / hou / ect @ ect , melissa graves / hou / ect @ ect , michael\n", - "walters / hou / ect @ ect , jill t zivley / hou / ect @ ect , mary jo johnson / hou / ees @ ees ,\n", - "rita wynne / hou / ect @ ect , lauri a allen / hou / ect @ ect , cheryl\n", - "jones / gpgfin / enron @ enron , reid hansen / gco / enron @ enron , darron c\n", - "giron / hou / ect @ ect , o ' neal d winfree / hou / ect @ ect , susan smith / hou / ect @ ect ,\n", - "gary bryan / hou / ect @ ect , gary a hanks / hou / ect @ ect , donald p\n", - "reinhardt / hou / ect @ ect , vance l taylor / hou / ect @ ect , david\n", - "baumbach / hou / ect @ ect , robert cotten / hou / ect @ ect , brian m riley / hou / ect @ ect ,\n", - "jeff a austin / hou / ees @ ees , cynthia hakemack / hou / ect @ ect , dawn c\n", - "kenne / hou / ect @ ect , lisa csikos / hou / ect @ ect , j r fosdick / gco / enron @ enron ,\n", - "carlos j rodriguez / hou / ect @ ect , stephanie gomes / hou / ect @ ect , pat\n", - "clynes / corp / enron @ enron , tom acton / corp / enron @ enron , robert\n", - "walker / hou / ect @ ect , george weissman / hou / ect @ ect , joanne\n", - "harris / na / enron @ enron , christy sweeney / hou / ect @ ect , earl tisdale / hou / ect @ ect ,\n", - "daren j farmer / hou / ect @ ect\n", - "cc :\n", - "subject : first delivery - wheeler operating\n", - "please see attached letter 0
3137ham Subject: swift - may 2001 vols\n", - "sean ,\n", - "fyi , check the purchase from swift at the tailgate ( meter 9643 ) and make sure to nom the correct quantity .\n", - "mary\n", - "- - - - - - - - - - - - - - - - - - - - - - forwarded by mary poorman / na / enron on 04 / 26 / 2001 07 : 09 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", - "from : joan quick / enron @ enronxgate on 04 / 25 / 2001 06 : 13 pm\n", - "to : carlos j rodriguez / hou / ect @ ect , mary poorman / na / enron @ enron , jackie young / hou / ect @ ect\n", - "cc : brian m riley / hou / ect @ ect , mike morris / corp / enron @ enron\n", - "subject : swift - may 2001 vols\n", - "here is the may first of the month nom :\n", - "king ranch plant 6 , 400 mmbtu / d 0
1629ham Subject: meter variances - ua 4 clean - up\n", - "daren / vance -\n", - "the two meters below are new and have unallocatable flow . . . . . . . i will need a\n", - "purchase for each of them . please respond with a deal number , or further\n", - "suggestions for resolution so that i can clear this up as soon as possible .\n", - "mary\n", - "enron on 09 / 19 / 2000 08 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", - "katherine benedict @ ect\n", - "09 / 18 / 2000 04 : 53 pm\n", - "to : mary poorman / na / enron @ enron , fred boas / hou / ect @ ect , aimee\n", - "lannou / hou / ect @ ect\n", - "cc :\n", - "subject : meter variances - ua 4 clean - up\n", - "hi guys ,\n", - "please take a look at the following meters which are showing up with\n", - "variances on my ua 4 report . once the variance has been cleared , please send\n", - "me an e - mail . please try to clear these within the next couple of days .\n", - "thanks ,\n", - "kathy benedict\n", - "meter number : 9851\n", - "variance : 11 , 204\n", - "meter type : daily swing\n", - "production month : august 2000\n", - "logistics contact : none\n", - "volume mgmt contact : anita luong\n", - "meter number : 9852\n", - "variance 568\n", - "meter type : daily swing\n", - "production month : august 2000\n", - "logistics contact : none\n", - "volume mgmt contact : anita luong 0
1858ham Subject: additional recruiting\n", - "i ' m happy to introduce molly magee as the newest addition to the eops\n", - "recruiting team . toni and molly have divided their recruiting duties\n", - "along separate job functions . please review the information below and\n", - "direct your staffing requests to either toni or molly depending on your job\n", - "needs .\n", - "toni graham - accounting , risk and confirmation / settlements positions ( or\n", - "openings requiring a similar skill set of this candidate pool )\n", - "molly magee - logistics , global data management , research , legal , competitive\n", - "analysis , contract administration and other positions ( or openings requiring\n", - "a similar skill set of this candidate pool )\n", - "thanks for your assistance ,\n", - "hgm 0
3261ham Subject: fw : ercot load comparison\n", - "- - - - - original message - - - - -\n", - "from : gilbert - smith , doug\n", - "sent : tuesday , may 22 , 2001 8 : 38 am\n", - "to : tmartin @ enron . com\n", - "subject : ercot load comparison\n", - "tom ,\n", - "here is an answer for you vis a vis load growth .\n", - "hope it helps ,\n", - "doug\n", - "- - - - - - - - - - - - - - - - - - - - - - forwarded by doug gilbert - smith / corp / enron on 05 / 22 / 2001 08 : 35 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", - "from : kevin cline / enron @ enronxgate on 05 / 21 / 2001 03 : 26 pm\n", - "to : doug gilbert - smith / corp / enron @ enron\n", - "cc : eric saibi / corp / enron @ enron\n", - "subject : ercot load comparison\n", - "please find attached spreadsheet that compares hot days from may 2000 and may 2001 . there are two tabs , one tab contains the days may 16 - 18 , 2000 and the other tab contains the days may 14 - 18 , 2001 . each tab contains both the load data and temp data particular to the days in question . the days most directly comparable are may 17 , 2001 ( thursday ) and may 18 , 2000 ( thursday ) , although the two days preceding may 18 , 2000 were slightly warmer than the two days preceding may 17 , 2001 . the peak on 5 / 17 / 2001 , 44 , 923 mw , is 2 . 78 % higher than the peak on 5 / 18 / 2000 , 43 , 709 mw . with similarly warm days before 5 / 17 / 2001 as there were before 5 / 18 / 2000 , the peak would obviously have been even higher . this would put the year - over - year growth in excess of 3 % . i believe this falls right in line with the growth rate year - over - year from an earlier analysis , somewhere in the range of 3 . 5 % to 4 % .\n", - "let me know if you have any questions or comments . 0
3447ham Subject: meter 6461 , concorde churchill\n", - "one year rate for this one will be $ . 35 / mm for volumes greater than 300 mm / day . price for volumes 300 mm / day or less will be $ . 45 / mm plus a $ 350 per month metering fee . this rate would cover transport to a competitive ship channel market such as equistar channelview . transport rates for a 6 month term are not significantly different - $ . 33 / mm for volumes greater than 300 mm / day and $ . 42 / mm plus the metering fee for volumes 300 mm / day or less . these rates assume a september 1 , 2001 start . these rates good until friday , august 31 , 2001 only ! ! ! get ' em while they ' re hot ! ! 0
2459ham Subject: hpl nom for january 25 , 2001\n", - "( see attached file : hplnol 26 . xls )\n", - "- hplnol 26 . xls 0
2221ham Subject: re : tenaska iv 10 / 00\n", - "we have received all of the money from the spot sales for tenaska iv in\n", - "october 2000 , except for the tenaska iv sale and the $ 0 . 04 fee .\n", - "megan 0
4827spamSubject: jump in to gain substantial ground immediately\n", - "we are very excited about this new upcoming stock about to explode\n", - "montana oil and gas , inc . ( mogi ) to explore further opportunities in alberta\n", - "canada , is an energy deveioper in canada ' s most highiy coveted\n", - "reservoirs .\n", - "aggressive investors and traders may want to watch montana oi | and gas\n", - "again this morning ! montana oil and gas inc . ( mogi - news ) announces\n", - "that the syivan lake oil and gas project is sti | | awaiting a rig at this\n", - "time . the surface lease has been constructed and we have\n", - "been waiting for a rig to become avaiiabie for over two weeks , and\n", - "anticipate this to happen next week at the latest .\n", - "the company has a 25 % working interest in the syivan lake project .\n", - "symbo | - mogi\n", - "current price - . 26\n", - "reasons to consider mogi :\n", - "1 . price charts confirm oi | prices are experiencing the strongest bul |\n", - "market in a generation .\n", - "2 . natura | gas prices have tripled in the | ast two years .\n", - "3 . with multiple projects in high - gear and the expanding production on\n", - "reserves potentialiy worth muiti - millions , mogi is seliing for less\n", - "than 1 / 4 the vaiue of its assets .\n", - "4 . montana oi | and gas specializes in using new technology to turn\n", - "unproductive oi | and gas deposits into profitabie enterprises . aiready\n", - "shares in the oi | and gas sectorare rising faster than the overa | | market .\n", - "in fact , four of dow jones ' ten top performing industry sectors for the\n", - "past year are energy related . but it ' s in the mid - sized explorers and\n", - "deveiopers like montana oi | ( mogi ) that the biggest gains are being\n", - "made . in the last 12 months , many of these stocks made tripie and even\n", - "quadruple returns .\n", - "breaking news ! !\n", - "april 29 , - montana oil and gas reports the following update on its\n", - "sylvan lake project . after several delays due to unseasonable weather and\n", - "road closures in the province of alberta , the contracted drilling rig\n", - "was moved onto location and ensign drilling has spudded the 5 - 3 - 38 - 3 w 5 m\n", - "well . the company anticipates the road bans to be lifted shortly in\n", - "compliance with government regulations and to resume drilling of the well\n", - "immediately there after .\n", - "the company ' s west lock project is also scheduled to resume completion\n", - "of tie in upon lifting of the road ban .\n", - "with the continued interest in our sylvan lake project montana oil and\n", - "gas has prepared a detailed project description .\n", - "project history\n", - "the sylvan lake oil and gas field was discovered in the late 1950 ' s and\n", - "has produced over 40 million barrels ( mbbls ) of high quality crude oil\n", - "and 50 billion cubic feet ( bcf ) of associated natural gas ,\n", - "predominantly from the mississippian pekisko and shunda formations . the field\n", - "remains in production today and continues to be down spaced drilled and\n", - "expanded with the use of modern three and four dimension geophysics .\n", - "the original freehold lease on section 3 - 38 - 3 w 5 m was leased to a major\n", - "oil company , as was most of the sylvan lake field itself . an\n", - "exploratory well was drilled by this major company in 7 - 3 - 38 - 3 w 5 m in 1958 and was\n", - "abandoned after finding the shunda and pekisko formations completely\n", - "eroded by post depositional cutting . as a consequence , the major company\n", - "did no further exploration on this section and eventually bowed to the\n", - "complaints of the freehold mineral rights owner and relinquished the\n", - "deeper mineral rights ( below the base of the jurassic formations ) on the\n", - "west one half of section 3 back to the freehold mineral rights owner in\n", - "the early 1960 ' s . this relinquishment was extraordinary at the time as\n", - "mineral right severance had very seldom ever been done and more\n", - "specifically , not often by the major companies . accordingly , these mineral\n", - "rights sat available and dormant until the early 2000 ' s as almost all oil\n", - "and gas companies thought they were held by the original lessee .\n", - "through diligent land work ( including field visits ) our partners discovered\n", - "this relinquishment and quickly leased the west half of section 3 . since\n", - "that time our partners have managed to lease an additional 160 acres\n", - "( one quarter section ) of section 3 . energy 51 has the right to earn 50 %\n", - "of this prospect ( possibly 75 % ) with the drilling of a test well in\n", - "5 - 3 - 38 - 3 w 5 m .\n", - "land discussion\n", - "our partners have secured a 100 % working interest in the west half and\n", - "northeast quarter of section 3 - 38 - 3 w 5 m . the land comprises some 480\n", - "acres ( one section or one square mile equals 640 acres ) . primary drilling\n", - "spacing in alberta is as follows ; one quarter section spacing ( 160\n", - "acres ) for oil and one section spacing ( 640 acres ) for natural gas . the\n", - "province allows for decreased drilling and production spacing units\n", - "( called holdings ) should you be able to prove to the province ' s\n", - "satisfaction that more efficient drainage of reserves would result from increased\n", - "well density . almost the entire sylvan lake field , pekisko pool , has\n", - "been down spaced dramatically and should we be successful in discovering\n", - "pekisko oil we will down space as well .\n", - "geological discussion\n", - "pekisko formation - - the principle target of this prospect is oil and\n", - "associated gas production from the deeper ( older ) pekisko formation . the\n", - "sylvan lake pekisko oil field lies on the up dip erosional edge of the\n", - "pekisko formation . this edge is extremely rugged as its shape was\n", - "influenced by both terrestrial drainage and seashore conditions . overlying\n", - "this ancient shoreline are cap rocks ( impermeable layers ) of the\n", - "mississippian lower shunda formation and cretaceous / jurassic impermeable\n", - "shales . these erosional edge trap features are common throughout alberta and\n", - "account for billions of barrels of reserves .\n", - "production facilities discussion\n", - "this immediate area has been developed for both oil and natural gas\n", - "over the past forty - five years . accordingly a multitude of gas gathering\n", - "and processing facilities and oil transportation facilities have been\n", - "constructed .\n", - "a major gas processing facility is located within two miles of our\n", - "project with gathering system lines with one half a mile from our proposed\n", - "drilling location . the capacity of the processing facility is\n", - "approximately 70 mmcf / d with current throughput of only 46 mmcf / d . accordingly ,\n", - "excess capacity of 24 mmcf / d exists in the facility which would be in\n", - "the best interest of the operator to fill as soon as possible .\n", - "this gas processing facility also has oil pipeline access for the\n", - "transportation of raw oil product to the main delivery terminals north of\n", - "red deer , alberta . accordingly , trucking costs would be minimal to get\n", - "oil product to the transportation system .\n", - "for more detailed project description please see news release dated\n", - "( fri , apr 29 ) .\n", - "good luck and successfu | trading .\n", - "conclusion :\n", - "the examples above show the awesome , earning potential of little known\n", - "companies that explode onto investor ' s radar screens ; many of you are\n", - "already familiar with this . is mogi poised and positioned to do that for\n", - "you ? then you may feel the time has come to act . . . and please watch\n", - "this one trade tuesday ! go mogi .\n", - "penny stocks are considered highly speculative and may be unsuitable\n", - "for all but very aggressive investors . this profile is not in any way\n", - "affiliated with the featured company . we were compensated 3000 dollars\n", - "to distribute this report . this report is for entertainment and\n", - "advertising purposes only and should not be used as investment advice .\n", - " 1
1811ham Subject: re : enron / hpl actuals for october 11 , 2000 - revision\n", - "please note that the pricing allocation of volumes for october 11 , 2000 should\n", - "be changed as follows .\n", - "teco tap 40 . 000 / enron ; 25 . 209 / hpl iferc ; 84 . 791 / hpl gas daily\n", - "the total nomination of 775 . 000 subject to the iferc pricing was completed on\n", - "october 11 , 2000 . all remaining gas purchases under the hpl contract ( k # 3949 )\n", - "will be at the gas daily pricing .\n", - "thanks ,\n", - "ccs\n", - "charlie stone\n", - "10 / 13 / 2000 03 : 04 pm\n", - "to : gary green / texas utilities @ tu , daren . j . farmer @ enron . com ,\n", - "gary . a . hanks @ enron . com , carlos . j . rodriguez @ enron . com ,\n", - "earl . tisdale @ enron . com , ami . chokshi @ enron . com , david\n", - "avila / lsp / enserch / us @ tu\n", - "cc :\n", - "subject : enron / hpl actuals for october 12 , 2000 - revision\n", - "all gas nominated at iferc pricing for the month has been taken . remaining\n", - "purchases under k # 3949 will be at the gas daily pricing .\n", - "teco tap 40 . 000 / enron ; 110 . 000 / hpl gas daily\n", - "- - - - - - - - - - - - - - - - - - - - - - forwarded by charlie stone / texas utilities on\n", - "10 / 13 / 2000\n", - "02 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", - "gary green\n", - "10 / 13 / 2000 10 : 04 am\n", - "to : charlie stone / texas utilities @ tu , gary green / texas utilities @ tu ,\n", - "daren . j . farmer @ enron . com , gary . a . hanks @ enron . com ,\n", - "carlos . j . rodriguez @ enron . com , earl . tisdale @ enron . com ,\n", - "ami . chokshi @ enron . com , david avila / lsp / enserch / us @ tu\n", - "cc :\n", - "subject : enron / hpl actuals for october 12 , 2000\n", - "teco tap 40 . 000 / enron ; 110 . 000 / hpl iferc 0
2367ham Subject: registration confirmation from spinner . com\n", - "thank you for joining spinner . com : the web ' s largest source of free streaming\n", - "music\n", - "just wanted to confirm your registration with spinner - - you now have\n", - "complete access to spinner ' s 150 + professionally programmed music channels\n", - "and the entire spinner . com website . and just to remind you , the player , the\n", - "website , and ( most importantly ! ) the music are all totally free .\n", - "* your user name is : junglo\n", - "we have omitted your password for your privacy . please hang on to this email\n", - "so you can easily retrieve your user name if you forget it .\n", - "* forget your password ? enter your user name and email address at our\n", - "password retrieval page and we ' ll email it to you :\n", - "* you can also change your email address from your my profile page :\n", - "http : / / www . spinner . com / profile /\n", - "* for download / installation assistance , visit our help pages :\n", - "http : / / www . spinner . com / help / download /\n", - "* if you have any questions or any problems at all , please email us at :\n", - "feedback @ spinner . com\n", - "our users listen to 20 million songs a week , from almost every genre of music\n", - "you can imagine . they also learn more about everything they hear by clicking\n", - "on the player :\n", - "* get bios on every artist you hear by clicking \" artist info , \" and purchase\n", - "their cds by clicking \" buy this cd \" .\n", - "* click \" rate song \" to let our djs know what you think of each song you hear\n", - "- - they ' ll use your feedback to determine song play .\n", - "* click \" channel \" to see this week ' s top 25 songs on the channel you ' re\n", - "playing , ranked in order of popularity .\n", - "* for even more great info on our channels and music , visit spinner . com . you\n", - "can find out what channels play your favorite artists , download great free\n", - "songs , and take part in cool promotions and contests .\n", - "thanks again for registering . if you like what you hear , tell a friend about\n", - "spinner .\n", - "enjoy the music !\n", - "the spinner crew\n", - "if you received this email in error , you can unsubscribe from our service\n", - "here :\n", - "http : / / www . spinner . com / unsubscribe / 0
2829ham Subject: aep transition items\n", - "attached is a brief memo outline some of the transtion issues with hpl to aep\n", - "this is the first draft .\n", - "the itilized items currently require some more action .\n", - "please add any items and forward back to me . i will update\n", - "thanks\n", - "bob 0
3512ham Subject: an inbound message for you has been quarantined\n", - "you have received this message because someone has attempted to send you an e - mail from outside of enron with an attachment type that enron does not allow into our messaging environment . your e - mail has been quarantined and is being held at the mailsweeper server .\n", - "sender : colio @ houston . rr . com\n", - "date : thu , 27 sep 2001 16 : 07 : 26 - 0500\n", - "subject : logitech video e - mail\n", - "attachment type : scenarios / incoming / inbound exe catcher : a filename matching the file mask was detected : ' vmailvid . exe ' .\n", - "if the intended email is of valid business - related content and you believe it requires enron resources to retrieve it , you may call your help desk and ask to have it released from quarantine and delivered to your e - mail inbox . your message will be scanned and checked for viruses prior to requested release . if it contains a virus or there is reason to suspect it is malicious code , it will not be delivered .\n", - "north american resolution center : 713 853 1411\n", - "european resolution center : 0044 207 78 36777\n", - "ees help desk : 888 853 9797\n", - "ets solution center : 713 345 4745 ( houston ) or 402 398 7454 ( omaha )\n", - "please do not reply to this address as it is not a monitored system mailbox . 0
441ham Subject: re : valero gas marketing ; meter # : 8018 / sitara ticket # 148376\n", - "please zero out the volumes until further notice . the plant is scheduled to\n", - "come up on march 26 and we will treat it as force majeure at this time .\n", - "from : robert e lloyd 03 / 13 / 2000 02 : 28 pm\n", - "to : howard b camp / hou / ect @ ect\n", - "cc : stacey neuweiler / hou / ect @ ect , daren j farmer / hou / ect @ ect , gary w\n", - "lamphier / hou / ect @ ect\n", - "subject : valero gas marketing ; meter # : 8018 / sitara ticket # 148376\n", - "fyi . . . only !\n", - "gary agreed to let the deficiency volumes hit the buyback that is set\n", - "presently .\n", - "- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 03 / 13 / 2000\n", - "02 : 25 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", - "from : robert e lloyd 03 / 13 / 2000 02 : 09 pm\n", - "to : gary w lamphier / hou / ect @ ect , stacey neuweiler / hou / ect @ ect , daren j\n", - "farmer / hou / ect @ ect\n", - "cc : pat clynes / corp / enron @ enron , aimee lannou / hou / ect @ ect\n", - "subject : valero gas marketing ; meter # : 8018 / sitara ticket # 148376\n", - "effective march 11 th valero has not pulled any gas on a 35 . 0 / day\n", - "nomination .\n", - "do you want to arrange a buyback for this activity . there is a buyback\n", - "ticket { # 148381 } available\n", - "to handle any underage .\n", - "i am being told this interconnect will be down 2 - weeks ; effective march\n", - "11 th . 0
4453spamSubject: economize 55 % and more with your recipes\n", - "we assists you economise on costly recipes\n", - "medicinal drugs with worths that are as much as 50 % less than retail\n", - "apothecary ' s shop alternatives .\n", - "examine costs\n", - " 1
747ham Subject: memo from office of the chair\n", - "the mid - year performance management cycle will begin on may 15 with the\n", - "opening of the pep system ( the online \" performance evaluation process \"\n", - "feedback system ) . you will be receiving your password for this system in a\n", - "note to go out later from pep . in preparation for the cycle , four training\n", - "classes will be offered to all new employees and to those employees who have\n", - "not previously attended training . enrollment for these classes will be\n", - "offered through the development center \" ernie \" system . for employees who are\n", - "outside the houston area , please contact your hr representative for more\n", - "information .\n", - "these sessions will be held on :\n", - "wednesday , may 10 from 9 : 00 - 10 : 00 a . m . , and three sessions to be held on\n", - "thursday , may 11 from 9 : 00 - 10 : 00 a . m . ; 1 : 30 - 2 : 30 p . m . ; and 3 : 00 - 4 : 00 p . m .\n", - "all sessions will be held at the doubletree hotel .\n", - "to register , click on this link to go directly to the development center\n", - "for those of you who have attended the training before and who are familiar\n", - "with the past performance management process , there have been some\n", - "modifications :\n", - "1 . the performance management process is now enron wide . all enron feedback\n", - "forms have been reduced to three ( vice president ( vp ) / managing director\n", - "( md ) ; management / professional ; and administration / support ) , which all use\n", - "the following criteria :\n", - "? innovation / entrepreneurship\n", - "? communication / setting direction\n", - "? teamwork / interpersonal\n", - "? leadership / vision / values\n", - "? business instinct\n", - "? analytical / technical\n", - "2 . the following six performance ratings will be used consistently on the\n", - "final feedback forms across enron :\n", - "superior\n", - "excellent\n", - "strong\n", - "satisfactory\n", - "needs improvement\n", - "issues\n", - "3 . there will be four recognized peer groups across the company for purposes\n", - "of the prc ( formerly the business review meetings ) meeting .\n", - "? commercial\n", - "? commercial support\n", - "? technical\n", - "? specialized technical\n", - "4 . the performance review process will continue to be used to facilitate :\n", - "? promotions - up to director level only . there will be no officer promotions\n", - "to vp / md at mid - year\n", - "? feedback to employee\n", - "? compensation decisions\n", - "? sharing of performance rating at manager \u0001 , s discretion\n", - "5 . prc meetings will be reviewed by both functional area & business units\n", - "both functional areas and business units will participate in the rating of\n", - "employees to cover both solid and dotted line reporting relationships .\n", - "functional prc meetings will take place first , followed by the final business\n", - "unit meetings . difference in views on an individual employee \u0001 , s rating should\n", - "be discussed and consensus should be reached . the functional area meetings\n", - "are :\n", - "- accounting\n", - "- human resources\n", - "- government affairs\n", - "- rac\n", - "- global finance\n", - "6 . the pep system is now available via the intranet to allow greater access\n", - "from global locations and remotely . the functionality is essentially the\n", - "same . if you would like further information on how to use this system you may\n", - "gain access to the quick reference guide by clicking on the attached\n", - "weblinkhttp : / / home . enron . com / announce / . pdf . if the\n", - "quick reference does not display correctly on your pc , call your help desk\n", - "for assistance , or irma alvarez at 713 - 853 - 1543 to get a hard copy .\n", - "7 . the general responsibilities remain the same regarding the overall\n", - "process :\n", - "employee / reviewer responsibilities :\n", - "select 5 - 7 reviewers\n", - "complete self - assessment\n", - "complete requested feedback forms\n", - "reviewers who cannot provide feedback use the decline request feature\n", - "supervisor responsibilities :\n", - "approve reviewers ( at least 3 of the employee ' s choices )\n", - "communicate modifications to employee\n", - "participate in prc meetings as required\n", - "summarize feedback and complete appropriate feedback form\n", - "communicate feedback to the employee\n", - "schedule for mid - year performance review\n", - "may 15 pep system opens for feedback\n", - "june 9 pep system closes for feedback\n", - "june 12 functional / business unit prc meetings begin\n", - "july 20 prc meetings should finish\n", - "july 31 / august 1 vp & md prc meeting\n", - "as always , if you have further questions on the performance management\n", - "process , you may contact your hr representative . 0
992ham Subject: enron / hpl actuals for june 15 , 2000\n", - "teco tap 115 . 000 / hpl iferc ; 10 . 000 / enron\n", - "texoma 0\n", - "ls hpl lsk 30 . 000 / enron 0
4894spamSubject: we are the best qns\n", - "look at this of - fers :\n", - "v - codin - 225 . 00 ( 90 pi lls )\n", - "valliuum - 153 . 00 ( 90 pi lls )\n", - "vi graa - 270 . 00 ( 90 pi lls )\n", - "cai llis - 348 . 00 ( 90 pi lls )\n", - "codeinne - 126 . 00 ( 90 pi lls )\n", - "xia naax - 171 . 00 ( 90 pi lls )\n", - "all orderrs are delivered by fedex with full tracking 24 / 7 .\n", - "satisfactiionnss guaaranteeed . . .\n", - "http : / / www . ultrameds 4 u . com\n", - "to get rid of maiiling list :\n", - " 1
3348ham Subject: re : epgt\n", - "gloria , the difference between the two pipes for july 2000 is the actuals came in lower than what was nominated and scheduled on mops . there isn ' t anything we can do about that difference , hopefully there is some kind of oba that takes those variances .\n", - "sabra\n", - "- - - - - original message - - - - -\n", - "from : barkowsky , gloria g .\n", - "sent : friday , june 22 , 2001 4 : 50 pm\n", - "to : garcia , clarissa ; farmer , daren j . ; dinari , sabra l .\n", - "subject : epgt\n", - "clarissa - thanks so much for all your help with this pipe ! everything looks great . i just have a couple of paths\n", - "that i need to finish it :\n", - "january 2000 - i need deal # 854688 pathed for epgt and for tetc . according to the invoice , we should have\n", - "11 , 129 dth on the interconnect .\n", - "february 2000 - i need deal # 871184 pathed for hpl and chan . hpl should have 3 , 600 dth and chan should\n", - "have 11 , 500 dth on the interconnect .\n", - "july 2000 - deal # 871172 has an interconnect issue . according to mops contract # 105124 , they received 8 , 275 dth\n", - "on the matagorda 624 , but according to epgt , they delivered 10 , 362 dth to hpl ( ? ) could this possibly\n", - "need to be split somehow , or do you have any other ideas ?\n", - "let me know . thanks , gloria 3 - 7118 0
4961spamSubject: keep your immune system strong\n", - "keep your immune system strong\n", - "http : / / crohellocro . info / ps\n", - "go here for removal\n", - "http : / / www . myfriendlyshop . com / gone\n", - " 1
2331ham Subject: enron / hpl actuals for january 2 , 2001\n", - "teco tap 30 . 000 / enron\n", - "ls hpl lsk ic 30 . 000 / enron 0
3897spamSubject: discreet cheapest prescri ^ ption dru & gs online !\n", - " 1
4647spamSubject: cheapest meds you ' ll find .\n", - "discount drugs . . . save over 70 %\n", - "including new softtabs ! the viagra that disolves under the tongue ! !\n", - "simply place 1 half a pill under your tongue , 15 min before sex .\n", - "you will excperience :\n", - "- a super hard erection\n", - "- more pleasure\n", - "- and greater stamina ! !\n", - "we ship world wide , and no prescription is required ! !\n", - "even if you ' re not impotent , viiagra will increase size , pleasure and power !\n", - "give your wife the loving she deserves ! ! !\n", - "we are cheaper supplier on the internet . retail price is 15 ea , = (\n", - "our internet price is 1 . 17 each ! ! ! = )\n", - "many many other meds available .\n", - "thanks for your time !\n", - "http : / / aujobs . net / ? aa\n", - "check out our party pack as well !\n", - "confidentiality assured !\n", - " 1
2819ham Subject: neon lesson # 5\n", - "please respond to here is your next lesson . . . have fun ! !\n", - "- experiencing god week 5 . doc 0
3762spamSubject: fwd : transferring today ?\n", - "rn $ 0 by tomom . nling , nmicks , npe . . . juest incr honeple . e arpting onlicatir aited tio apayjupy thowing uto yowser tt staay . . .\n", - "wwlearunts . us\n", - "owners holiday ' s holidays default ' s .\n", - "trap pack carefully log society ' s home advising .\n", - "reference home ' s affair reference ' s honest expressing expression trap ' s hope affair ' s define pack ' s soft .\n", - " 1
4778spamSubject: oxyyyyconttin no script needeeed\n", - "{ taaabbsittabbs } { cccheaapicheeep }\n", - "{ ssstttoooppp hhhhurting todayistop da pain now }\n", - "http : / / offfmeebabyy\n", - " 1
2583ham Subject: feb 12 th sale to aquila\n", - "fyi\n", - "daren - - - on the 12 th , there is a sale to aquila on the header system , for\n", - "10 , 000 . . . . . . . . i think we were supplying it with aec . for whatever reason , i\n", - "had the aec 10 . 0 @ # 11230 into midcon . . . which isnt right because there was no\n", - "market for it , and midcon wasnt looking for it , but the aquila deal was at\n", - "# 700 on wgr ( aquila ) . so i went ahead and changed the aec ticket to match up\n", - "with the aquila deal . let me know if you think it is incorrect .\n", - "thanks ,\n", - "mark 0
2203ham Subject: re : hpl meter # 980074 bammel hpl d / p to transco\n", - "daren - what happened in feb . was that transco had allocated a different\n", - "amount other than our measurement . i had been working with fred on getting\n", - "some allocations resolved for several different months . transco told us they\n", - "would not go back and reallocate due to the statute of limitations ( 6\n", - "months ) . february had a significant amount not allocated . we just need a\n", - "deal set up so we can write these volumes off . let me know if you have any\n", - "more questions .\n", - "aim\n", - "clem cernosek\n", - "12 / 12 / 2000 01 : 09 pm\n", - "to : aimee lannou / hou / ect @ ect\n", - "cc :\n", - "subject : re : hpl meter # 980074 bammel hpl d / p to transco\n", - "please response .\n", - "thanks , clem\n", - "- - - - - - - - - - - - - - - - - - - - - - forwarded by clem cernosek / hou / ect on 12 / 12 / 2000 01 : 13\n", - "pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", - "daren j farmer\n", - "12 / 12 / 2000 12 : 35 pm\n", - "to : clem cernosek / hou / ect @ ect\n", - "cc :\n", - "subject : re : hpl meter # 980074 bammel hpl d / p to transco\n", - "what was going on in feb ?\n", - "d\n", - "clem cernosek\n", - "12 / 11 / 2000 04 : 27 pm\n", - "to : daren j farmer / hou / ect @ ect\n", - "cc : aimee lannou / hou / ect @ ect\n", - "subject : hpl meter # 980074 bammel hpl d / p to transco\n", - "daren\n", - "during the period of 1 / 1 / 99 to 9 / 30 / 2000 , the above meter has recorded flow\n", - "on the following days :\n", - "days mmbtus\n", - "11 / 12 / 99 ( 58 )\n", - "12 / 23 / 99 ( 133 )\n", - "2 / 1 / 00 ( 463 )\n", - "2 / 2 / 00 ( 463 )\n", - "2 / 3 / 00 ( 463 )\n", - "2 / 4 / 00 ( 463 )\n", - "2 / 5 / 00 ( 463 )\n", - "2 / 6 / 00 ( 463 )\n", - "2 / 7 / 00 ( 463 )\n", - "2 / 8 / 00 ( 463 )\n", - "2 / 9 / 00 ( 463 )\n", - "2 / 10 / 00 ( 463 )\n", - "2 / 11 / 00 ( 463 )\n", - "2 / 12 / 00 ( 463 )\n", - "2 / 13 / 00 ( 463 )\n", - "2 / 14 / 00 ( 463 )\n", - "2 / 15 / 00 ( 464 )\n", - "2 / 16 / 00 ( 463 )\n", - "2 / 17 / 00 ( 463 )\n", - "2 / 18 / 00 ( 463 )\n", - "2 / 19 / 00 ( 463 )\n", - "2 / 20 / 00 ( 463 )\n", - "2 / 21 / 00 ( 463 )\n", - "2 / 22 / 00 ( 463 )\n", - "2 / 23 / 00 ( 463 )\n", - "2 / 24 / 00 ( 463 )\n", - "2 / 25 / 00 ( 463 )\n", - "2 / 26 / 00 ( 463 )\n", - "2 / 27 / 00 ( 463 )\n", - "2 / 28 / 00 ( 463 )\n", - "2 / 29 / 00 ( 464 )\n", - "6 / 28 / 00 78\n", - "9 / 14 / 00 499\n", - "( 13 , 043 )\n", - "currently , these volumes are being booked to hpl strangers gas contract .\n", - "logistics needs approval to writeoff these volumes to unaccounted for gas .\n", - "if you have any questions , please contact aimee lannou @ x - 30506 .\n", - "thanks , clem\n", - "ps :\n", - "approval to writeoff the volumes to unaccounted for gas 0
1904ham Subject: cleburne - tenaska iv plant\n", - "daren ,\n", - "i ' m trying to put together the 2001 operating budget for the plant . i need a\n", - "conservative forecast , per month , of the price that could be obtained by\n", - "selling our excess volumes .\n", - "thanks . 0
1080ham Subject: ami , , ,\n", - "per our conversation , i would perfer the 2 , 000 difference be placed on the oba\n", - "between lsp and teco ,\n", - "because we requested to cut the flow .\n", - "thanks ! !\n", - "- - - - - - - - - - - - - - - - - - - - - - forwarded by tim powell / lsp / enserch / us on 06 / 27 / 2000\n", - "10 : 58 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", - "ami . chokshi @ enron . com on 06 / 27 / 2000 08 : 42 : 09 am\n", - "to : tim powell / lsp / enserch / us @ tu\n", - "cc : charlie stone / texas utilities @ tu , daren . j . farmer @ enron . com\n", - "subject :\n", - "hey tim ,\n", - "for may 12 , our supply shows that 8 . 000 did flow even though you cut flow\n", - "to 6 . 0 . let me know how you want to handle the situation . sorry for the\n", - "inconvenience .\n", - "ami 0
256ham Subject: 5 th changes @ duke and air liquide\n", - "- - - - - - - - - - - - - - - - - - - - - - forwarded by ami chokshi / corp / enron on 02 / 04 / 2000\n", - "11 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", - "troy _ a _ benoit @ reliantenergy . com on 02 / 04 / 2000 11 : 06 : 27 am\n", - "to : ami chokshi / corp / enron @ enron\n", - "cc :\n", - "subject : 5 th changes @ duke and air liquide\n", - "( see attached file : egmnom - feb . xls )\n", - "- egmnom - feb . xls 0
2789ham Subject: imbalance gas\n", - "just in case worse comes to worse .\n", - "- - - - - - - - - - - - - - - - - - - - - - forwarded by mary poorman / na / enron on 03 / 21 / 2001 11 : 29 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", - "from : juliann kemp / enron @ enronxgate on 03 / 21 / 2001 10 : 39 am\n", - "to : mary poorman / na / enron @ enron\n", - "cc :\n", - "subject : imbalance gas\n", - "mary we just have two . thanks - julie\n", - "contract 012 - 87794 - 02 - 001 ( delivery )\n", - "meter 981506\n", - "we owe them 21 , 771\n", - "981244 ( delivery ) koch refinery\n", - "we owe them 16 , 810 0
4381spamSubject: pictures\n", - "streamlined denizen ajar chased\n", - "heavens hostesses stolid pinched saturated\n", - "staten seventeens juggler abashed\n", - "ice guts centrifugal bauxite wader\n", - "shyness whirr ukrainian understandingly conditioner\n", - "barges entitles vanderpoel\n", - "preset wigwam storming alexei\n", - "supergroup tab mare\n", - "birthright brutalize tolerates depots bubbling\n", - "- -\n", - "phone : 439 - 120 - 6060\n", - "mobile : 590 - 203 - 5805\n", - "email : darden . audley @ houston . rr . com\n", - " 1
760ham Subject: mid year prc meeting\n", - "i would like to have our prc meeting on thursday , 6 / 8 . because of trading ,\n", - "we will not be able to start until noon . please confirm to me asap ( by end\n", - "of day , today ) that you will be available . please keep in mind that we will\n", - "went last time from 1 : 00 pm until almost midnight . your commitment of this\n", - "date will include the evening hours , unless of course , we work quickly and\n", - "efficiently ! ! ! sally ' s meeting is scheduled for tuesday , 6 / 13 , and i plan to\n", - "be on vacation on friday , 6 / 9 . therefore , this is the lastest date that we\n", - "can meet . please make every effort to make this work .\n", - "thanks . 0
4979spamSubject: penny stocks are about timing\n", - "nomad international inc . ( ndin )\n", - "a multi - national internet communications company developing cost\n", - "effective telecommunications through voice over internet protocol ( voip )\n", - "technologies .\n", - "shares outstanding : 34 , 0 oo , 000\n", - "float : 4 , 000 , 0 oo\n", - "current price : o . 09\n", - "wiil it continue higher ? watch this one friday as we know many of you\n", - "like momentum .\n", - "breaking news ! !\n", - "may 18 - - nomad international inc . ( ndin ) commented today on the recent\n", - "announcement by the canadian radio - teievision and teiecommunications\n", - "commission ( crtc ) that they would reguiate voice over internet protoco |\n", - "( voip ) service only when it is provided and used as local telephone\n", - "service .\n", - "in its decision , the crtc determined that in an effort to buiid\n", - "sustainable competition in | ocal teiephone markets , the incumbent carriers\n", - "wiil not be permitted to price their local voip services below cost to\n", - "stifie competition .\n", - "the ruling is a very positive one for nomad in our efforts to enter\n", - "the canadian market with our products via internet service providers ,\n", - "cabie companies and virtual operators . the ruling permits us to enter the\n", - "market with a competitive framework , stated jan oiiver , ceo of nomad\n", - "internationa | inc .\n", - "the key to nomad ' s entry into the voip market is the ability of its\n", - "products to offer services to both broadband and dia | - up customers . though\n", - "broadband is gaining more and more acceptance and utiiization\n", - "worldwide , dial - up remains the primary source of internet connectivity . in the\n", - "u . s . alone , there are over 200 , oo 0 , 000 users of the internet . of the\n", - "tota | users in the u . s . , the total number of users of broadband is only\n", - "approximately 4 o , 0 oo , 00 o ; ( stats by the yankee group ) dia | - up therefore\n", - "represents approximately 8 o % of the entire internet connectivity market .\n", - "the percentage of dia | - up versus broadband users woridwide is even\n", - "higher .\n", - "nomad ' s ability to offer voip products to dial - up customers and service\n", - "providers not only offers significant potentia | for market penetration ,\n", - "but also sets the company apart from its competition in the marketplace\n", - "by offering a unique , proprietary and easiiy adaptabie product .\n", - "about nomad international inc .\n", - "nomad international inc . is a muiti - national internet communications\n", - "company deveioping cost effective telecommunications through voice over\n", - "internet protocol ( voip ) technoiogies . the company ' s revolutionary voip\n", - "product line ca | | ed nomad systems that has dia | - up , broadband , dsl ,\n", - "cable , sate | | ite and wireless capabilities . the company pians on\n", - "targeting : 1 ) national fixed | ine ii iii tier carriers which are interested in\n", - "effectively competing with the dominant carrier in their marketpiace ,\n", - "2 ) large muitinationa | corporations which need to have us or european\n", - "presence by having , ( for exampie ) , a united states number ringing in\n", - "their offices in guatemala or london - - offering business partners a more\n", - "economical way to communicate , and 3 ) immigrants in north america , a\n", - "means of significantiy | owering their communication expense with their\n", - "reiatives in their country of origin .\n", - "conclusion :\n", - "the exampies above show the awesome , earning potential of little known\n", - "companies that explode onto investor ' s radar screens ; many of you are\n", - "aiready famiiiar with this . is ndin poised and positioned to do that for\n", - "you ? then you may feel the time has come to act . . . and piease watch\n", - "this one trade friday ! go ndin .\n", - "penny stocks are considered highiy speculative and may be unsuitabie\n", - "for al | but very aggressive investors . this profiie is not in any way\n", - "affiliated with the featured company . we were compensated 3 ooo do | | ars\n", - "to distribute this report . this report is for entertainment and\n", - "advertising purposes oniy and should not be used as investment advice .\n", - "if you wish to stop future maiiings , or if you fee | you have been\n", - "wrongfuily piaced in our membership , please go here or send a biank\n", - "e mail with no thanks in the subject to\n", - "noneedl 020 @ yahoo . com\n", - " 1
4162spamSubject: anomaly boys from 3881\n", - "uosda apaproved mledms heure\n", - "crack mutagen poliomyelitis axisymmetric virus bernoulli pervade cadenza arena martin cardioid familiar bladdernut inductee donor you tranquil bar kingdom dinnerware pedagogy traipse chromate idle mph diligent company contributor bal\n", - "antipodean escadrille stan affiance antagonist roil siren conrad repression bluejacket conduce continue myriad configuration brute anthem yore pessimal turpitude bum 3\n", - "macintoshdogleg 1
1428ham Subject: re : meter # : 1266 ; august 2000 / allocation exception\n", - "conoco has nominated 5 . 0 / d at this meter . conoco transport can be allocated\n", - "the entire meter flow for the days in which the meter flow\n", - "exceed 5 . 0 mm because they are the only party doing business at the meter .\n", - "hpl may also be able to extract a sell for this overage which is why i\n", - "wanted you to be aware of the daily activity thus far .\n", - "- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 08 / 21 / 2000\n", - "01 : 57 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", - "from : lee l papayoti on 08 / 21 / 2000 01 : 44 pm\n", - "to : robert e lloyd / hou / ect @ ect\n", - "cc : sherlyn schumack / hou / ect @ ect , anita luong / hou / ect @ ect , daren j\n", - "farmer / hou / ect @ ect , gary a hanks / hou / ect @ ect , pat clynes / corp / enron @ enron\n", - "subject : re : meter # : 1266 ; august 2000 / allocation exception\n", - "why are these volumes flowing ?\n", - "from : robert e lloyd 08 / 21 / 2000 01 : 36 pm\n", - "to : lee l papayoti / hou / ect @ ect\n", - "cc : sherlyn schumack / hou / ect @ ect , anita luong / hou / ect @ ect , daren j\n", - "farmer / hou / ect @ ect , gary a hanks / hou / ect @ ect , pat clynes / corp / enron @ enron\n", - "subject : re : meter # : 1266 ; august 2000 / allocation exception\n", - "should i roll this deal to cover august 2000 activity ?\n", - "volumes todate are as follows : 82 mm 8 / 16\n", - "85 mm 8 / 17\n", - "65 mm 8 / 18\n", - "57 mm 8 / 19\n", - "60 mm 8 / 20\n", - "sitara ticket # : 363514\n", - "these small meter flows are causing allocation exceptions for august .\n", - "- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 08 / 21 / 2000\n", - "01 : 27 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", - "from : robert e lloyd 08 / 11 / 2000 03 : 17 pm\n", - "to : howard b camp / hou / ect @ ect , rita wynne / hou / ect @ ect\n", - "cc : pat clynes / corp / enron @ enron , daren j farmer / hou / ect @ ect\n", - "subject : re : meter # : 1266 ; july 2000 activity / allocation exception\n", - "fyi\n", - "- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 08 / 11 / 2000\n", - "03 : 16 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", - "from : robert e lloyd on 08 / 11 / 2000 03 : 16 pm\n", - "to : lee l papayoti / hou / ect @ ect\n", - "cc :\n", - "subject : re : meter # : 1266 ; july 2000 activity / allocation exception\n", - "the volumes are as follows : july lst 414 mmbtu\n", - "july 31 12 mmbtu\n", - "total : 426 mmbtu ' s\n", - "also , the sitara deal # is : 363514\n", - "from : lee l papayoti on 08 / 11 / 2000 02 : 02 pm\n", - "to : robert e lloyd / hou / ect @ ect\n", - "cc : howard b camp / hou / ect @ ect , pat clynes / corp / enron @ enron\n", - "subject : re : meter # : 1266 ; july 2000 activity / allocation exception\n", - "please set up a ticket priced at gas daily houston ship channel midpoint\n", - "minus $ 0 . 03\n", - "also , can you let me know the exact volumes in question on july 1 and july\n", - "31 ? dorcheus wants to know . me too .\n", - "thanks\n", - "lee\n", - "to : lee l papayoti / hou / ect @ ect\n", - "cc : howard b camp / hou / ect @ ect , pat clynes / corp / enron @ enron\n", - "subject : re : meter # : 1266 ; july 2000 activity / allocation exception\n", - "just a reminder that \" allocation close \" is monday , august 14 th .\n", - "a sitara ticket is needed to set up an acctg . arrangement which will\n", - "eliminate the allocation exception for meter # 981266\n", - "{ victoria station # 2 / brandywine } .\n", - "from : lee l papayoti on 08 / 09 / 2000 03 : 33 pm\n", - "to : robert e lloyd / hou / ect @ ect\n", - "cc :\n", - "subject : re : meter # : 1266 ; july 2000 activity / allocation exception\n", - "i ' ll get you a price tomorrow when i meet with him . . .\n", - "from : robert e lloyd 08 / 09 / 2000 12 : 50 pm\n", - "to : lee l papayoti / hou / ect @ ect\n", - "cc : daren j farmer / hou / ect @ ect , pat clynes / corp / enron @ enron , rita\n", - "wynne / hou / ect @ ect , howard b camp / hou / ect @ ect\n", - "subject : meter # : 1266 ; july 2000 activity / allocation exception\n", - "i spoke with bob dorcheus , brandywine about this issue and he suggest you\n", - "and he get together and agree on a\n", - "price because the gas flowed into the plant .\n", - "this gas flowed without a nomination .\n", - "- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 08 / 09 / 2000\n", - "12 : 47 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", - "enron north america corp .\n", - "from : gary a hanks 08 / 09 / 2000 11 : 27 am\n", - "to : robert e lloyd / hou / ect @ ect\n", - "cc : earl tisdale / hou / ect @ ect , pat clynes / corp / enron @ enron , rita\n", - "wynne / hou / ect @ ect , howard b camp / hou / ect @ ect\n", - "subject : meter # : 1266 ; july 2000 activity / allocation exception\n", - "the volumes on meter # 1266 for 7 / 1 / 00 and 7 / 31 / 00 are valid gas flow . 7 / 1 / 00\n", - "volumes are carry over from june activity ( meter was shut in a little after\n", - "9 : 00 am on 7 / 1 / 00 ) . 7 / 31 / 00 volumes were caused by the plant bringing on\n", - "the meter before 9 : 00 am on 8 / 1 / 00 .\n", - "if you have any questions please call . 36449 .\n", - "thanks\n", - "gary h\n", - "- - - - - - - - - - - - - - - - - - - - - - forwarded by gary a hanks / hou / ect on 08 / 09 / 2000 11 : 18\n", - "am - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", - "from : robert e lloyd 08 / 09 / 2000 11 : 17 am\n", - "to : gary a hanks / hou / ect @ ect , earl tisdale / hou / ect @ ect\n", - "cc : pat clynes / corp / enron @ enron , rita wynne / hou / ect @ ect , howard b\n", - "camp / hou / ect @ ect\n", - "subject : meter # : 1266 ; july 2000 activity / allocation exception\n", - "please verify the volume on meter # : 1266 for july lst & 31 st are valid gas\n", - "flow .\n", - "brandywine did not nominate any activity at this meter for july 2000 .0
4365spamSubject: slutty milf wants to meet you\n", - "take that !\n", - "' ilaa - liqaa\n", - " 1
2849ham Subject: fw : crosstex energy , driscoll ranch # 1 , # 3 , meter nos . 9858 and\n", - "9868\n", - "please note the following for april production regarding the crosstex\n", - "contract : 96048744 at the above referenced location .\n", - "thank you ,\n", - "melissa\n", - "- - - - - original message - - - - -\n", - "from : bubert , jerry\n", - "sent : thursday , march 22 , 2001 2 : 19 pm\n", - "to : taylor , vance l .\n", - "cc : flynn , shawna ; graves , melissa ; harris , joanne ; reinhardt , donald p . ;\n", - "riley , brian ; smith , susan ; sweeney , christy ; walker , robert ; weissman , george\n", - "subject : crosstex energy , driscoll ranch # 1 , # 3 , meter nos . 9858 and 9868\n", - "per section 2 . 2 of the gpa , crosstex has elected to sell 4000 mmbtu / d in the\n", - "aggragate at the base contract price of if hsc less $ 0 . 10 , and the excess of\n", - "the available gas over 4000 mmbtu / d in the aggragate at gda hsc less $ 0 . 15 . 0
1518ham Subject: put the 10 on the ft\n", - "the transport volumes decreased from 25000 to 10000 . all 10000 should be on\n", - "contract 012 - 41991 - 203 .\n", - "thanks ,\n", - "ami\n", - "- - - - - - - - - - - - - - - - - - - - - - forwarded by ami chokshi / corp / enron on 08 / 31 / 2000\n", - "10 : 54 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", - "royal _ b _ edmondson @ reliantenergy . com on 08 / 31 / 2000 10 : 47 : 37 am\n", - "to : ami _ chokshi @ enron . com\n", - "cc :\n", - "subject : put the 10 on the ft\n", - "( see attached file : hpl - sept . xls )\n", - "- hpl - sept . xls 0
404ham Subject: 3 / 4 / 2000 and following noms\n", - "hpl can ' t take the extra 15 mmcf / d over the weekend . we ' ll try next week ,\n", - "but for now the nom will stay at 60 mmcf / d , with redeliveries as they have\n", - "been\n", - "-\n", - "50 into pg & e , 7 from fcv , and 3 at carthage .\n", - "- - - - - - - - - - - - - - - - - - - - - - forwarded by bruce mcmills / ftworth / pefs / pec on\n", - "03 / 03 / 2000\n", - "09 : 42 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\n", - "bruce mcmills\n", - "03 / 03 / 2000 09 : 10 am\n", - "to : dfarmer @ enron . com , briley @ enron . com , stacey . neuweiler @ enron . com\n", - "cc : chad w . cass / gcs / cec / pec @ pec , william e . speckels / gcs / cec / pec @ pec , donna\n", - "c . spencer / gcs / cec / pec @ pec , michael r . cherry / easttexas / pefs / pec @ pec ,\n", - "darrel f . bane / easttexas / pefs / pec @ pec\n", - "subject : 3 / 4 / 2000 and following noms\n", - "this is to nominate 75 , 000 mmbtu / d into eastrans for 3 / 4 / 2000 and following .\n", - "we will deliver 50 , 000 into pg & e , 7 , 000 from fuel cotton valley ( continue\n", - "750\n", - "mmbtu / d sale ) ,\n", - "and 18 , 000 mmbtu / d into your cartwheel agreement at carthage . 0
2933ham Subject: calpine daily gas nomination\n", - ">\n", - ">\n", - "julie , as i mention earlier we hope to start the unit this afternoon but\n", - "are still experiencing difficulties . i will keep you informed . thanks .\n", - "ricky a . archer\n", - "fuel supply\n", - "700 louisiana , suite 2700\n", - "houston , texas 77002\n", - "713 - 830 - 8659 direct\n", - "713 - 830 - 8722 fax\n", - "- calpine daily gas nomination 1 . doc\n", - "- calpine daily gas nomination 1 . doc 0
1409ham Subject: industrial worksheets for august 2000 activity\n", - "attached are the worksheets for august 2000 activity . there are three\n", - "different worksheets { 2 - supply & 1 - market } .\n", - "the market worksheet is preliminary and will continuously be updated\n", - "throughout the month .\n", - "the supply worksheets capture all \" buybacks and the relevant pricing data .\n", - "these three worksheets can be found in two separate files . o :\n", - "logistics / robert lloyd / buydeaug 2000 . xls . . . . . . . . . . . . . supply\n", - "o : logistics / ken\n", - "sorry for the delay in providing you ' ll this data . 0
4807spamSubject: important online banking alert\n", - "dear valued citizensr bank member ,\n", - "due to concerns , for the safety and integrity of the online banking community we have issued the following warning message .\n", - "it has come to our attention that your citizensr bank account information needs to be updated as part of our continuing commitment to protect your account and to reduce the instance of fraud on our website . if you could please take 5 - 10 minutes out of your online experience and renew your records you will not run into any future problems with the online service . however , failure to confirm your records may result in your account suspension .\n", - "once you have confirmed your account records your internet banking service will not be interrupted and will continue as normal .\n", - "to confirm your bank account records please click here .\n", - "note :\n", - "this e - mail was sent on behalf of the online banking community , if you do not have an online banking account with charterr one then this message does not apply to you and you may ignore this message .\n", - "thank you for your time ,\n", - "citizensr financial group .\n", - " 1
\n" - ], - "text/markdown": "\nA data.frame: 5171 × 4\n\n| X <int> | label <chr> | text <chr> | label_num <int> |\n|---|---|---|---|\n| 605 | ham | Subject: enron methanol ; meter # : 988291\nthis is a follow up to the note i gave you on monday , 4 / 3 / 00 { preliminary\nflow data provided by daren } .\nplease override pop ' s daily volume { presently zero } to reflect daily\nactivity you can obtain from gas control .\nthis change is needed asap for economics purposes . | 0 |\n| 2349 | ham | Subject: hpl nom for january 9 , 2001\n( see attached file : hplnol 09 . xls )\n- hplnol 09 . xls | 0 |\n| 3624 | ham | Subject: neon retreat\nho ho ho , we ' re around to that most wonderful time of the year - - - neon leaders retreat time !\ni know that this time of year is extremely hectic , and that it ' s tough to think about anything past the holidays , but life does go on past the week of december 25 through january 1 , and that ' s what i ' d like you to think about for a minute .\non the calender that i handed out at the beginning of the fall semester , the retreat was scheduled for the weekend of january 5 - 6 . but because of a youth ministers conference that brad and dustin are connected with that week , we ' re going to change the date to the following weekend , january 12 - 13 . now comes the part you need to think about .\ni think we all agree that it ' s important for us to get together and have some time to recharge our batteries before we get to far into the spring semester , but it can be a lot of trouble and difficult for us to get away without kids , etc . so , brad came up with a potential alternative for how we can get together on that weekend , and then you can let me know which you prefer .\nthe first option would be to have a retreat similar to what we ' ve done the past several years . this year we could go to the heartland country inn ( www . . com ) outside of brenham . it ' s a nice place , where we ' d have a 13 - bedroom and a 5 - bedroom house side by side . it ' s in the country , real relaxing , but also close to brenham and only about one hour and 15 minutes from here . we can golf , shop in the antique and craft stores in brenham , eat dinner together at the ranch , and spend time with each other . we ' d meet on saturday , and then return on sunday morning , just like what we ' ve done in the past .\nthe second option would be to stay here in houston , have dinner together at a nice restaurant , and then have dessert and a time for visiting and recharging at one of our homes on that saturday evening . this might be easier , but the trade off would be that we wouldn ' t have as much time together . i ' ll let you decide .\nemail me back with what would be your preference , and of course if you ' re available on that weekend . the democratic process will prevail - - majority vote will rule ! let me hear from you as soon as possible , preferably by the end of the weekend . and if the vote doesn ' t go your way , no complaining allowed ( like i tend to do ! )\nhave a great weekend , great golf , great fishing , great shopping , or whatever makes you happy !\nbobby | 0 |\n| 4685 | spam | Subject: photoshop , windows , office . cheap . main trending\nabasements darer prudently fortuitous undergone\nlighthearted charm orinoco taster\nrailroad affluent pornographic cuvier\nirvin parkhouse blameworthy chlorophyll\nrobed diagrammatic fogarty clears bayda\ninconveniencing managing represented smartness hashish\nacademies shareholders unload badness\ndanielson pure caffein\nspaniard chargeable levin\n | 1 |\n| 2030 | ham | Subject: re : indian springs\nthis deal is to book the teco pvr revenue . it is my understanding that teco\njust sends us a check , i haven ' t received an answer as to whether there is a\npredermined price associated with this deal or if teco just lets us know what\nwe are giving . i can continue to chase this deal down if you need . | 0 |\n| 2949 | ham | Subject: ehronline web address change\nthis message is intended for ehronline users only .\ndue to a recent change to ehronline , the url ( aka \" web address \" ) for accessing ehronline needs to be changed on your computer . the change involves adding the letter \" s \" to the \" http \" reference in the url . the url for accessing ehronline should be : https : / / ehronline . enron . com .\nthis change should be made by those who have added the url as a favorite on the browser . | 0 |\n| 2793 | ham | Subject: spring savings certificate - take 30 % off\nsave 30 % when you use our customer appreciation spring savings\ncertificate at foot locker , lady foot locker , kids foot locker and at\nour online stores !\nwelcome to our customer appreciation spring savings certificate !\nuse the special certificate below and receive 30 % off your purchases either in our stores or online . hurry ! this 4 - day sale begins thursday , march 22 and ends sunday , march 25 .\nshare the savings today and e - mail this offer to your friends . many items already are reduced and the 30 % discount is taken off the lowest sale price .\nclick below to print your customer appreciation spring savings certificate . you must present this coupon at any foot locker , lady foot locker or kids foot locker store in the u . s . foot locker canada is not participating in this program .\nready , set , save !\nour spring savings discount will automatically appear when you use the links below or type camlem 21 into the promotion code box during checkout .\nfootlocker . com certificate code : camlem 21\nladyfootlocker . com certificate code : camlem 21\nkidsfootlocker . com certificate code : camlem 21\nremember , returns are hassle - free . simply bring your items to any of our stores nationwide or through the mail .\ndon ' t be left out - register today to learn about our new products , promotions , events and other specials . simply click below .\nterms and conditions . some exclusions apply , please see manager for complete details . certificate must be presented at the time of purchase and cannot be used in conjunction with any other discount offer or associate benefit . not redeemable for cash . applicable taxes must be paid by bearer . cannot be applied to prior purchases or to gift card purchases . void where prohibited , licensed or regulated . catalog exclusions apply . valid thursday , 3 / 22 / 01 through sunday , 3 / 25 / 01 . foot locker canada will not participate in this program .\nif you do not wish to receive future emails please click below to\nunsubscribe :\n | 0 |\n| 4185 | spam | Subject: looking for medication ? we ` re the best source .\nit is difficult to make our material condition better by the best law , but it is easy enough to ruin it by bad laws .\nexcuse me . . . : ) you just found the\nbest and simpliest site for\nmedication on the net . no perscription , easy\ndelivery .\nprivate , secure , and easy .\nbetter see rightly on a pound a week than squint on a million .\nwe ` ve got\nanything that you will ever want .\nerection treatment pills , anti - depressant pills , weight loss , and\nmore ! http : / / splicings . bombahakcx . com / 3 /\nknowledge and human power are synonymous .\nonly high - quality stuff for low rates !\n100 % moneyback guarantee !\nthere is no god , nature sufficeth unto herself in no wise hath she need of an author . | 1 |\n| 2641 | ham | Subject: noms / actual flow for 2 / 26\nwe agree\n- - - - - - - - - - - - - - - - - - - - - - forwarded by melissa jones / texas utilities on\n02 / 27 / 2001\n10 : 33 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\n\" eileen ponton \" on 02 / 27 / 2001 09 : 46 : 26 am\nto : david avila / lsp / enserch / us @ tu , charlie stone / texas utilities @ tu , melissa\njones / texas utilities @ tu , hpl . scheduling @ enron . com ,\nliz . bellamy @ enron . com\ncc :\nsubject : noms / actual flow for 2 / 26\ndate nom flow - mcf flow - mmbtu\n2 / 26 / 01 0 456 469\nbtu = 1 . 027 | 0 |\n| 1870 | ham | Subject: nominations for oct . 21 - 23 , 2000\n( see attached file : hplnl 021 . xls )\n- hplnl 021 . xls | 0 |\n| 4922 | spam | Subject: vocable % rnd - word asceticism\nvcsc - brand new stock for your attention\nvocalscape inc - the stock symbol is : vcsc\nvcsc will be our top stock pick for the month of april - stock expected to\nbounce to 12 cents level\nthe stock hit its all time low and will bounce back\nstock is going to explode in next 5 days - watch it soar\nwatch the stock go crazy this and next week .\nbreaking news - vocalscape inc . announces agreement to resell mix network\nservices\ncurrent price : $ 0 . 025\nwe expect projected speculative price in next 5 days : $ 0 . 12\nwe expect projected speculative price in next 15 days : $ 0 . 15\nvocalscape networks inc . is building a company that ' s revolutionizing the\ntelecommunications industry with the most affordable phone systems , hardware ,\nonline software , and rates in canada and the us . vocalscape , a company with\nglobal reach , is receiving international attention for the development of voice\nover ip ( voip ) application solutions , including the award - winning eyefontm , a\nsoftphone for real - time pc - to - phone . we are an advanced implementer of pbx\nsystems for companies , call centers , itsps and service providers .\nvocalscape has created software and interactive solutions revolving around\nglobal communications and data voice convergence . companies use vocalscape for\nvoice over internet protocol applications like ip pbxs , softswitches , pc 2 phone\nand web 2 phone , providing real - time human interaction and information delivery\nover the internet . through vocalscape ' s solutions , businesses can offer a\nquality voice service to anywhere in the world at rates that are significantly\nlower than current long distance charges . we develop software to run voip\nnetworks , and sell , install and service our own branded voip gateways and\ngatekeeper control software . we also license our software to customers who want\nto brand their own voip solutions .\nvocalscape is committed to making great technology ; challenging the status quo ,\nand building a 21 st century company that changes the way businesses communicate\nand interact through the internet .\ncurrent price : $ 0 . 025\nwe expect projected speculative price in next 5 days : $ 0 . 12\nwe expect projected speculative price in next 15 days : $ 0 . 15\nbreaking news - vocalscape inc . announces agreement to resell mix network\nservices\n- - - - - - - - - -\nkatonah , n . y . , / prnewswire - firstcall via comtex / - - vocalscape , inc . pink : vcsc ) ,\nan emerging leader in the development of voice over internet protocol ( voip )\ntelephony solutions , announced today it has entered into a sales agent agreement\nwith mix networks , inc . a voip enhanced telephony service provider .\nthis agreement provides vocalscape ' s turnkey calling card customers with access\nto mix networks services including north american dids ( phone numbers ) and\ndomestic long distance termination . vocalscape will also be able to supply their\nclients with enhanced voip products including pre - paid calling through mix\nnetworks north american network .\nwe are excited to help companies launch voip business models using our solution\nwith the whole picture from the software to the network needed to route the\ncalls . mix networks gives us the ability to offer wholesale monthly flat rate\nplans and dids to our clients that allow for us to build business models like\npopular voip companies such as vonage and packet 8 , says ryan gibson , vp\nvocalscape networks\nsome legal words before you continue :\ninformation within this email contains forward looking statements within the\nmeaning of section 27 a of the securities act of 1933 and section 21 b of the\nsecurities exchange act of 1934 . any statements that express or involve\ndiscussions with respect to predictions , goals , expectations , beliefs , plans ,\nprojections , objectives , assumptions or future events or performance are not\nstatements of historical fact and may be forward looking statements . forward\nlooking statements are based on expectations , estimates and projections at the\ntime the statements are made that involve a number of risks and uncertainties\nwhich could cause actual results or events to differ materially from those\npresently anticipated . forward looking statements in this action may be\nidentified through the use of words such as : projects , foresee , expects ,\nestimates , believes , understands will , part of : anticipates , or that\nby statements indicating certain actions may , could , or might occur . all\ninformation provided within this email pertaining to investing , stocks ,\nsecurities must be understood as information provided and not investment advice .\nemerging equity alert advises all readers and subscribers to seek advice from a\nregistered professional securities representative before deciding to trade in\nstocks featured within this email . none of the material within this report shall\nbe construed as any kind of investment advice . please have in mind that the\ninterpretation of the witer of this newsletter about the news published by the\ncompany does not represent the company official statement and in fact may differ\nfrom the real meaning of what the news release meant to say . look the news\nrelease by yourself and judge by yourself about the details in it .\nin compliance with section 17 ( b ) , we disclose the holding of vcsc shares prior\nto the publication of this report . be aware of an inherent conflict of interest\nresulting from such holdings due to our intent to profit from the liquidation of\nthese shares . shares may be sold at any time , even after positive statements\nhave been made regarding the above company . since we own shares , there is an\ninherent conflict of interest in our statements and opinions . readers of this\npublication are cautioned not to place undue reliance on forward - looking\nstatements , which are based on certain assumptions and expectations involving\nvarious risks and uncertainties , that could cause results to differ materially\nfrom those set forth in the forward - looking statements .\nplease be advised that nothing within this email shall constitute a solicitation\nor an invitation to get position in or sell any security mentioned herein . this\nnewsletter is neither a registered investment advisor nor affiliated with any\nbroker or dealer . this newsletter was paid $ 49000 from third party to send this\nreport . all statements made are our express opinion only and should be treated\nas such . we may own , take position and sell any securities mentioned at any\ntime . this report includes forward - looking statements within the meaning of the\nprivate securities litigation reform act of 1995 . these statements may include\nterms as projected speculative price expect , believe , may , will ,\nsoar move , undervalued and intend or similar terms .\n | 1 |\n| 3799 | spam | Subject: report 01405 !\nwffur attion brom est inst siupied 1 pgst our riwe asently rest .\ntont to presyou tew cons of benco 4 . yee : fater 45 y . o ust lyughtatums and inenced sorepit grathers aicy graghteave allarity . oarity wow to yur coons , as were then 60 ve mers of oite .\nithat yoit ? ! berst thar ! enth excives 2004 . . .\n | 1 |\n| 1488 | ham | Subject: enron / hpl actuals for august 28 , 2000\nteco tap 20 . 000 / enron ; 120 . 000 / hpl gas daily\nls hpl lsk ic 20 . 000 / enron | 0 |\n| 3948 | spam | Subject: vic . odin n ^ ow\nberne hotbox carnal bride cutworm dyadic\nguardia continuous born gremlin akin counterflow hereafter vocabularian pessimum yaounde cannel bitch penetrate demagogue arbitrary egregious adenosine rubin gil luminosity delicti yarmulke sauterne selfadjoint agleam exeter picofarad consulate dichotomous boyhood balfour spheric frey pillory hoosier fibonacci cat handful\n | 1 |\n| 3418 | ham | Subject: tenaska iv july\ndarren :\nplease remove the price on the tenaska iv sale , deal 384258 , for july and enter the demand fee . the amount should be $ 3 , 902 , 687 . 50 .\nthanks ,\nmegan | 0 |\n| 4791 | spam | Subject: underpriced issue with high return on equity\nstock report .\ndont sieep on this stock ! this is a hot one !\ncompany : gaming transactions inc .\nstock symbol : ggts\ncurrentiy trading at : o . 30\nrating : strong purchase\nnear - term target : 0 . 45\nlong - term target : 1 . oo\nbreaking news for ggts :\ngaming transactions inc . ( ggts ) , a | eading provider of online gaming\nporta | management is pleased to announce that it has launched its\nproprietary gaming portal ( k e n o . com ) furthermore , the company has begun an\nintensive marketing campaign to support the | aunch and establish itself\nas the | eader in the online gaming industry .\n( k e n o . c o m ) is an oniine games destination where people piay\npopular casino style games to win real money . the foundation of the site is\nan online version of keno . the game of keno uses 80 balls numbered 1\nthru 8 o . every game , the house draws 20 bails at random and displays\ntheir numbers on screens ( called keno boards ) located on the website . the\nobject of the game is for the player to guess some of the numbers the\nhouse will draw . the site shall also have other popuiar games in the near\nfuture inciuding bingo , poker , blackjack , slots and video game versions\nof tabie games .\npatrick smyth , ceo of gaming transactions inc . , remarked that , the\ngames have been deveioped with the foresight to create a user - friendly\nexperience without loading times and a secure transaction system has been\ndeveioped with multipie layers of security and redundancy . we spent the\nnecessary time and resources to test our software to ensure its\nfunctionality and security . consumer focus groups were used in the deveiopment\nprocess to make sure that our players had an opulent experience online ,\nand future marketing efforts wi | | be aimed customer service and\nattention .\nabout the company :\ngaming transactions inc . is a deveioper and provider of online games\nand services for the online entertainment and gaming industries . the\ncompany ! s centra | licensed games portal , ( k e n o . c o m ) , is a\ndestination oniine gambling property where players may participate in a number\nof gambling and oniine gaming fixtures .\nthe foundation of the site is of course an online version of keno . the\ngame of keno uses 8 o bails numbered 1 thru 80 . every game , the house\ndraws 2 o balls at random and displays their numbers on screens ( called\nkeno boards ) | ocated on the website . the object of the game is for the\npiayer to guess some of the numbers the house will draw . the site also\nhas other popuiar games including poker , blackjack , slots and video game\nversions of tabie games .\ngaming transactions inc . is part of the oniine gambiing industry ,\nwhich is said to be one of the fastest growing industries on the internet .\n! ' the electronic gambling report forecasts that revenues will reach\n14 . 5 biliion by 2006 ! ( market statistics : - informa media grp . giobal\nrevenues from oniine gambiing wi | | reach 14 . 52 bi | | ion in 20 o 6 , up from\n3 . 81 biilion this year . this is according to a report from the informa\nmedia grp . , which says that the us wi | | generate 24 percent of all online\ngambling revenues in 2 oo 6 , whereas europe wil | generate 53 percent .\nnorth american oniine gambling revenues are expected to reach 1 . 99 biliion\nthis year and 3 . 85 bi | | ion in 2 oo 6 . in europe , revenues wil | grow from\n1 . 29 billion this year to 7 . 64 biilion in 2 oo 6 . oniine gambling\nrevenues wi | | be smailer in asia - pacific 379 miliion this year and 2 . 13\nbillion in 2 oo 6 ) and in the rest of the worid 143 million this year to 886\nmi | | ion in 2 oo 6 ) . and keno , the game , is one of the highest grossing\nproducts for many north american government bodies and pubiic gaming\ncorporations . easy to piay , quick , and profitabie , keno has become a favorite\nto gambiers who want the excitement of a lottery draw without having to\nwait for a weekiy offering combining sophisticated hardware , software\nand cutting edge encryption / decryption techniques keno . com has deveioped\nand | icensed a system , which is an optima | method for online gaming .\ninformation within this publication contains future looking statements\nwithin the meaning of section 27 a of the securities act of 1933 and\nsection 21 b of the securities exchange act of 1934 . any statements that\nexpress or involve discussions with respect to predictions ,\nexpectations , beliefs , pians , projections , objectives , goals , assumptions or future\nevents or performance are not statements of historica | fact and may be\nfuture looking statements . future | ooking statements are based on\nexpectations , estimates and projections at the time the statements are made\nthat involve a number of risks and uncertainties which couid cause\nactual results or events to differ materia | | y from those presently\nanticipated . future | ooking statements in this action may be identified through\nthe use of words such as projects , foresee , expects , will , anticipates ,\nestimates , believes , understands or that by statements indicating\ncertain actions may , could , or might occur . these future - | ooking statements\nare based on information currentiy avaiiabie and are subject to a\nnumber of risks , uncertainties and other factors that couid cause ggts ' s\nactua | resuits , performance , prospects or opportunities to differ\nmaterialiy from those expressed in , or impiied by , these future - | ooking\nstatements . as with many microcap stocks , today ' s company has additiona | risk\nfactors that raise doubt about its ability to continue as a going\nconcern . ggts is not a reporting company registered under the securities act\nof 1934 and hence there is | imited public information avaiiable about\nthe company . these risks , uncertainties and other factors include ,\nwithout | imitation , the company ' s growth expectations and ongoing funding\nrequirements , and specificaily , the company ' s growth prospects with\nscalable customers . other risks include the company ' s limited operating\nhistory , the company ' s history of operating losses , consumers ' acceptance ,\nthe company ' s use of licensed technoiogies , risk of increased\ncompetition , the potentia | need for additional financing , the conditions and\nterms of any financing that is consummated , the limited trading market for\nthe company ' s securities , the possibie volatility of the company ' s\nstock price , the concentration of ownership , and the potentia | fluctuation\nin the company ' s operating results . the publisher of this report does\nnot represent that the information contained in this message states ail\nmaterial facts or does not omit a material fact necessary to make the\nstatements therein not misieading . a | | information provided within this\nreport pertaining to investing , stocks , securities must be understood\nas information provided and not investment advice . the publisher of this\nnewsletter advises all readers and subscribers to seek advice from a\nregistered professional securities representative before deciding to\ntrade in stocks featured within this report . none of the materia | within\nthis report shall be construed as any kind of investment advice or\nsolicitation . many of these companies are on the verge of bankruptcy . you can\nlose al | your money by investing in this stock . the pubiisher of this\nreport is not a registered investment expert . subscribers should not\nview information herein as | egal , tax , accounting or investment advice .\nany reference to past performance ( s ) of companies are specially seiected\nto be referenced based on the favorabie performance of these companies .\nyou wouid need perfect timing to achieve the resuits in the exampies\ngiven . there can be no assurance of that happening . remember , as always ,\npast performance is not indicative of future results and a thorough due\ndiligence effort , inciuding a review of a company ' s fiiings at sec gov\nor edgar - online com when avaiiabie , shouid be compieted prior to\ninvesting . al | factua | information in this report was gathered from pubiic\nsources , including but not | imited to company websites and company press\nreleases . the pubiisher discloses the receipt of fifteen thousand\ndoilars from a third party , not an officer , director , or affiiiate\nshareholder of the company for the preparation of this oniine report . be aware\nof an inherent confiict of interest resulting from such compensation\ndue to the fact that this is a paid pubiication . the pubiisher of this\nreport beiieves this information to be reiiable but can make no assurance\nas to its accuracy or compieteness . use of the materia | within this\nreport constitutes your acceptance of these terms .\nif you wish to stop future maiiings , or if you feel you have been\nwrongfuliy placed in our membership , piease go here or send a biank\ne mai | with no thanks in the subject to ( - stoxo 042 @ yahoo . com - )\n | 1 |\n| 2643 | ham | Subject: re : first delivery - wheeler operating\nvance ,\ndeal # 643714 has been created and entered in sitara .\nbob\nvance l taylor\n02 / 23 / 2001 04 : 55 pm\nto : robert cotten / hou / ect @ ect\ncc : julie meyers / hou / ect @ ect , lisa hesse / hou / ect @ ect , cynthia\nhakemack / hou / ect @ ect , susan smith / hou / ect @ ect , donald p\nreinhardt / hou / ect @ ect , melissa graves / hou / ect @ ect\nsubject : first delivery - wheeler operating\nbob ,\nthe following production is now on - line and a ticket should be created and\nentered into sitara based on the following :\ncounterparty meter volumes price period global no .\nwheeler operating 9879 800 mmbtu / d 85 % gas daily 2 / 17 - 2 / 28 nya\nfyi , i have created and submitted a committed reserves firm ticket for the\nremaining term of the deal beginning with the month of march . additionally ,\nthis is a producer svcs . deal and should be tracked in the im wellhead\nportfolio . . . attached to the gathering contract .\nthanks ,\nvlt\nx 3 - 6353\n- - - - - - - - - - - - - - - - - - - - - - forwarded by vance l taylor / hou / ect on 02 / 23 / 2001\n04 : 21 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : esther buckley 02 / 22 / 2001 10 : 39 am\nto : molly l carriere / hou / ect @ ect , clem cernosek / hou / ect @ ect , donna\nconsemiu / hou / ect @ ect , robert cook / hou / ect @ ect , howard b camp / hou / ect @ ect ,\nlisa hesse / hou / ect @ ect , nathan l hlavaty / hou / ect @ ect , wayne e\nlightfoot / hou / ect , james mckay / hou / ect @ ect , mary m smith / hou / ect @ ect , steve\nhpl schneider / hou / ect @ ect , melissa graves / hou / ect @ ect , michael\nwalters / hou / ect @ ect , jill t zivley / hou / ect @ ect , mary jo johnson / hou / ees @ ees ,\nrita wynne / hou / ect @ ect , lauri a allen / hou / ect @ ect , cheryl\njones / gpgfin / enron @ enron , reid hansen / gco / enron @ enron , darron c\ngiron / hou / ect @ ect , o ' neal d winfree / hou / ect @ ect , susan smith / hou / ect @ ect ,\ngary bryan / hou / ect @ ect , gary a hanks / hou / ect @ ect , donald p\nreinhardt / hou / ect @ ect , vance l taylor / hou / ect @ ect , david\nbaumbach / hou / ect @ ect , robert cotten / hou / ect @ ect , brian m riley / hou / ect @ ect ,\njeff a austin / hou / ees @ ees , cynthia hakemack / hou / ect @ ect , dawn c\nkenne / hou / ect @ ect , lisa csikos / hou / ect @ ect , j r fosdick / gco / enron @ enron ,\ncarlos j rodriguez / hou / ect @ ect , stephanie gomes / hou / ect @ ect , pat\nclynes / corp / enron @ enron , tom acton / corp / enron @ enron , robert\nwalker / hou / ect @ ect , george weissman / hou / ect @ ect , joanne\nharris / na / enron @ enron , christy sweeney / hou / ect @ ect , earl tisdale / hou / ect @ ect ,\ndaren j farmer / hou / ect @ ect\ncc :\nsubject : first delivery - wheeler operating\nplease see attached letter | 0 |\n| 3137 | ham | Subject: swift - may 2001 vols\nsean ,\nfyi , check the purchase from swift at the tailgate ( meter 9643 ) and make sure to nom the correct quantity .\nmary\n- - - - - - - - - - - - - - - - - - - - - - forwarded by mary poorman / na / enron on 04 / 26 / 2001 07 : 09 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : joan quick / enron @ enronxgate on 04 / 25 / 2001 06 : 13 pm\nto : carlos j rodriguez / hou / ect @ ect , mary poorman / na / enron @ enron , jackie young / hou / ect @ ect\ncc : brian m riley / hou / ect @ ect , mike morris / corp / enron @ enron\nsubject : swift - may 2001 vols\nhere is the may first of the month nom :\nking ranch plant 6 , 400 mmbtu / d | 0 |\n| 1629 | ham | Subject: meter variances - ua 4 clean - up\ndaren / vance -\nthe two meters below are new and have unallocatable flow . . . . . . . i will need a\npurchase for each of them . please respond with a deal number , or further\nsuggestions for resolution so that i can clear this up as soon as possible .\nmary\nenron on 09 / 19 / 2000 08 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\nkatherine benedict @ ect\n09 / 18 / 2000 04 : 53 pm\nto : mary poorman / na / enron @ enron , fred boas / hou / ect @ ect , aimee\nlannou / hou / ect @ ect\ncc :\nsubject : meter variances - ua 4 clean - up\nhi guys ,\nplease take a look at the following meters which are showing up with\nvariances on my ua 4 report . once the variance has been cleared , please send\nme an e - mail . please try to clear these within the next couple of days .\nthanks ,\nkathy benedict\nmeter number : 9851\nvariance : 11 , 204\nmeter type : daily swing\nproduction month : august 2000\nlogistics contact : none\nvolume mgmt contact : anita luong\nmeter number : 9852\nvariance 568\nmeter type : daily swing\nproduction month : august 2000\nlogistics contact : none\nvolume mgmt contact : anita luong | 0 |\n| 1858 | ham | Subject: additional recruiting\ni ' m happy to introduce molly magee as the newest addition to the eops\nrecruiting team . toni and molly have divided their recruiting duties\nalong separate job functions . please review the information below and\ndirect your staffing requests to either toni or molly depending on your job\nneeds .\ntoni graham - accounting , risk and confirmation / settlements positions ( or\nopenings requiring a similar skill set of this candidate pool )\nmolly magee - logistics , global data management , research , legal , competitive\nanalysis , contract administration and other positions ( or openings requiring\na similar skill set of this candidate pool )\nthanks for your assistance ,\nhgm | 0 |\n| 3261 | ham | Subject: fw : ercot load comparison\n- - - - - original message - - - - -\nfrom : gilbert - smith , doug\nsent : tuesday , may 22 , 2001 8 : 38 am\nto : tmartin @ enron . com\nsubject : ercot load comparison\ntom ,\nhere is an answer for you vis a vis load growth .\nhope it helps ,\ndoug\n- - - - - - - - - - - - - - - - - - - - - - forwarded by doug gilbert - smith / corp / enron on 05 / 22 / 2001 08 : 35 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : kevin cline / enron @ enronxgate on 05 / 21 / 2001 03 : 26 pm\nto : doug gilbert - smith / corp / enron @ enron\ncc : eric saibi / corp / enron @ enron\nsubject : ercot load comparison\nplease find attached spreadsheet that compares hot days from may 2000 and may 2001 . there are two tabs , one tab contains the days may 16 - 18 , 2000 and the other tab contains the days may 14 - 18 , 2001 . each tab contains both the load data and temp data particular to the days in question . the days most directly comparable are may 17 , 2001 ( thursday ) and may 18 , 2000 ( thursday ) , although the two days preceding may 18 , 2000 were slightly warmer than the two days preceding may 17 , 2001 . the peak on 5 / 17 / 2001 , 44 , 923 mw , is 2 . 78 % higher than the peak on 5 / 18 / 2000 , 43 , 709 mw . with similarly warm days before 5 / 17 / 2001 as there were before 5 / 18 / 2000 , the peak would obviously have been even higher . this would put the year - over - year growth in excess of 3 % . i believe this falls right in line with the growth rate year - over - year from an earlier analysis , somewhere in the range of 3 . 5 % to 4 % .\nlet me know if you have any questions or comments . | 0 |\n| 3447 | ham | Subject: meter 6461 , concorde churchill\none year rate for this one will be $ . 35 / mm for volumes greater than 300 mm / day . price for volumes 300 mm / day or less will be $ . 45 / mm plus a $ 350 per month metering fee . this rate would cover transport to a competitive ship channel market such as equistar channelview . transport rates for a 6 month term are not significantly different - $ . 33 / mm for volumes greater than 300 mm / day and $ . 42 / mm plus the metering fee for volumes 300 mm / day or less . these rates assume a september 1 , 2001 start . these rates good until friday , august 31 , 2001 only ! ! ! get ' em while they ' re hot ! ! | 0 |\n| 2459 | ham | Subject: hpl nom for january 25 , 2001\n( see attached file : hplnol 26 . xls )\n- hplnol 26 . xls | 0 |\n| 2221 | ham | Subject: re : tenaska iv 10 / 00\nwe have received all of the money from the spot sales for tenaska iv in\noctober 2000 , except for the tenaska iv sale and the $ 0 . 04 fee .\nmegan | 0 |\n| 4827 | spam | Subject: jump in to gain substantial ground immediately\nwe are very excited about this new upcoming stock about to explode\nmontana oil and gas , inc . ( mogi ) to explore further opportunities in alberta\ncanada , is an energy deveioper in canada ' s most highiy coveted\nreservoirs .\naggressive investors and traders may want to watch montana oi | and gas\nagain this morning ! montana oil and gas inc . ( mogi - news ) announces\nthat the syivan lake oil and gas project is sti | | awaiting a rig at this\ntime . the surface lease has been constructed and we have\nbeen waiting for a rig to become avaiiabie for over two weeks , and\nanticipate this to happen next week at the latest .\nthe company has a 25 % working interest in the syivan lake project .\nsymbo | - mogi\ncurrent price - . 26\nreasons to consider mogi :\n1 . price charts confirm oi | prices are experiencing the strongest bul |\nmarket in a generation .\n2 . natura | gas prices have tripled in the | ast two years .\n3 . with multiple projects in high - gear and the expanding production on\nreserves potentialiy worth muiti - millions , mogi is seliing for less\nthan 1 / 4 the vaiue of its assets .\n4 . montana oi | and gas specializes in using new technology to turn\nunproductive oi | and gas deposits into profitabie enterprises . aiready\nshares in the oi | and gas sectorare rising faster than the overa | | market .\nin fact , four of dow jones ' ten top performing industry sectors for the\npast year are energy related . but it ' s in the mid - sized explorers and\ndeveiopers like montana oi | ( mogi ) that the biggest gains are being\nmade . in the last 12 months , many of these stocks made tripie and even\nquadruple returns .\nbreaking news ! !\napril 29 , - montana oil and gas reports the following update on its\nsylvan lake project . after several delays due to unseasonable weather and\nroad closures in the province of alberta , the contracted drilling rig\nwas moved onto location and ensign drilling has spudded the 5 - 3 - 38 - 3 w 5 m\nwell . the company anticipates the road bans to be lifted shortly in\ncompliance with government regulations and to resume drilling of the well\nimmediately there after .\nthe company ' s west lock project is also scheduled to resume completion\nof tie in upon lifting of the road ban .\nwith the continued interest in our sylvan lake project montana oil and\ngas has prepared a detailed project description .\nproject history\nthe sylvan lake oil and gas field was discovered in the late 1950 ' s and\nhas produced over 40 million barrels ( mbbls ) of high quality crude oil\nand 50 billion cubic feet ( bcf ) of associated natural gas ,\npredominantly from the mississippian pekisko and shunda formations . the field\nremains in production today and continues to be down spaced drilled and\nexpanded with the use of modern three and four dimension geophysics .\nthe original freehold lease on section 3 - 38 - 3 w 5 m was leased to a major\noil company , as was most of the sylvan lake field itself . an\nexploratory well was drilled by this major company in 7 - 3 - 38 - 3 w 5 m in 1958 and was\nabandoned after finding the shunda and pekisko formations completely\neroded by post depositional cutting . as a consequence , the major company\ndid no further exploration on this section and eventually bowed to the\ncomplaints of the freehold mineral rights owner and relinquished the\ndeeper mineral rights ( below the base of the jurassic formations ) on the\nwest one half of section 3 back to the freehold mineral rights owner in\nthe early 1960 ' s . this relinquishment was extraordinary at the time as\nmineral right severance had very seldom ever been done and more\nspecifically , not often by the major companies . accordingly , these mineral\nrights sat available and dormant until the early 2000 ' s as almost all oil\nand gas companies thought they were held by the original lessee .\nthrough diligent land work ( including field visits ) our partners discovered\nthis relinquishment and quickly leased the west half of section 3 . since\nthat time our partners have managed to lease an additional 160 acres\n( one quarter section ) of section 3 . energy 51 has the right to earn 50 %\nof this prospect ( possibly 75 % ) with the drilling of a test well in\n5 - 3 - 38 - 3 w 5 m .\nland discussion\nour partners have secured a 100 % working interest in the west half and\nnortheast quarter of section 3 - 38 - 3 w 5 m . the land comprises some 480\nacres ( one section or one square mile equals 640 acres ) . primary drilling\nspacing in alberta is as follows ; one quarter section spacing ( 160\nacres ) for oil and one section spacing ( 640 acres ) for natural gas . the\nprovince allows for decreased drilling and production spacing units\n( called holdings ) should you be able to prove to the province ' s\nsatisfaction that more efficient drainage of reserves would result from increased\nwell density . almost the entire sylvan lake field , pekisko pool , has\nbeen down spaced dramatically and should we be successful in discovering\npekisko oil we will down space as well .\ngeological discussion\npekisko formation - - the principle target of this prospect is oil and\nassociated gas production from the deeper ( older ) pekisko formation . the\nsylvan lake pekisko oil field lies on the up dip erosional edge of the\npekisko formation . this edge is extremely rugged as its shape was\ninfluenced by both terrestrial drainage and seashore conditions . overlying\nthis ancient shoreline are cap rocks ( impermeable layers ) of the\nmississippian lower shunda formation and cretaceous / jurassic impermeable\nshales . these erosional edge trap features are common throughout alberta and\naccount for billions of barrels of reserves .\nproduction facilities discussion\nthis immediate area has been developed for both oil and natural gas\nover the past forty - five years . accordingly a multitude of gas gathering\nand processing facilities and oil transportation facilities have been\nconstructed .\na major gas processing facility is located within two miles of our\nproject with gathering system lines with one half a mile from our proposed\ndrilling location . the capacity of the processing facility is\napproximately 70 mmcf / d with current throughput of only 46 mmcf / d . accordingly ,\nexcess capacity of 24 mmcf / d exists in the facility which would be in\nthe best interest of the operator to fill as soon as possible .\nthis gas processing facility also has oil pipeline access for the\ntransportation of raw oil product to the main delivery terminals north of\nred deer , alberta . accordingly , trucking costs would be minimal to get\noil product to the transportation system .\nfor more detailed project description please see news release dated\n( fri , apr 29 ) .\ngood luck and successfu | trading .\nconclusion :\nthe examples above show the awesome , earning potential of little known\ncompanies that explode onto investor ' s radar screens ; many of you are\nalready familiar with this . is mogi poised and positioned to do that for\nyou ? then you may feel the time has come to act . . . and please watch\nthis one trade tuesday ! go mogi .\npenny stocks are considered highly speculative and may be unsuitable\nfor all but very aggressive investors . this profile is not in any way\naffiliated with the featured company . we were compensated 3000 dollars\nto distribute this report . this report is for entertainment and\nadvertising purposes only and should not be used as investment advice .\n | 1 |\n| 1811 | ham | Subject: re : enron / hpl actuals for october 11 , 2000 - revision\nplease note that the pricing allocation of volumes for october 11 , 2000 should\nbe changed as follows .\nteco tap 40 . 000 / enron ; 25 . 209 / hpl iferc ; 84 . 791 / hpl gas daily\nthe total nomination of 775 . 000 subject to the iferc pricing was completed on\noctober 11 , 2000 . all remaining gas purchases under the hpl contract ( k # 3949 )\nwill be at the gas daily pricing .\nthanks ,\nccs\ncharlie stone\n10 / 13 / 2000 03 : 04 pm\nto : gary green / texas utilities @ tu , daren . j . farmer @ enron . com ,\ngary . a . hanks @ enron . com , carlos . j . rodriguez @ enron . com ,\nearl . tisdale @ enron . com , ami . chokshi @ enron . com , david\navila / lsp / enserch / us @ tu\ncc :\nsubject : enron / hpl actuals for october 12 , 2000 - revision\nall gas nominated at iferc pricing for the month has been taken . remaining\npurchases under k # 3949 will be at the gas daily pricing .\nteco tap 40 . 000 / enron ; 110 . 000 / hpl gas daily\n- - - - - - - - - - - - - - - - - - - - - - forwarded by charlie stone / texas utilities on\n10 / 13 / 2000\n02 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\ngary green\n10 / 13 / 2000 10 : 04 am\nto : charlie stone / texas utilities @ tu , gary green / texas utilities @ tu ,\ndaren . j . farmer @ enron . com , gary . a . hanks @ enron . com ,\ncarlos . j . rodriguez @ enron . com , earl . tisdale @ enron . com ,\nami . chokshi @ enron . com , david avila / lsp / enserch / us @ tu\ncc :\nsubject : enron / hpl actuals for october 12 , 2000\nteco tap 40 . 000 / enron ; 110 . 000 / hpl iferc | 0 |\n| 2367 | ham | Subject: registration confirmation from spinner . com\nthank you for joining spinner . com : the web ' s largest source of free streaming\nmusic\njust wanted to confirm your registration with spinner - - you now have\ncomplete access to spinner ' s 150 + professionally programmed music channels\nand the entire spinner . com website . and just to remind you , the player , the\nwebsite , and ( most importantly ! ) the music are all totally free .\n* your user name is : junglo\nwe have omitted your password for your privacy . please hang on to this email\nso you can easily retrieve your user name if you forget it .\n* forget your password ? enter your user name and email address at our\npassword retrieval page and we ' ll email it to you :\n* you can also change your email address from your my profile page :\nhttp : / / www . spinner . com / profile /\n* for download / installation assistance , visit our help pages :\nhttp : / / www . spinner . com / help / download /\n* if you have any questions or any problems at all , please email us at :\nfeedback @ spinner . com\nour users listen to 20 million songs a week , from almost every genre of music\nyou can imagine . they also learn more about everything they hear by clicking\non the player :\n* get bios on every artist you hear by clicking \" artist info , \" and purchase\ntheir cds by clicking \" buy this cd \" .\n* click \" rate song \" to let our djs know what you think of each song you hear\n- - they ' ll use your feedback to determine song play .\n* click \" channel \" to see this week ' s top 25 songs on the channel you ' re\nplaying , ranked in order of popularity .\n* for even more great info on our channels and music , visit spinner . com . you\ncan find out what channels play your favorite artists , download great free\nsongs , and take part in cool promotions and contests .\nthanks again for registering . if you like what you hear , tell a friend about\nspinner .\nenjoy the music !\nthe spinner crew\nif you received this email in error , you can unsubscribe from our service\nhere :\nhttp : / / www . spinner . com / unsubscribe / | 0 |\n| 2829 | ham | Subject: aep transition items\nattached is a brief memo outline some of the transtion issues with hpl to aep\nthis is the first draft .\nthe itilized items currently require some more action .\nplease add any items and forward back to me . i will update\nthanks\nbob | 0 |\n| 3512 | ham | Subject: an inbound message for you has been quarantined\nyou have received this message because someone has attempted to send you an e - mail from outside of enron with an attachment type that enron does not allow into our messaging environment . your e - mail has been quarantined and is being held at the mailsweeper server .\nsender : colio @ houston . rr . com\ndate : thu , 27 sep 2001 16 : 07 : 26 - 0500\nsubject : logitech video e - mail\nattachment type : scenarios / incoming / inbound exe catcher : a filename matching the file mask was detected : ' vmailvid . exe ' .\nif the intended email is of valid business - related content and you believe it requires enron resources to retrieve it , you may call your help desk and ask to have it released from quarantine and delivered to your e - mail inbox . your message will be scanned and checked for viruses prior to requested release . if it contains a virus or there is reason to suspect it is malicious code , it will not be delivered .\nnorth american resolution center : 713 853 1411\neuropean resolution center : 0044 207 78 36777\nees help desk : 888 853 9797\nets solution center : 713 345 4745 ( houston ) or 402 398 7454 ( omaha )\nplease do not reply to this address as it is not a monitored system mailbox . | 0 |\n| 441 | ham | Subject: re : valero gas marketing ; meter # : 8018 / sitara ticket # 148376\nplease zero out the volumes until further notice . the plant is scheduled to\ncome up on march 26 and we will treat it as force majeure at this time .\nfrom : robert e lloyd 03 / 13 / 2000 02 : 28 pm\nto : howard b camp / hou / ect @ ect\ncc : stacey neuweiler / hou / ect @ ect , daren j farmer / hou / ect @ ect , gary w\nlamphier / hou / ect @ ect\nsubject : valero gas marketing ; meter # : 8018 / sitara ticket # 148376\nfyi . . . only !\ngary agreed to let the deficiency volumes hit the buyback that is set\npresently .\n- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 03 / 13 / 2000\n02 : 25 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : robert e lloyd 03 / 13 / 2000 02 : 09 pm\nto : gary w lamphier / hou / ect @ ect , stacey neuweiler / hou / ect @ ect , daren j\nfarmer / hou / ect @ ect\ncc : pat clynes / corp / enron @ enron , aimee lannou / hou / ect @ ect\nsubject : valero gas marketing ; meter # : 8018 / sitara ticket # 148376\neffective march 11 th valero has not pulled any gas on a 35 . 0 / day\nnomination .\ndo you want to arrange a buyback for this activity . there is a buyback\nticket { # 148381 } available\nto handle any underage .\ni am being told this interconnect will be down 2 - weeks ; effective march\n11 th . | 0 |\n| ⋮ | ⋮ | ⋮ | ⋮ |\n| 4453 | spam | Subject: economize 55 % and more with your recipes\nwe assists you economise on costly recipes\nmedicinal drugs with worths that are as much as 50 % less than retail\napothecary ' s shop alternatives .\nexamine costs\n | 1 |\n| 747 | ham | Subject: memo from office of the chair\nthe mid - year performance management cycle will begin on may 15 with the\nopening of the pep system ( the online \" performance evaluation process \"\nfeedback system ) . you will be receiving your password for this system in a\nnote to go out later from pep . in preparation for the cycle , four training\nclasses will be offered to all new employees and to those employees who have\nnot previously attended training . enrollment for these classes will be\noffered through the development center \" ernie \" system . for employees who are\noutside the houston area , please contact your hr representative for more\ninformation .\nthese sessions will be held on :\nwednesday , may 10 from 9 : 00 - 10 : 00 a . m . , and three sessions to be held on\nthursday , may 11 from 9 : 00 - 10 : 00 a . m . ; 1 : 30 - 2 : 30 p . m . ; and 3 : 00 - 4 : 00 p . m .\nall sessions will be held at the doubletree hotel .\nto register , click on this link to go directly to the development center\nfor those of you who have attended the training before and who are familiar\nwith the past performance management process , there have been some\nmodifications :\n1 . the performance management process is now enron wide . all enron feedback\nforms have been reduced to three ( vice president ( vp ) / managing director\n( md ) ; management / professional ; and administration / support ) , which all use\nthe following criteria :\n? innovation / entrepreneurship\n? communication / setting direction\n? teamwork / interpersonal\n? leadership / vision / values\n? business instinct\n? analytical / technical\n2 . the following six performance ratings will be used consistently on the\nfinal feedback forms across enron :\nsuperior\nexcellent\nstrong\nsatisfactory\nneeds improvement\nissues\n3 . there will be four recognized peer groups across the company for purposes\nof the prc ( formerly the business review meetings ) meeting .\n? commercial\n? commercial support\n? technical\n? specialized technical\n4 . the performance review process will continue to be used to facilitate :\n? promotions - up to director level only . there will be no officer promotions\nto vp / md at mid - year\n? feedback to employee\n? compensation decisions\n? sharing of performance rating at manager \u0001 , s discretion\n5 . prc meetings will be reviewed by both functional area & business units\nboth functional areas and business units will participate in the rating of\nemployees to cover both solid and dotted line reporting relationships .\nfunctional prc meetings will take place first , followed by the final business\nunit meetings . difference in views on an individual employee \u0001 , s rating should\nbe discussed and consensus should be reached . the functional area meetings\nare :\n- accounting\n- human resources\n- government affairs\n- rac\n- global finance\n6 . the pep system is now available via the intranet to allow greater access\nfrom global locations and remotely . the functionality is essentially the\nsame . if you would like further information on how to use this system you may\ngain access to the quick reference guide by clicking on the attached\nweblinkhttp : / / home . enron . com / announce / . pdf . if the\nquick reference does not display correctly on your pc , call your help desk\nfor assistance , or irma alvarez at 713 - 853 - 1543 to get a hard copy .\n7 . the general responsibilities remain the same regarding the overall\nprocess :\nemployee / reviewer responsibilities :\nselect 5 - 7 reviewers\ncomplete self - assessment\ncomplete requested feedback forms\nreviewers who cannot provide feedback use the decline request feature\nsupervisor responsibilities :\napprove reviewers ( at least 3 of the employee ' s choices )\ncommunicate modifications to employee\nparticipate in prc meetings as required\nsummarize feedback and complete appropriate feedback form\ncommunicate feedback to the employee\nschedule for mid - year performance review\nmay 15 pep system opens for feedback\njune 9 pep system closes for feedback\njune 12 functional / business unit prc meetings begin\njuly 20 prc meetings should finish\njuly 31 / august 1 vp & md prc meeting\nas always , if you have further questions on the performance management\nprocess , you may contact your hr representative . | 0 |\n| 992 | ham | Subject: enron / hpl actuals for june 15 , 2000\nteco tap 115 . 000 / hpl iferc ; 10 . 000 / enron\ntexoma 0\nls hpl lsk 30 . 000 / enron | 0 |\n| 4894 | spam | Subject: we are the best qns\nlook at this of - fers :\nv - codin - 225 . 00 ( 90 pi lls )\nvalliuum - 153 . 00 ( 90 pi lls )\nvi graa - 270 . 00 ( 90 pi lls )\ncai llis - 348 . 00 ( 90 pi lls )\ncodeinne - 126 . 00 ( 90 pi lls )\nxia naax - 171 . 00 ( 90 pi lls )\nall orderrs are delivered by fedex with full tracking 24 / 7 .\nsatisfactiionnss guaaranteeed . . .\nhttp : / / www . ultrameds 4 u . com\nto get rid of maiiling list :\n | 1 |\n| 3348 | ham | Subject: re : epgt\ngloria , the difference between the two pipes for july 2000 is the actuals came in lower than what was nominated and scheduled on mops . there isn ' t anything we can do about that difference , hopefully there is some kind of oba that takes those variances .\nsabra\n- - - - - original message - - - - -\nfrom : barkowsky , gloria g .\nsent : friday , june 22 , 2001 4 : 50 pm\nto : garcia , clarissa ; farmer , daren j . ; dinari , sabra l .\nsubject : epgt\nclarissa - thanks so much for all your help with this pipe ! everything looks great . i just have a couple of paths\nthat i need to finish it :\njanuary 2000 - i need deal # 854688 pathed for epgt and for tetc . according to the invoice , we should have\n11 , 129 dth on the interconnect .\nfebruary 2000 - i need deal # 871184 pathed for hpl and chan . hpl should have 3 , 600 dth and chan should\nhave 11 , 500 dth on the interconnect .\njuly 2000 - deal # 871172 has an interconnect issue . according to mops contract # 105124 , they received 8 , 275 dth\non the matagorda 624 , but according to epgt , they delivered 10 , 362 dth to hpl ( ? ) could this possibly\nneed to be split somehow , or do you have any other ideas ?\nlet me know . thanks , gloria 3 - 7118 | 0 |\n| 4961 | spam | Subject: keep your immune system strong\nkeep your immune system strong\nhttp : / / crohellocro . info / ps\ngo here for removal\nhttp : / / www . myfriendlyshop . com / gone\n | 1 |\n| 2331 | ham | Subject: enron / hpl actuals for january 2 , 2001\nteco tap 30 . 000 / enron\nls hpl lsk ic 30 . 000 / enron | 0 |\n| 3897 | spam | Subject: discreet cheapest prescri ^ ption dru & gs online !\n | 1 |\n| 4647 | spam | Subject: cheapest meds you ' ll find .\ndiscount drugs . . . save over 70 %\nincluding new softtabs ! the viagra that disolves under the tongue ! !\nsimply place 1 half a pill under your tongue , 15 min before sex .\nyou will excperience :\n- a super hard erection\n- more pleasure\n- and greater stamina ! !\nwe ship world wide , and no prescription is required ! !\neven if you ' re not impotent , viiagra will increase size , pleasure and power !\ngive your wife the loving she deserves ! ! !\nwe are cheaper supplier on the internet . retail price is 15 ea , = (\nour internet price is 1 . 17 each ! ! ! = )\nmany many other meds available .\nthanks for your time !\nhttp : / / aujobs . net / ? aa\ncheck out our party pack as well !\nconfidentiality assured !\n | 1 |\n| 2819 | ham | Subject: neon lesson # 5\nplease respond to here is your next lesson . . . have fun ! !\n- experiencing god week 5 . doc | 0 |\n| 3762 | spam | Subject: fwd : transferring today ?\nrn $ 0 by tomom . nling , nmicks , npe . . . juest incr honeple . e arpting onlicatir aited tio apayjupy thowing uto yowser tt staay . . .\nwwlearunts . us\nowners holiday ' s holidays default ' s .\ntrap pack carefully log society ' s home advising .\nreference home ' s affair reference ' s honest expressing expression trap ' s hope affair ' s define pack ' s soft .\n | 1 |\n| 4778 | spam | Subject: oxyyyyconttin no script needeeed\n{ taaabbsittabbs } { cccheaapicheeep }\n{ ssstttoooppp hhhhurting todayistop da pain now }\nhttp : / / offfmeebabyy\n | 1 |\n| 2583 | ham | Subject: feb 12 th sale to aquila\nfyi\ndaren - - - on the 12 th , there is a sale to aquila on the header system , for\n10 , 000 . . . . . . . . i think we were supplying it with aec . for whatever reason , i\nhad the aec 10 . 0 @ # 11230 into midcon . . . which isnt right because there was no\nmarket for it , and midcon wasnt looking for it , but the aquila deal was at\n# 700 on wgr ( aquila ) . so i went ahead and changed the aec ticket to match up\nwith the aquila deal . let me know if you think it is incorrect .\nthanks ,\nmark | 0 |\n| 2203 | ham | Subject: re : hpl meter # 980074 bammel hpl d / p to transco\ndaren - what happened in feb . was that transco had allocated a different\namount other than our measurement . i had been working with fred on getting\nsome allocations resolved for several different months . transco told us they\nwould not go back and reallocate due to the statute of limitations ( 6\nmonths ) . february had a significant amount not allocated . we just need a\ndeal set up so we can write these volumes off . let me know if you have any\nmore questions .\naim\nclem cernosek\n12 / 12 / 2000 01 : 09 pm\nto : aimee lannou / hou / ect @ ect\ncc :\nsubject : re : hpl meter # 980074 bammel hpl d / p to transco\nplease response .\nthanks , clem\n- - - - - - - - - - - - - - - - - - - - - - forwarded by clem cernosek / hou / ect on 12 / 12 / 2000 01 : 13\npm - - - - - - - - - - - - - - - - - - - - - - - - - - -\ndaren j farmer\n12 / 12 / 2000 12 : 35 pm\nto : clem cernosek / hou / ect @ ect\ncc :\nsubject : re : hpl meter # 980074 bammel hpl d / p to transco\nwhat was going on in feb ?\nd\nclem cernosek\n12 / 11 / 2000 04 : 27 pm\nto : daren j farmer / hou / ect @ ect\ncc : aimee lannou / hou / ect @ ect\nsubject : hpl meter # 980074 bammel hpl d / p to transco\ndaren\nduring the period of 1 / 1 / 99 to 9 / 30 / 2000 , the above meter has recorded flow\non the following days :\ndays mmbtus\n11 / 12 / 99 ( 58 )\n12 / 23 / 99 ( 133 )\n2 / 1 / 00 ( 463 )\n2 / 2 / 00 ( 463 )\n2 / 3 / 00 ( 463 )\n2 / 4 / 00 ( 463 )\n2 / 5 / 00 ( 463 )\n2 / 6 / 00 ( 463 )\n2 / 7 / 00 ( 463 )\n2 / 8 / 00 ( 463 )\n2 / 9 / 00 ( 463 )\n2 / 10 / 00 ( 463 )\n2 / 11 / 00 ( 463 )\n2 / 12 / 00 ( 463 )\n2 / 13 / 00 ( 463 )\n2 / 14 / 00 ( 463 )\n2 / 15 / 00 ( 464 )\n2 / 16 / 00 ( 463 )\n2 / 17 / 00 ( 463 )\n2 / 18 / 00 ( 463 )\n2 / 19 / 00 ( 463 )\n2 / 20 / 00 ( 463 )\n2 / 21 / 00 ( 463 )\n2 / 22 / 00 ( 463 )\n2 / 23 / 00 ( 463 )\n2 / 24 / 00 ( 463 )\n2 / 25 / 00 ( 463 )\n2 / 26 / 00 ( 463 )\n2 / 27 / 00 ( 463 )\n2 / 28 / 00 ( 463 )\n2 / 29 / 00 ( 464 )\n6 / 28 / 00 78\n9 / 14 / 00 499\n( 13 , 043 )\ncurrently , these volumes are being booked to hpl strangers gas contract .\nlogistics needs approval to writeoff these volumes to unaccounted for gas .\nif you have any questions , please contact aimee lannou @ x - 30506 .\nthanks , clem\nps :\napproval to writeoff the volumes to unaccounted for gas | 0 |\n| 1904 | ham | Subject: cleburne - tenaska iv plant\ndaren ,\ni ' m trying to put together the 2001 operating budget for the plant . i need a\nconservative forecast , per month , of the price that could be obtained by\nselling our excess volumes .\nthanks . | 0 |\n| 1080 | ham | Subject: ami , , ,\nper our conversation , i would perfer the 2 , 000 difference be placed on the oba\nbetween lsp and teco ,\nbecause we requested to cut the flow .\nthanks ! !\n- - - - - - - - - - - - - - - - - - - - - - forwarded by tim powell / lsp / enserch / us on 06 / 27 / 2000\n10 : 58 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\nami . chokshi @ enron . com on 06 / 27 / 2000 08 : 42 : 09 am\nto : tim powell / lsp / enserch / us @ tu\ncc : charlie stone / texas utilities @ tu , daren . j . farmer @ enron . com\nsubject :\nhey tim ,\nfor may 12 , our supply shows that 8 . 000 did flow even though you cut flow\nto 6 . 0 . let me know how you want to handle the situation . sorry for the\ninconvenience .\nami | 0 |\n| 256 | ham | Subject: 5 th changes @ duke and air liquide\n- - - - - - - - - - - - - - - - - - - - - - forwarded by ami chokshi / corp / enron on 02 / 04 / 2000\n11 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\ntroy _ a _ benoit @ reliantenergy . com on 02 / 04 / 2000 11 : 06 : 27 am\nto : ami chokshi / corp / enron @ enron\ncc :\nsubject : 5 th changes @ duke and air liquide\n( see attached file : egmnom - feb . xls )\n- egmnom - feb . xls | 0 |\n| 2789 | ham | Subject: imbalance gas\njust in case worse comes to worse .\n- - - - - - - - - - - - - - - - - - - - - - forwarded by mary poorman / na / enron on 03 / 21 / 2001 11 : 29 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : juliann kemp / enron @ enronxgate on 03 / 21 / 2001 10 : 39 am\nto : mary poorman / na / enron @ enron\ncc :\nsubject : imbalance gas\nmary we just have two . thanks - julie\ncontract 012 - 87794 - 02 - 001 ( delivery )\nmeter 981506\nwe owe them 21 , 771\n981244 ( delivery ) koch refinery\nwe owe them 16 , 810 | 0 |\n| 4381 | spam | Subject: pictures\nstreamlined denizen ajar chased\nheavens hostesses stolid pinched saturated\nstaten seventeens juggler abashed\nice guts centrifugal bauxite wader\nshyness whirr ukrainian understandingly conditioner\nbarges entitles vanderpoel\npreset wigwam storming alexei\nsupergroup tab mare\nbirthright brutalize tolerates depots bubbling\n- -\nphone : 439 - 120 - 6060\nmobile : 590 - 203 - 5805\nemail : darden . audley @ houston . rr . com\n | 1 |\n| 760 | ham | Subject: mid year prc meeting\ni would like to have our prc meeting on thursday , 6 / 8 . because of trading ,\nwe will not be able to start until noon . please confirm to me asap ( by end\nof day , today ) that you will be available . please keep in mind that we will\nwent last time from 1 : 00 pm until almost midnight . your commitment of this\ndate will include the evening hours , unless of course , we work quickly and\nefficiently ! ! ! sally ' s meeting is scheduled for tuesday , 6 / 13 , and i plan to\nbe on vacation on friday , 6 / 9 . therefore , this is the lastest date that we\ncan meet . please make every effort to make this work .\nthanks . | 0 |\n| 4979 | spam | Subject: penny stocks are about timing\nnomad international inc . ( ndin )\na multi - national internet communications company developing cost\neffective telecommunications through voice over internet protocol ( voip )\ntechnologies .\nshares outstanding : 34 , 0 oo , 000\nfloat : 4 , 000 , 0 oo\ncurrent price : o . 09\nwiil it continue higher ? watch this one friday as we know many of you\nlike momentum .\nbreaking news ! !\nmay 18 - - nomad international inc . ( ndin ) commented today on the recent\nannouncement by the canadian radio - teievision and teiecommunications\ncommission ( crtc ) that they would reguiate voice over internet protoco |\n( voip ) service only when it is provided and used as local telephone\nservice .\nin its decision , the crtc determined that in an effort to buiid\nsustainable competition in | ocal teiephone markets , the incumbent carriers\nwiil not be permitted to price their local voip services below cost to\nstifie competition .\nthe ruling is a very positive one for nomad in our efforts to enter\nthe canadian market with our products via internet service providers ,\ncabie companies and virtual operators . the ruling permits us to enter the\nmarket with a competitive framework , stated jan oiiver , ceo of nomad\ninternationa | inc .\nthe key to nomad ' s entry into the voip market is the ability of its\nproducts to offer services to both broadband and dia | - up customers . though\nbroadband is gaining more and more acceptance and utiiization\nworldwide , dial - up remains the primary source of internet connectivity . in the\nu . s . alone , there are over 200 , oo 0 , 000 users of the internet . of the\ntota | users in the u . s . , the total number of users of broadband is only\napproximately 4 o , 0 oo , 00 o ; ( stats by the yankee group ) dia | - up therefore\nrepresents approximately 8 o % of the entire internet connectivity market .\nthe percentage of dia | - up versus broadband users woridwide is even\nhigher .\nnomad ' s ability to offer voip products to dial - up customers and service\nproviders not only offers significant potentia | for market penetration ,\nbut also sets the company apart from its competition in the marketplace\nby offering a unique , proprietary and easiiy adaptabie product .\nabout nomad international inc .\nnomad international inc . is a muiti - national internet communications\ncompany deveioping cost effective telecommunications through voice over\ninternet protocol ( voip ) technoiogies . the company ' s revolutionary voip\nproduct line ca | | ed nomad systems that has dia | - up , broadband , dsl ,\ncable , sate | | ite and wireless capabilities . the company pians on\ntargeting : 1 ) national fixed | ine ii iii tier carriers which are interested in\neffectively competing with the dominant carrier in their marketpiace ,\n2 ) large muitinationa | corporations which need to have us or european\npresence by having , ( for exampie ) , a united states number ringing in\ntheir offices in guatemala or london - - offering business partners a more\neconomical way to communicate , and 3 ) immigrants in north america , a\nmeans of significantiy | owering their communication expense with their\nreiatives in their country of origin .\nconclusion :\nthe exampies above show the awesome , earning potential of little known\ncompanies that explode onto investor ' s radar screens ; many of you are\naiready famiiiar with this . is ndin poised and positioned to do that for\nyou ? then you may feel the time has come to act . . . and piease watch\nthis one trade friday ! go ndin .\npenny stocks are considered highiy speculative and may be unsuitabie\nfor al | but very aggressive investors . this profiie is not in any way\naffiliated with the featured company . we were compensated 3 ooo do | | ars\nto distribute this report . this report is for entertainment and\nadvertising purposes oniy and should not be used as investment advice .\nif you wish to stop future maiiings , or if you fee | you have been\nwrongfuily piaced in our membership , please go here or send a biank\ne mail with no thanks in the subject to\nnoneedl 020 @ yahoo . com\n | 1 |\n| 4162 | spam | Subject: anomaly boys from 3881\nuosda apaproved mledms heure\ncrack mutagen poliomyelitis axisymmetric virus bernoulli pervade cadenza arena martin cardioid familiar bladdernut inductee donor you tranquil bar kingdom dinnerware pedagogy traipse chromate idle mph diligent company contributor bal\nantipodean escadrille stan affiance antagonist roil siren conrad repression bluejacket conduce continue myriad configuration brute anthem yore pessimal turpitude bum 3\nmacintoshdogleg | 1 |\n| 1428 | ham | Subject: re : meter # : 1266 ; august 2000 / allocation exception\nconoco has nominated 5 . 0 / d at this meter . conoco transport can be allocated\nthe entire meter flow for the days in which the meter flow\nexceed 5 . 0 mm because they are the only party doing business at the meter .\nhpl may also be able to extract a sell for this overage which is why i\nwanted you to be aware of the daily activity thus far .\n- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 08 / 21 / 2000\n01 : 57 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : lee l papayoti on 08 / 21 / 2000 01 : 44 pm\nto : robert e lloyd / hou / ect @ ect\ncc : sherlyn schumack / hou / ect @ ect , anita luong / hou / ect @ ect , daren j\nfarmer / hou / ect @ ect , gary a hanks / hou / ect @ ect , pat clynes / corp / enron @ enron\nsubject : re : meter # : 1266 ; august 2000 / allocation exception\nwhy are these volumes flowing ?\nfrom : robert e lloyd 08 / 21 / 2000 01 : 36 pm\nto : lee l papayoti / hou / ect @ ect\ncc : sherlyn schumack / hou / ect @ ect , anita luong / hou / ect @ ect , daren j\nfarmer / hou / ect @ ect , gary a hanks / hou / ect @ ect , pat clynes / corp / enron @ enron\nsubject : re : meter # : 1266 ; august 2000 / allocation exception\nshould i roll this deal to cover august 2000 activity ?\nvolumes todate are as follows : 82 mm 8 / 16\n85 mm 8 / 17\n65 mm 8 / 18\n57 mm 8 / 19\n60 mm 8 / 20\nsitara ticket # : 363514\nthese small meter flows are causing allocation exceptions for august .\n- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 08 / 21 / 2000\n01 : 27 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : robert e lloyd 08 / 11 / 2000 03 : 17 pm\nto : howard b camp / hou / ect @ ect , rita wynne / hou / ect @ ect\ncc : pat clynes / corp / enron @ enron , daren j farmer / hou / ect @ ect\nsubject : re : meter # : 1266 ; july 2000 activity / allocation exception\nfyi\n- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 08 / 11 / 2000\n03 : 16 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : robert e lloyd on 08 / 11 / 2000 03 : 16 pm\nto : lee l papayoti / hou / ect @ ect\ncc :\nsubject : re : meter # : 1266 ; july 2000 activity / allocation exception\nthe volumes are as follows : july lst 414 mmbtu\njuly 31 12 mmbtu\ntotal : 426 mmbtu ' s\nalso , the sitara deal # is : 363514\nfrom : lee l papayoti on 08 / 11 / 2000 02 : 02 pm\nto : robert e lloyd / hou / ect @ ect\ncc : howard b camp / hou / ect @ ect , pat clynes / corp / enron @ enron\nsubject : re : meter # : 1266 ; july 2000 activity / allocation exception\nplease set up a ticket priced at gas daily houston ship channel midpoint\nminus $ 0 . 03\nalso , can you let me know the exact volumes in question on july 1 and july\n31 ? dorcheus wants to know . me too .\nthanks\nlee\nto : lee l papayoti / hou / ect @ ect\ncc : howard b camp / hou / ect @ ect , pat clynes / corp / enron @ enron\nsubject : re : meter # : 1266 ; july 2000 activity / allocation exception\njust a reminder that \" allocation close \" is monday , august 14 th .\na sitara ticket is needed to set up an acctg . arrangement which will\neliminate the allocation exception for meter # 981266\n{ victoria station # 2 / brandywine } .\nfrom : lee l papayoti on 08 / 09 / 2000 03 : 33 pm\nto : robert e lloyd / hou / ect @ ect\ncc :\nsubject : re : meter # : 1266 ; july 2000 activity / allocation exception\ni ' ll get you a price tomorrow when i meet with him . . .\nfrom : robert e lloyd 08 / 09 / 2000 12 : 50 pm\nto : lee l papayoti / hou / ect @ ect\ncc : daren j farmer / hou / ect @ ect , pat clynes / corp / enron @ enron , rita\nwynne / hou / ect @ ect , howard b camp / hou / ect @ ect\nsubject : meter # : 1266 ; july 2000 activity / allocation exception\ni spoke with bob dorcheus , brandywine about this issue and he suggest you\nand he get together and agree on a\nprice because the gas flowed into the plant .\nthis gas flowed without a nomination .\n- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 08 / 09 / 2000\n12 : 47 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\nenron north america corp .\nfrom : gary a hanks 08 / 09 / 2000 11 : 27 am\nto : robert e lloyd / hou / ect @ ect\ncc : earl tisdale / hou / ect @ ect , pat clynes / corp / enron @ enron , rita\nwynne / hou / ect @ ect , howard b camp / hou / ect @ ect\nsubject : meter # : 1266 ; july 2000 activity / allocation exception\nthe volumes on meter # 1266 for 7 / 1 / 00 and 7 / 31 / 00 are valid gas flow . 7 / 1 / 00\nvolumes are carry over from june activity ( meter was shut in a little after\n9 : 00 am on 7 / 1 / 00 ) . 7 / 31 / 00 volumes were caused by the plant bringing on\nthe meter before 9 : 00 am on 8 / 1 / 00 .\nif you have any questions please call . 36449 .\nthanks\ngary h\n- - - - - - - - - - - - - - - - - - - - - - forwarded by gary a hanks / hou / ect on 08 / 09 / 2000 11 : 18\nam - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : robert e lloyd 08 / 09 / 2000 11 : 17 am\nto : gary a hanks / hou / ect @ ect , earl tisdale / hou / ect @ ect\ncc : pat clynes / corp / enron @ enron , rita wynne / hou / ect @ ect , howard b\ncamp / hou / ect @ ect\nsubject : meter # : 1266 ; july 2000 activity / allocation exception\nplease verify the volume on meter # : 1266 for july lst & 31 st are valid gas\nflow .\nbrandywine did not nominate any activity at this meter for july 2000 . | 0 |\n| 4365 | spam | Subject: slutty milf wants to meet you\ntake that !\n' ilaa - liqaa\n | 1 |\n| 2849 | ham | Subject: fw : crosstex energy , driscoll ranch # 1 , # 3 , meter nos . 9858 and\n9868\nplease note the following for april production regarding the crosstex\ncontract : 96048744 at the above referenced location .\nthank you ,\nmelissa\n- - - - - original message - - - - -\nfrom : bubert , jerry\nsent : thursday , march 22 , 2001 2 : 19 pm\nto : taylor , vance l .\ncc : flynn , shawna ; graves , melissa ; harris , joanne ; reinhardt , donald p . ;\nriley , brian ; smith , susan ; sweeney , christy ; walker , robert ; weissman , george\nsubject : crosstex energy , driscoll ranch # 1 , # 3 , meter nos . 9858 and 9868\nper section 2 . 2 of the gpa , crosstex has elected to sell 4000 mmbtu / d in the\naggragate at the base contract price of if hsc less $ 0 . 10 , and the excess of\nthe available gas over 4000 mmbtu / d in the aggragate at gda hsc less $ 0 . 15 . | 0 |\n| 1518 | ham | Subject: put the 10 on the ft\nthe transport volumes decreased from 25000 to 10000 . all 10000 should be on\ncontract 012 - 41991 - 203 .\nthanks ,\nami\n- - - - - - - - - - - - - - - - - - - - - - forwarded by ami chokshi / corp / enron on 08 / 31 / 2000\n10 : 54 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\nroyal _ b _ edmondson @ reliantenergy . com on 08 / 31 / 2000 10 : 47 : 37 am\nto : ami _ chokshi @ enron . com\ncc :\nsubject : put the 10 on the ft\n( see attached file : hpl - sept . xls )\n- hpl - sept . xls | 0 |\n| 404 | ham | Subject: 3 / 4 / 2000 and following noms\nhpl can ' t take the extra 15 mmcf / d over the weekend . we ' ll try next week ,\nbut for now the nom will stay at 60 mmcf / d , with redeliveries as they have\nbeen\n-\n50 into pg & e , 7 from fcv , and 3 at carthage .\n- - - - - - - - - - - - - - - - - - - - - - forwarded by bruce mcmills / ftworth / pefs / pec on\n03 / 03 / 2000\n09 : 42 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\nbruce mcmills\n03 / 03 / 2000 09 : 10 am\nto : dfarmer @ enron . com , briley @ enron . com , stacey . neuweiler @ enron . com\ncc : chad w . cass / gcs / cec / pec @ pec , william e . speckels / gcs / cec / pec @ pec , donna\nc . spencer / gcs / cec / pec @ pec , michael r . cherry / easttexas / pefs / pec @ pec ,\ndarrel f . bane / easttexas / pefs / pec @ pec\nsubject : 3 / 4 / 2000 and following noms\nthis is to nominate 75 , 000 mmbtu / d into eastrans for 3 / 4 / 2000 and following .\nwe will deliver 50 , 000 into pg & e , 7 , 000 from fuel cotton valley ( continue\n750\nmmbtu / d sale ) ,\nand 18 , 000 mmbtu / d into your cartwheel agreement at carthage . | 0 |\n| 2933 | ham | Subject: calpine daily gas nomination\n>\n>\njulie , as i mention earlier we hope to start the unit this afternoon but\nare still experiencing difficulties . i will keep you informed . thanks .\nricky a . archer\nfuel supply\n700 louisiana , suite 2700\nhouston , texas 77002\n713 - 830 - 8659 direct\n713 - 830 - 8722 fax\n- calpine daily gas nomination 1 . doc\n- calpine daily gas nomination 1 . doc | 0 |\n| 1409 | ham | Subject: industrial worksheets for august 2000 activity\nattached are the worksheets for august 2000 activity . there are three\ndifferent worksheets { 2 - supply & 1 - market } .\nthe market worksheet is preliminary and will continuously be updated\nthroughout the month .\nthe supply worksheets capture all \" buybacks and the relevant pricing data .\nthese three worksheets can be found in two separate files . o :\nlogistics / robert lloyd / buydeaug 2000 . xls . . . . . . . . . . . . . supply\no : logistics / ken\nsorry for the delay in providing you ' ll this data . | 0 |\n| 4807 | spam | Subject: important online banking alert\ndear valued citizensr bank member ,\ndue to concerns , for the safety and integrity of the online banking community we have issued the following warning message .\nit has come to our attention that your citizensr bank account information needs to be updated as part of our continuing commitment to protect your account and to reduce the instance of fraud on our website . if you could please take 5 - 10 minutes out of your online experience and renew your records you will not run into any future problems with the online service . however , failure to confirm your records may result in your account suspension .\nonce you have confirmed your account records your internet banking service will not be interrupted and will continue as normal .\nto confirm your bank account records please click here .\nnote :\nthis e - mail was sent on behalf of the online banking community , if you do not have an online banking account with charterr one then this message does not apply to you and you may ignore this message .\nthank you for your time ,\ncitizensr financial group .\n | 1 |\n\n", - "text/latex": "A data.frame: 5171 × 4\n\\begin{tabular}{llll}\n X & label & text & label\\_num\\\\\n & & & \\\\\n\\hline\n\t 605 & ham & Subject: enron methanol ; meter \\# : 988291\nthis is a follow up to the note i gave you on monday , 4 / 3 / 00 \\{ preliminary\nflow data provided by daren \\} .\nplease override pop ' s daily volume \\{ presently zero \\} to reflect daily\nactivity you can obtain from gas control .\nthis change is needed asap for economics purposes . & 0\\\\\n\t 2349 & ham & Subject: hpl nom for january 9 , 2001\n( see attached file : hplnol 09 . xls )\n- hplnol 09 . xls & 0\\\\\n\t 3624 & ham & Subject: neon retreat\nho ho ho , we ' re around to that most wonderful time of the year - - - neon leaders retreat time !\ni know that this time of year is extremely hectic , and that it ' s tough to think about anything past the holidays , but life does go on past the week of december 25 through january 1 , and that ' s what i ' d like you to think about for a minute .\non the calender that i handed out at the beginning of the fall semester , the retreat was scheduled for the weekend of january 5 - 6 . but because of a youth ministers conference that brad and dustin are connected with that week , we ' re going to change the date to the following weekend , january 12 - 13 . now comes the part you need to think about .\ni think we all agree that it ' s important for us to get together and have some time to recharge our batteries before we get to far into the spring semester , but it can be a lot of trouble and difficult for us to get away without kids , etc . so , brad came up with a potential alternative for how we can get together on that weekend , and then you can let me know which you prefer .\nthe first option would be to have a retreat similar to what we ' ve done the past several years . this year we could go to the heartland country inn ( www . . com ) outside of brenham . it ' s a nice place , where we ' d have a 13 - bedroom and a 5 - bedroom house side by side . it ' s in the country , real relaxing , but also close to brenham and only about one hour and 15 minutes from here . we can golf , shop in the antique and craft stores in brenham , eat dinner together at the ranch , and spend time with each other . we ' d meet on saturday , and then return on sunday morning , just like what we ' ve done in the past .\nthe second option would be to stay here in houston , have dinner together at a nice restaurant , and then have dessert and a time for visiting and recharging at one of our homes on that saturday evening . this might be easier , but the trade off would be that we wouldn ' t have as much time together . i ' ll let you decide .\nemail me back with what would be your preference , and of course if you ' re available on that weekend . the democratic process will prevail - - majority vote will rule ! let me hear from you as soon as possible , preferably by the end of the weekend . and if the vote doesn ' t go your way , no complaining allowed ( like i tend to do ! )\nhave a great weekend , great golf , great fishing , great shopping , or whatever makes you happy !\nbobby & 0\\\\\n\t 4685 & spam & Subject: photoshop , windows , office . cheap . main trending\nabasements darer prudently fortuitous undergone\nlighthearted charm orinoco taster\nrailroad affluent pornographic cuvier\nirvin parkhouse blameworthy chlorophyll\nrobed diagrammatic fogarty clears bayda\ninconveniencing managing represented smartness hashish\nacademies shareholders unload badness\ndanielson pure caffein\nspaniard chargeable levin\n & 1\\\\\n\t 2030 & ham & Subject: re : indian springs\nthis deal is to book the teco pvr revenue . it is my understanding that teco\njust sends us a check , i haven ' t received an answer as to whether there is a\npredermined price associated with this deal or if teco just lets us know what\nwe are giving . i can continue to chase this deal down if you need . & 0\\\\\n\t 2949 & ham & Subject: ehronline web address change\nthis message is intended for ehronline users only .\ndue to a recent change to ehronline , the url ( aka \" web address \" ) for accessing ehronline needs to be changed on your computer . the change involves adding the letter \" s \" to the \" http \" reference in the url . the url for accessing ehronline should be : https : / / ehronline . enron . com .\nthis change should be made by those who have added the url as a favorite on the browser . & 0\\\\\n\t 2793 & ham & Subject: spring savings certificate - take 30 \\% off\nsave 30 \\% when you use our customer appreciation spring savings\ncertificate at foot locker , lady foot locker , kids foot locker and at\nour online stores !\nwelcome to our customer appreciation spring savings certificate !\nuse the special certificate below and receive 30 \\% off your purchases either in our stores or online . hurry ! this 4 - day sale begins thursday , march 22 and ends sunday , march 25 .\nshare the savings today and e - mail this offer to your friends . many items already are reduced and the 30 \\% discount is taken off the lowest sale price .\nclick below to print your customer appreciation spring savings certificate . you must present this coupon at any foot locker , lady foot locker or kids foot locker store in the u . s . foot locker canada is not participating in this program .\nready , set , save !\nour spring savings discount will automatically appear when you use the links below or type camlem 21 into the promotion code box during checkout .\nfootlocker . com certificate code : camlem 21\nladyfootlocker . com certificate code : camlem 21\nkidsfootlocker . com certificate code : camlem 21\nremember , returns are hassle - free . simply bring your items to any of our stores nationwide or through the mail .\ndon ' t be left out - register today to learn about our new products , promotions , events and other specials . simply click below .\nterms and conditions . some exclusions apply , please see manager for complete details . certificate must be presented at the time of purchase and cannot be used in conjunction with any other discount offer or associate benefit . not redeemable for cash . applicable taxes must be paid by bearer . cannot be applied to prior purchases or to gift card purchases . void where prohibited , licensed or regulated . catalog exclusions apply . valid thursday , 3 / 22 / 01 through sunday , 3 / 25 / 01 . foot locker canada will not participate in this program .\nif you do not wish to receive future emails please click below to\nunsubscribe :\n & 0\\\\\n\t 4185 & spam & Subject: looking for medication ? we ` re the best source .\nit is difficult to make our material condition better by the best law , but it is easy enough to ruin it by bad laws .\nexcuse me . . . : ) you just found the\nbest and simpliest site for\nmedication on the net . no perscription , easy\ndelivery .\nprivate , secure , and easy .\nbetter see rightly on a pound a week than squint on a million .\nwe ` ve got\nanything that you will ever want .\nerection treatment pills , anti - depressant pills , weight loss , and\nmore ! http : / / splicings . bombahakcx . com / 3 /\nknowledge and human power are synonymous .\nonly high - quality stuff for low rates !\n100 \\% moneyback guarantee !\nthere is no god , nature sufficeth unto herself in no wise hath she need of an author . & 1\\\\\n\t 2641 & ham & Subject: noms / actual flow for 2 / 26\nwe agree\n- - - - - - - - - - - - - - - - - - - - - - forwarded by melissa jones / texas utilities on\n02 / 27 / 2001\n10 : 33 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\n\" eileen ponton \" on 02 / 27 / 2001 09 : 46 : 26 am\nto : david avila / lsp / enserch / us @ tu , charlie stone / texas utilities @ tu , melissa\njones / texas utilities @ tu , hpl . scheduling @ enron . com ,\nliz . bellamy @ enron . com\ncc :\nsubject : noms / actual flow for 2 / 26\ndate nom flow - mcf flow - mmbtu\n2 / 26 / 01 0 456 469\nbtu = 1 . 027 & 0\\\\\n\t 1870 & ham & Subject: nominations for oct . 21 - 23 , 2000\n( see attached file : hplnl 021 . xls )\n- hplnl 021 . xls & 0\\\\\n\t 4922 & spam & Subject: vocable \\% rnd - word asceticism\nvcsc - brand new stock for your attention\nvocalscape inc - the stock symbol is : vcsc\nvcsc will be our top stock pick for the month of april - stock expected to\nbounce to 12 cents level\nthe stock hit its all time low and will bounce back\nstock is going to explode in next 5 days - watch it soar\nwatch the stock go crazy this and next week .\nbreaking news - vocalscape inc . announces agreement to resell mix network\nservices\ncurrent price : \\$ 0 . 025\nwe expect projected speculative price in next 5 days : \\$ 0 . 12\nwe expect projected speculative price in next 15 days : \\$ 0 . 15\nvocalscape networks inc . is building a company that ' s revolutionizing the\ntelecommunications industry with the most affordable phone systems , hardware ,\nonline software , and rates in canada and the us . vocalscape , a company with\nglobal reach , is receiving international attention for the development of voice\nover ip ( voip ) application solutions , including the award - winning eyefontm , a\nsoftphone for real - time pc - to - phone . we are an advanced implementer of pbx\nsystems for companies , call centers , itsps and service providers .\nvocalscape has created software and interactive solutions revolving around\nglobal communications and data voice convergence . companies use vocalscape for\nvoice over internet protocol applications like ip pbxs , softswitches , pc 2 phone\nand web 2 phone , providing real - time human interaction and information delivery\nover the internet . through vocalscape ' s solutions , businesses can offer a\nquality voice service to anywhere in the world at rates that are significantly\nlower than current long distance charges . we develop software to run voip\nnetworks , and sell , install and service our own branded voip gateways and\ngatekeeper control software . we also license our software to customers who want\nto brand their own voip solutions .\nvocalscape is committed to making great technology ; challenging the status quo ,\nand building a 21 st century company that changes the way businesses communicate\nand interact through the internet .\ncurrent price : \\$ 0 . 025\nwe expect projected speculative price in next 5 days : \\$ 0 . 12\nwe expect projected speculative price in next 15 days : \\$ 0 . 15\nbreaking news - vocalscape inc . announces agreement to resell mix network\nservices\n- - - - - - - - - -\nkatonah , n . y . , / prnewswire - firstcall via comtex / - - vocalscape , inc . pink : vcsc ) ,\nan emerging leader in the development of voice over internet protocol ( voip )\ntelephony solutions , announced today it has entered into a sales agent agreement\nwith mix networks , inc . a voip enhanced telephony service provider .\nthis agreement provides vocalscape ' s turnkey calling card customers with access\nto mix networks services including north american dids ( phone numbers ) and\ndomestic long distance termination . vocalscape will also be able to supply their\nclients with enhanced voip products including pre - paid calling through mix\nnetworks north american network .\nwe are excited to help companies launch voip business models using our solution\nwith the whole picture from the software to the network needed to route the\ncalls . mix networks gives us the ability to offer wholesale monthly flat rate\nplans and dids to our clients that allow for us to build business models like\npopular voip companies such as vonage and packet 8 , says ryan gibson , vp\nvocalscape networks\nsome legal words before you continue :\ninformation within this email contains forward looking statements within the\nmeaning of section 27 a of the securities act of 1933 and section 21 b of the\nsecurities exchange act of 1934 . any statements that express or involve\ndiscussions with respect to predictions , goals , expectations , beliefs , plans ,\nprojections , objectives , assumptions or future events or performance are not\nstatements of historical fact and may be forward looking statements . forward\nlooking statements are based on expectations , estimates and projections at the\ntime the statements are made that involve a number of risks and uncertainties\nwhich could cause actual results or events to differ materially from those\npresently anticipated . forward looking statements in this action may be\nidentified through the use of words such as : projects , foresee , expects ,\nestimates , believes , understands will , part of : anticipates , or that\nby statements indicating certain actions may , could , or might occur . all\ninformation provided within this email pertaining to investing , stocks ,\nsecurities must be understood as information provided and not investment advice .\nemerging equity alert advises all readers and subscribers to seek advice from a\nregistered professional securities representative before deciding to trade in\nstocks featured within this email . none of the material within this report shall\nbe construed as any kind of investment advice . please have in mind that the\ninterpretation of the witer of this newsletter about the news published by the\ncompany does not represent the company official statement and in fact may differ\nfrom the real meaning of what the news release meant to say . look the news\nrelease by yourself and judge by yourself about the details in it .\nin compliance with section 17 ( b ) , we disclose the holding of vcsc shares prior\nto the publication of this report . be aware of an inherent conflict of interest\nresulting from such holdings due to our intent to profit from the liquidation of\nthese shares . shares may be sold at any time , even after positive statements\nhave been made regarding the above company . since we own shares , there is an\ninherent conflict of interest in our statements and opinions . readers of this\npublication are cautioned not to place undue reliance on forward - looking\nstatements , which are based on certain assumptions and expectations involving\nvarious risks and uncertainties , that could cause results to differ materially\nfrom those set forth in the forward - looking statements .\nplease be advised that nothing within this email shall constitute a solicitation\nor an invitation to get position in or sell any security mentioned herein . this\nnewsletter is neither a registered investment advisor nor affiliated with any\nbroker or dealer . this newsletter was paid \\$ 49000 from third party to send this\nreport . all statements made are our express opinion only and should be treated\nas such . we may own , take position and sell any securities mentioned at any\ntime . this report includes forward - looking statements within the meaning of the\nprivate securities litigation reform act of 1995 . these statements may include\nterms as projected speculative price expect , believe , may , will ,\nsoar move , undervalued and intend or similar terms .\n & 1\\\\\n\t 3799 & spam & Subject: report 01405 !\nwffur attion brom est inst siupied 1 pgst our riwe asently rest .\ntont to presyou tew cons of benco 4 . yee : fater 45 y . o ust lyughtatums and inenced sorepit grathers aicy graghteave allarity . oarity wow to yur coons , as were then 60 ve mers of oite .\nithat yoit ? ! berst thar ! enth excives 2004 . . .\n & 1\\\\\n\t 1488 & ham & Subject: enron / hpl actuals for august 28 , 2000\nteco tap 20 . 000 / enron ; 120 . 000 / hpl gas daily\nls hpl lsk ic 20 . 000 / enron & 0\\\\\n\t 3948 & spam & Subject: vic . odin n \\textasciicircum{} ow\nberne hotbox carnal bride cutworm dyadic\nguardia continuous born gremlin akin counterflow hereafter vocabularian pessimum yaounde cannel bitch penetrate demagogue arbitrary egregious adenosine rubin gil luminosity delicti yarmulke sauterne selfadjoint agleam exeter picofarad consulate dichotomous boyhood balfour spheric frey pillory hoosier fibonacci cat handful\n & 1\\\\\n\t 3418 & ham & Subject: tenaska iv july\ndarren :\nplease remove the price on the tenaska iv sale , deal 384258 , for july and enter the demand fee . the amount should be \\$ 3 , 902 , 687 . 50 .\nthanks ,\nmegan & 0\\\\\n\t 4791 & spam & Subject: underpriced issue with high return on equity\nstock report .\ndont sieep on this stock ! this is a hot one !\ncompany : gaming transactions inc .\nstock symbol : ggts\ncurrentiy trading at : o . 30\nrating : strong purchase\nnear - term target : 0 . 45\nlong - term target : 1 . oo\nbreaking news for ggts :\ngaming transactions inc . ( ggts ) , a \\textbar{} eading provider of online gaming\nporta \\textbar{} management is pleased to announce that it has launched its\nproprietary gaming portal ( k e n o . com ) furthermore , the company has begun an\nintensive marketing campaign to support the \\textbar{} aunch and establish itself\nas the \\textbar{} eader in the online gaming industry .\n( k e n o . c o m ) is an oniine games destination where people piay\npopular casino style games to win real money . the foundation of the site is\nan online version of keno . the game of keno uses 80 balls numbered 1\nthru 8 o . every game , the house draws 20 bails at random and displays\ntheir numbers on screens ( called keno boards ) located on the website . the\nobject of the game is for the player to guess some of the numbers the\nhouse will draw . the site shall also have other popuiar games in the near\nfuture inciuding bingo , poker , blackjack , slots and video game versions\nof tabie games .\npatrick smyth , ceo of gaming transactions inc . , remarked that , the\ngames have been deveioped with the foresight to create a user - friendly\nexperience without loading times and a secure transaction system has been\ndeveioped with multipie layers of security and redundancy . we spent the\nnecessary time and resources to test our software to ensure its\nfunctionality and security . consumer focus groups were used in the deveiopment\nprocess to make sure that our players had an opulent experience online ,\nand future marketing efforts wi \\textbar{} \\textbar{} be aimed customer service and\nattention .\nabout the company :\ngaming transactions inc . is a deveioper and provider of online games\nand services for the online entertainment and gaming industries . the\ncompany ! s centra \\textbar{} licensed games portal , ( k e n o . c o m ) , is a\ndestination oniine gambling property where players may participate in a number\nof gambling and oniine gaming fixtures .\nthe foundation of the site is of course an online version of keno . the\ngame of keno uses 8 o bails numbered 1 thru 80 . every game , the house\ndraws 2 o balls at random and displays their numbers on screens ( called\nkeno boards ) \\textbar{} ocated on the website . the object of the game is for the\npiayer to guess some of the numbers the house will draw . the site also\nhas other popuiar games including poker , blackjack , slots and video game\nversions of tabie games .\ngaming transactions inc . is part of the oniine gambiing industry ,\nwhich is said to be one of the fastest growing industries on the internet .\n! ' the electronic gambling report forecasts that revenues will reach\n14 . 5 biliion by 2006 ! ( market statistics : - informa media grp . giobal\nrevenues from oniine gambiing wi \\textbar{} \\textbar{} reach 14 . 52 bi \\textbar{} \\textbar{} ion in 20 o 6 , up from\n3 . 81 biilion this year . this is according to a report from the informa\nmedia grp . , which says that the us wi \\textbar{} \\textbar{} generate 24 percent of all online\ngambling revenues in 2 oo 6 , whereas europe wil \\textbar{} generate 53 percent .\nnorth american oniine gambling revenues are expected to reach 1 . 99 biliion\nthis year and 3 . 85 bi \\textbar{} \\textbar{} ion in 2 oo 6 . in europe , revenues wil \\textbar{} grow from\n1 . 29 billion this year to 7 . 64 biilion in 2 oo 6 . oniine gambling\nrevenues wi \\textbar{} \\textbar{} be smailer in asia - pacific 379 miliion this year and 2 . 13\nbillion in 2 oo 6 ) and in the rest of the worid 143 million this year to 886\nmi \\textbar{} \\textbar{} ion in 2 oo 6 ) . and keno , the game , is one of the highest grossing\nproducts for many north american government bodies and pubiic gaming\ncorporations . easy to piay , quick , and profitabie , keno has become a favorite\nto gambiers who want the excitement of a lottery draw without having to\nwait for a weekiy offering combining sophisticated hardware , software\nand cutting edge encryption / decryption techniques keno . com has deveioped\nand \\textbar{} icensed a system , which is an optima \\textbar{} method for online gaming .\ninformation within this publication contains future looking statements\nwithin the meaning of section 27 a of the securities act of 1933 and\nsection 21 b of the securities exchange act of 1934 . any statements that\nexpress or involve discussions with respect to predictions ,\nexpectations , beliefs , pians , projections , objectives , goals , assumptions or future\nevents or performance are not statements of historica \\textbar{} fact and may be\nfuture looking statements . future \\textbar{} ooking statements are based on\nexpectations , estimates and projections at the time the statements are made\nthat involve a number of risks and uncertainties which couid cause\nactual results or events to differ materia \\textbar{} \\textbar{} y from those presently\nanticipated . future \\textbar{} ooking statements in this action may be identified through\nthe use of words such as projects , foresee , expects , will , anticipates ,\nestimates , believes , understands or that by statements indicating\ncertain actions may , could , or might occur . these future - \\textbar{} ooking statements\nare based on information currentiy avaiiabie and are subject to a\nnumber of risks , uncertainties and other factors that couid cause ggts ' s\nactua \\textbar{} resuits , performance , prospects or opportunities to differ\nmaterialiy from those expressed in , or impiied by , these future - \\textbar{} ooking\nstatements . as with many microcap stocks , today ' s company has additiona \\textbar{} risk\nfactors that raise doubt about its ability to continue as a going\nconcern . ggts is not a reporting company registered under the securities act\nof 1934 and hence there is \\textbar{} imited public information avaiiable about\nthe company . these risks , uncertainties and other factors include ,\nwithout \\textbar{} imitation , the company ' s growth expectations and ongoing funding\nrequirements , and specificaily , the company ' s growth prospects with\nscalable customers . other risks include the company ' s limited operating\nhistory , the company ' s history of operating losses , consumers ' acceptance ,\nthe company ' s use of licensed technoiogies , risk of increased\ncompetition , the potentia \\textbar{} need for additional financing , the conditions and\nterms of any financing that is consummated , the limited trading market for\nthe company ' s securities , the possibie volatility of the company ' s\nstock price , the concentration of ownership , and the potentia \\textbar{} fluctuation\nin the company ' s operating results . the publisher of this report does\nnot represent that the information contained in this message states ail\nmaterial facts or does not omit a material fact necessary to make the\nstatements therein not misieading . a \\textbar{} \\textbar{} information provided within this\nreport pertaining to investing , stocks , securities must be understood\nas information provided and not investment advice . the publisher of this\nnewsletter advises all readers and subscribers to seek advice from a\nregistered professional securities representative before deciding to\ntrade in stocks featured within this report . none of the materia \\textbar{} within\nthis report shall be construed as any kind of investment advice or\nsolicitation . many of these companies are on the verge of bankruptcy . you can\nlose al \\textbar{} your money by investing in this stock . the pubiisher of this\nreport is not a registered investment expert . subscribers should not\nview information herein as \\textbar{} egal , tax , accounting or investment advice .\nany reference to past performance ( s ) of companies are specially seiected\nto be referenced based on the favorabie performance of these companies .\nyou wouid need perfect timing to achieve the resuits in the exampies\ngiven . there can be no assurance of that happening . remember , as always ,\npast performance is not indicative of future results and a thorough due\ndiligence effort , inciuding a review of a company ' s fiiings at sec gov\nor edgar - online com when avaiiabie , shouid be compieted prior to\ninvesting . al \\textbar{} factua \\textbar{} information in this report was gathered from pubiic\nsources , including but not \\textbar{} imited to company websites and company press\nreleases . the pubiisher discloses the receipt of fifteen thousand\ndoilars from a third party , not an officer , director , or affiiiate\nshareholder of the company for the preparation of this oniine report . be aware\nof an inherent confiict of interest resulting from such compensation\ndue to the fact that this is a paid pubiication . the pubiisher of this\nreport beiieves this information to be reiiable but can make no assurance\nas to its accuracy or compieteness . use of the materia \\textbar{} within this\nreport constitutes your acceptance of these terms .\nif you wish to stop future maiiings , or if you feel you have been\nwrongfuliy placed in our membership , piease go here or send a biank\ne mai \\textbar{} with no thanks in the subject to ( - stoxo 042 @ yahoo . com - )\n & 1\\\\\n\t 2643 & ham & Subject: re : first delivery - wheeler operating\nvance ,\ndeal \\# 643714 has been created and entered in sitara .\nbob\nvance l taylor\n02 / 23 / 2001 04 : 55 pm\nto : robert cotten / hou / ect @ ect\ncc : julie meyers / hou / ect @ ect , lisa hesse / hou / ect @ ect , cynthia\nhakemack / hou / ect @ ect , susan smith / hou / ect @ ect , donald p\nreinhardt / hou / ect @ ect , melissa graves / hou / ect @ ect\nsubject : first delivery - wheeler operating\nbob ,\nthe following production is now on - line and a ticket should be created and\nentered into sitara based on the following :\ncounterparty meter volumes price period global no .\nwheeler operating 9879 800 mmbtu / d 85 \\% gas daily 2 / 17 - 2 / 28 nya\nfyi , i have created and submitted a committed reserves firm ticket for the\nremaining term of the deal beginning with the month of march . additionally ,\nthis is a producer svcs . deal and should be tracked in the im wellhead\nportfolio . . . attached to the gathering contract .\nthanks ,\nvlt\nx 3 - 6353\n- - - - - - - - - - - - - - - - - - - - - - forwarded by vance l taylor / hou / ect on 02 / 23 / 2001\n04 : 21 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : esther buckley 02 / 22 / 2001 10 : 39 am\nto : molly l carriere / hou / ect @ ect , clem cernosek / hou / ect @ ect , donna\nconsemiu / hou / ect @ ect , robert cook / hou / ect @ ect , howard b camp / hou / ect @ ect ,\nlisa hesse / hou / ect @ ect , nathan l hlavaty / hou / ect @ ect , wayne e\nlightfoot / hou / ect , james mckay / hou / ect @ ect , mary m smith / hou / ect @ ect , steve\nhpl schneider / hou / ect @ ect , melissa graves / hou / ect @ ect , michael\nwalters / hou / ect @ ect , jill t zivley / hou / ect @ ect , mary jo johnson / hou / ees @ ees ,\nrita wynne / hou / ect @ ect , lauri a allen / hou / ect @ ect , cheryl\njones / gpgfin / enron @ enron , reid hansen / gco / enron @ enron , darron c\ngiron / hou / ect @ ect , o ' neal d winfree / hou / ect @ ect , susan smith / hou / ect @ ect ,\ngary bryan / hou / ect @ ect , gary a hanks / hou / ect @ ect , donald p\nreinhardt / hou / ect @ ect , vance l taylor / hou / ect @ ect , david\nbaumbach / hou / ect @ ect , robert cotten / hou / ect @ ect , brian m riley / hou / ect @ ect ,\njeff a austin / hou / ees @ ees , cynthia hakemack / hou / ect @ ect , dawn c\nkenne / hou / ect @ ect , lisa csikos / hou / ect @ ect , j r fosdick / gco / enron @ enron ,\ncarlos j rodriguez / hou / ect @ ect , stephanie gomes / hou / ect @ ect , pat\nclynes / corp / enron @ enron , tom acton / corp / enron @ enron , robert\nwalker / hou / ect @ ect , george weissman / hou / ect @ ect , joanne\nharris / na / enron @ enron , christy sweeney / hou / ect @ ect , earl tisdale / hou / ect @ ect ,\ndaren j farmer / hou / ect @ ect\ncc :\nsubject : first delivery - wheeler operating\nplease see attached letter & 0\\\\\n\t 3137 & ham & Subject: swift - may 2001 vols\nsean ,\nfyi , check the purchase from swift at the tailgate ( meter 9643 ) and make sure to nom the correct quantity .\nmary\n- - - - - - - - - - - - - - - - - - - - - - forwarded by mary poorman / na / enron on 04 / 26 / 2001 07 : 09 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : joan quick / enron @ enronxgate on 04 / 25 / 2001 06 : 13 pm\nto : carlos j rodriguez / hou / ect @ ect , mary poorman / na / enron @ enron , jackie young / hou / ect @ ect\ncc : brian m riley / hou / ect @ ect , mike morris / corp / enron @ enron\nsubject : swift - may 2001 vols\nhere is the may first of the month nom :\nking ranch plant 6 , 400 mmbtu / d & 0\\\\\n\t 1629 & ham & Subject: meter variances - ua 4 clean - up\ndaren / vance -\nthe two meters below are new and have unallocatable flow . . . . . . . i will need a\npurchase for each of them . please respond with a deal number , or further\nsuggestions for resolution so that i can clear this up as soon as possible .\nmary\nenron on 09 / 19 / 2000 08 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\nkatherine benedict @ ect\n09 / 18 / 2000 04 : 53 pm\nto : mary poorman / na / enron @ enron , fred boas / hou / ect @ ect , aimee\nlannou / hou / ect @ ect\ncc :\nsubject : meter variances - ua 4 clean - up\nhi guys ,\nplease take a look at the following meters which are showing up with\nvariances on my ua 4 report . once the variance has been cleared , please send\nme an e - mail . please try to clear these within the next couple of days .\nthanks ,\nkathy benedict\nmeter number : 9851\nvariance : 11 , 204\nmeter type : daily swing\nproduction month : august 2000\nlogistics contact : none\nvolume mgmt contact : anita luong\nmeter number : 9852\nvariance 568\nmeter type : daily swing\nproduction month : august 2000\nlogistics contact : none\nvolume mgmt contact : anita luong & 0\\\\\n\t 1858 & ham & Subject: additional recruiting\ni ' m happy to introduce molly magee as the newest addition to the eops\nrecruiting team . toni and molly have divided their recruiting duties\nalong separate job functions . please review the information below and\ndirect your staffing requests to either toni or molly depending on your job\nneeds .\ntoni graham - accounting , risk and confirmation / settlements positions ( or\nopenings requiring a similar skill set of this candidate pool )\nmolly magee - logistics , global data management , research , legal , competitive\nanalysis , contract administration and other positions ( or openings requiring\na similar skill set of this candidate pool )\nthanks for your assistance ,\nhgm & 0\\\\\n\t 3261 & ham & Subject: fw : ercot load comparison\n- - - - - original message - - - - -\nfrom : gilbert - smith , doug\nsent : tuesday , may 22 , 2001 8 : 38 am\nto : tmartin @ enron . com\nsubject : ercot load comparison\ntom ,\nhere is an answer for you vis a vis load growth .\nhope it helps ,\ndoug\n- - - - - - - - - - - - - - - - - - - - - - forwarded by doug gilbert - smith / corp / enron on 05 / 22 / 2001 08 : 35 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : kevin cline / enron @ enronxgate on 05 / 21 / 2001 03 : 26 pm\nto : doug gilbert - smith / corp / enron @ enron\ncc : eric saibi / corp / enron @ enron\nsubject : ercot load comparison\nplease find attached spreadsheet that compares hot days from may 2000 and may 2001 . there are two tabs , one tab contains the days may 16 - 18 , 2000 and the other tab contains the days may 14 - 18 , 2001 . each tab contains both the load data and temp data particular to the days in question . the days most directly comparable are may 17 , 2001 ( thursday ) and may 18 , 2000 ( thursday ) , although the two days preceding may 18 , 2000 were slightly warmer than the two days preceding may 17 , 2001 . the peak on 5 / 17 / 2001 , 44 , 923 mw , is 2 . 78 \\% higher than the peak on 5 / 18 / 2000 , 43 , 709 mw . with similarly warm days before 5 / 17 / 2001 as there were before 5 / 18 / 2000 , the peak would obviously have been even higher . this would put the year - over - year growth in excess of 3 \\% . i believe this falls right in line with the growth rate year - over - year from an earlier analysis , somewhere in the range of 3 . 5 \\% to 4 \\% .\nlet me know if you have any questions or comments . & 0\\\\\n\t 3447 & ham & Subject: meter 6461 , concorde churchill\none year rate for this one will be \\$ . 35 / mm for volumes greater than 300 mm / day . price for volumes 300 mm / day or less will be \\$ . 45 / mm plus a \\$ 350 per month metering fee . this rate would cover transport to a competitive ship channel market such as equistar channelview . transport rates for a 6 month term are not significantly different - \\$ . 33 / mm for volumes greater than 300 mm / day and \\$ . 42 / mm plus the metering fee for volumes 300 mm / day or less . these rates assume a september 1 , 2001 start . these rates good until friday , august 31 , 2001 only ! ! ! get ' em while they ' re hot ! ! & 0\\\\\n\t 2459 & ham & Subject: hpl nom for january 25 , 2001\n( see attached file : hplnol 26 . xls )\n- hplnol 26 . xls & 0\\\\\n\t 2221 & ham & Subject: re : tenaska iv 10 / 00\nwe have received all of the money from the spot sales for tenaska iv in\noctober 2000 , except for the tenaska iv sale and the \\$ 0 . 04 fee .\nmegan & 0\\\\\n\t 4827 & spam & Subject: jump in to gain substantial ground immediately\nwe are very excited about this new upcoming stock about to explode\nmontana oil and gas , inc . ( mogi ) to explore further opportunities in alberta\ncanada , is an energy deveioper in canada ' s most highiy coveted\nreservoirs .\naggressive investors and traders may want to watch montana oi \\textbar{} and gas\nagain this morning ! montana oil and gas inc . ( mogi - news ) announces\nthat the syivan lake oil and gas project is sti \\textbar{} \\textbar{} awaiting a rig at this\ntime . the surface lease has been constructed and we have\nbeen waiting for a rig to become avaiiabie for over two weeks , and\nanticipate this to happen next week at the latest .\nthe company has a 25 \\% working interest in the syivan lake project .\nsymbo \\textbar{} - mogi\ncurrent price - . 26\nreasons to consider mogi :\n1 . price charts confirm oi \\textbar{} prices are experiencing the strongest bul \\textbar{}\nmarket in a generation .\n2 . natura \\textbar{} gas prices have tripled in the \\textbar{} ast two years .\n3 . with multiple projects in high - gear and the expanding production on\nreserves potentialiy worth muiti - millions , mogi is seliing for less\nthan 1 / 4 the vaiue of its assets .\n4 . montana oi \\textbar{} and gas specializes in using new technology to turn\nunproductive oi \\textbar{} and gas deposits into profitabie enterprises . aiready\nshares in the oi \\textbar{} and gas sectorare rising faster than the overa \\textbar{} \\textbar{} market .\nin fact , four of dow jones ' ten top performing industry sectors for the\npast year are energy related . but it ' s in the mid - sized explorers and\ndeveiopers like montana oi \\textbar{} ( mogi ) that the biggest gains are being\nmade . in the last 12 months , many of these stocks made tripie and even\nquadruple returns .\nbreaking news ! !\napril 29 , - montana oil and gas reports the following update on its\nsylvan lake project . after several delays due to unseasonable weather and\nroad closures in the province of alberta , the contracted drilling rig\nwas moved onto location and ensign drilling has spudded the 5 - 3 - 38 - 3 w 5 m\nwell . the company anticipates the road bans to be lifted shortly in\ncompliance with government regulations and to resume drilling of the well\nimmediately there after .\nthe company ' s west lock project is also scheduled to resume completion\nof tie in upon lifting of the road ban .\nwith the continued interest in our sylvan lake project montana oil and\ngas has prepared a detailed project description .\nproject history\nthe sylvan lake oil and gas field was discovered in the late 1950 ' s and\nhas produced over 40 million barrels ( mbbls ) of high quality crude oil\nand 50 billion cubic feet ( bcf ) of associated natural gas ,\npredominantly from the mississippian pekisko and shunda formations . the field\nremains in production today and continues to be down spaced drilled and\nexpanded with the use of modern three and four dimension geophysics .\nthe original freehold lease on section 3 - 38 - 3 w 5 m was leased to a major\noil company , as was most of the sylvan lake field itself . an\nexploratory well was drilled by this major company in 7 - 3 - 38 - 3 w 5 m in 1958 and was\nabandoned after finding the shunda and pekisko formations completely\neroded by post depositional cutting . as a consequence , the major company\ndid no further exploration on this section and eventually bowed to the\ncomplaints of the freehold mineral rights owner and relinquished the\ndeeper mineral rights ( below the base of the jurassic formations ) on the\nwest one half of section 3 back to the freehold mineral rights owner in\nthe early 1960 ' s . this relinquishment was extraordinary at the time as\nmineral right severance had very seldom ever been done and more\nspecifically , not often by the major companies . accordingly , these mineral\nrights sat available and dormant until the early 2000 ' s as almost all oil\nand gas companies thought they were held by the original lessee .\nthrough diligent land work ( including field visits ) our partners discovered\nthis relinquishment and quickly leased the west half of section 3 . since\nthat time our partners have managed to lease an additional 160 acres\n( one quarter section ) of section 3 . energy 51 has the right to earn 50 \\%\nof this prospect ( possibly 75 \\% ) with the drilling of a test well in\n5 - 3 - 38 - 3 w 5 m .\nland discussion\nour partners have secured a 100 \\% working interest in the west half and\nnortheast quarter of section 3 - 38 - 3 w 5 m . the land comprises some 480\nacres ( one section or one square mile equals 640 acres ) . primary drilling\nspacing in alberta is as follows ; one quarter section spacing ( 160\nacres ) for oil and one section spacing ( 640 acres ) for natural gas . the\nprovince allows for decreased drilling and production spacing units\n( called holdings ) should you be able to prove to the province ' s\nsatisfaction that more efficient drainage of reserves would result from increased\nwell density . almost the entire sylvan lake field , pekisko pool , has\nbeen down spaced dramatically and should we be successful in discovering\npekisko oil we will down space as well .\ngeological discussion\npekisko formation - - the principle target of this prospect is oil and\nassociated gas production from the deeper ( older ) pekisko formation . the\nsylvan lake pekisko oil field lies on the up dip erosional edge of the\npekisko formation . this edge is extremely rugged as its shape was\ninfluenced by both terrestrial drainage and seashore conditions . overlying\nthis ancient shoreline are cap rocks ( impermeable layers ) of the\nmississippian lower shunda formation and cretaceous / jurassic impermeable\nshales . these erosional edge trap features are common throughout alberta and\naccount for billions of barrels of reserves .\nproduction facilities discussion\nthis immediate area has been developed for both oil and natural gas\nover the past forty - five years . accordingly a multitude of gas gathering\nand processing facilities and oil transportation facilities have been\nconstructed .\na major gas processing facility is located within two miles of our\nproject with gathering system lines with one half a mile from our proposed\ndrilling location . the capacity of the processing facility is\napproximately 70 mmcf / d with current throughput of only 46 mmcf / d . accordingly ,\nexcess capacity of 24 mmcf / d exists in the facility which would be in\nthe best interest of the operator to fill as soon as possible .\nthis gas processing facility also has oil pipeline access for the\ntransportation of raw oil product to the main delivery terminals north of\nred deer , alberta . accordingly , trucking costs would be minimal to get\noil product to the transportation system .\nfor more detailed project description please see news release dated\n( fri , apr 29 ) .\ngood luck and successfu \\textbar{} trading .\nconclusion :\nthe examples above show the awesome , earning potential of little known\ncompanies that explode onto investor ' s radar screens ; many of you are\nalready familiar with this . is mogi poised and positioned to do that for\nyou ? then you may feel the time has come to act . . . and please watch\nthis one trade tuesday ! go mogi .\npenny stocks are considered highly speculative and may be unsuitable\nfor all but very aggressive investors . this profile is not in any way\naffiliated with the featured company . we were compensated 3000 dollars\nto distribute this report . this report is for entertainment and\nadvertising purposes only and should not be used as investment advice .\n & 1\\\\\n\t 1811 & ham & Subject: re : enron / hpl actuals for october 11 , 2000 - revision\nplease note that the pricing allocation of volumes for october 11 , 2000 should\nbe changed as follows .\nteco tap 40 . 000 / enron ; 25 . 209 / hpl iferc ; 84 . 791 / hpl gas daily\nthe total nomination of 775 . 000 subject to the iferc pricing was completed on\noctober 11 , 2000 . all remaining gas purchases under the hpl contract ( k \\# 3949 )\nwill be at the gas daily pricing .\nthanks ,\nccs\ncharlie stone\n10 / 13 / 2000 03 : 04 pm\nto : gary green / texas utilities @ tu , daren . j . farmer @ enron . com ,\ngary . a . hanks @ enron . com , carlos . j . rodriguez @ enron . com ,\nearl . tisdale @ enron . com , ami . chokshi @ enron . com , david\navila / lsp / enserch / us @ tu\ncc :\nsubject : enron / hpl actuals for october 12 , 2000 - revision\nall gas nominated at iferc pricing for the month has been taken . remaining\npurchases under k \\# 3949 will be at the gas daily pricing .\nteco tap 40 . 000 / enron ; 110 . 000 / hpl gas daily\n- - - - - - - - - - - - - - - - - - - - - - forwarded by charlie stone / texas utilities on\n10 / 13 / 2000\n02 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\ngary green\n10 / 13 / 2000 10 : 04 am\nto : charlie stone / texas utilities @ tu , gary green / texas utilities @ tu ,\ndaren . j . farmer @ enron . com , gary . a . hanks @ enron . com ,\ncarlos . j . rodriguez @ enron . com , earl . tisdale @ enron . com ,\nami . chokshi @ enron . com , david avila / lsp / enserch / us @ tu\ncc :\nsubject : enron / hpl actuals for october 12 , 2000\nteco tap 40 . 000 / enron ; 110 . 000 / hpl iferc & 0\\\\\n\t 2367 & ham & Subject: registration confirmation from spinner . com\nthank you for joining spinner . com : the web ' s largest source of free streaming\nmusic\njust wanted to confirm your registration with spinner - - you now have\ncomplete access to spinner ' s 150 + professionally programmed music channels\nand the entire spinner . com website . and just to remind you , the player , the\nwebsite , and ( most importantly ! ) the music are all totally free .\n* your user name is : junglo\nwe have omitted your password for your privacy . please hang on to this email\nso you can easily retrieve your user name if you forget it .\n* forget your password ? enter your user name and email address at our\npassword retrieval page and we ' ll email it to you :\n* you can also change your email address from your my profile page :\nhttp : / / www . spinner . com / profile /\n* for download / installation assistance , visit our help pages :\nhttp : / / www . spinner . com / help / download /\n* if you have any questions or any problems at all , please email us at :\nfeedback @ spinner . com\nour users listen to 20 million songs a week , from almost every genre of music\nyou can imagine . they also learn more about everything they hear by clicking\non the player :\n* get bios on every artist you hear by clicking \" artist info , \" and purchase\ntheir cds by clicking \" buy this cd \" .\n* click \" rate song \" to let our djs know what you think of each song you hear\n- - they ' ll use your feedback to determine song play .\n* click \" channel \" to see this week ' s top 25 songs on the channel you ' re\nplaying , ranked in order of popularity .\n* for even more great info on our channels and music , visit spinner . com . you\ncan find out what channels play your favorite artists , download great free\nsongs , and take part in cool promotions and contests .\nthanks again for registering . if you like what you hear , tell a friend about\nspinner .\nenjoy the music !\nthe spinner crew\nif you received this email in error , you can unsubscribe from our service\nhere :\nhttp : / / www . spinner . com / unsubscribe / & 0\\\\\n\t 2829 & ham & Subject: aep transition items\nattached is a brief memo outline some of the transtion issues with hpl to aep\nthis is the first draft .\nthe itilized items currently require some more action .\nplease add any items and forward back to me . i will update\nthanks\nbob & 0\\\\\n\t 3512 & ham & Subject: an inbound message for you has been quarantined\nyou have received this message because someone has attempted to send you an e - mail from outside of enron with an attachment type that enron does not allow into our messaging environment . your e - mail has been quarantined and is being held at the mailsweeper server .\nsender : colio @ houston . rr . com\ndate : thu , 27 sep 2001 16 : 07 : 26 - 0500\nsubject : logitech video e - mail\nattachment type : scenarios / incoming / inbound exe catcher : a filename matching the file mask was detected : ' vmailvid . exe ' .\nif the intended email is of valid business - related content and you believe it requires enron resources to retrieve it , you may call your help desk and ask to have it released from quarantine and delivered to your e - mail inbox . your message will be scanned and checked for viruses prior to requested release . if it contains a virus or there is reason to suspect it is malicious code , it will not be delivered .\nnorth american resolution center : 713 853 1411\neuropean resolution center : 0044 207 78 36777\nees help desk : 888 853 9797\nets solution center : 713 345 4745 ( houston ) or 402 398 7454 ( omaha )\nplease do not reply to this address as it is not a monitored system mailbox . & 0\\\\\n\t 441 & ham & Subject: re : valero gas marketing ; meter \\# : 8018 / sitara ticket \\# 148376\nplease zero out the volumes until further notice . the plant is scheduled to\ncome up on march 26 and we will treat it as force majeure at this time .\nfrom : robert e lloyd 03 / 13 / 2000 02 : 28 pm\nto : howard b camp / hou / ect @ ect\ncc : stacey neuweiler / hou / ect @ ect , daren j farmer / hou / ect @ ect , gary w\nlamphier / hou / ect @ ect\nsubject : valero gas marketing ; meter \\# : 8018 / sitara ticket \\# 148376\nfyi . . . only !\ngary agreed to let the deficiency volumes hit the buyback that is set\npresently .\n- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 03 / 13 / 2000\n02 : 25 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : robert e lloyd 03 / 13 / 2000 02 : 09 pm\nto : gary w lamphier / hou / ect @ ect , stacey neuweiler / hou / ect @ ect , daren j\nfarmer / hou / ect @ ect\ncc : pat clynes / corp / enron @ enron , aimee lannou / hou / ect @ ect\nsubject : valero gas marketing ; meter \\# : 8018 / sitara ticket \\# 148376\neffective march 11 th valero has not pulled any gas on a 35 . 0 / day\nnomination .\ndo you want to arrange a buyback for this activity . there is a buyback\nticket \\{ \\# 148381 \\} available\nto handle any underage .\ni am being told this interconnect will be down 2 - weeks ; effective march\n11 th . & 0\\\\\n\t ⋮ & ⋮ & ⋮ & ⋮\\\\\n\t 4453 & spam & Subject: economize 55 \\% and more with your recipes\nwe assists you economise on costly recipes\nmedicinal drugs with worths that are as much as 50 \\% less than retail\napothecary ' s shop alternatives .\nexamine costs\n & 1\\\\\n\t 747 & ham & Subject: memo from office of the chair\nthe mid - year performance management cycle will begin on may 15 with the\nopening of the pep system ( the online \" performance evaluation process \"\nfeedback system ) . you will be receiving your password for this system in a\nnote to go out later from pep . in preparation for the cycle , four training\nclasses will be offered to all new employees and to those employees who have\nnot previously attended training . enrollment for these classes will be\noffered through the development center \" ernie \" system . for employees who are\noutside the houston area , please contact your hr representative for more\ninformation .\nthese sessions will be held on :\nwednesday , may 10 from 9 : 00 - 10 : 00 a . m . , and three sessions to be held on\nthursday , may 11 from 9 : 00 - 10 : 00 a . m . ; 1 : 30 - 2 : 30 p . m . ; and 3 : 00 - 4 : 00 p . m .\nall sessions will be held at the doubletree hotel .\nto register , click on this link to go directly to the development center\nfor those of you who have attended the training before and who are familiar\nwith the past performance management process , there have been some\nmodifications :\n1 . the performance management process is now enron wide . all enron feedback\nforms have been reduced to three ( vice president ( vp ) / managing director\n( md ) ; management / professional ; and administration / support ) , which all use\nthe following criteria :\n? innovation / entrepreneurship\n? communication / setting direction\n? teamwork / interpersonal\n? leadership / vision / values\n? business instinct\n? analytical / technical\n2 . the following six performance ratings will be used consistently on the\nfinal feedback forms across enron :\nsuperior\nexcellent\nstrong\nsatisfactory\nneeds improvement\nissues\n3 . there will be four recognized peer groups across the company for purposes\nof the prc ( formerly the business review meetings ) meeting .\n? commercial\n? commercial support\n? technical\n? specialized technical\n4 . the performance review process will continue to be used to facilitate :\n? promotions - up to director level only . there will be no officer promotions\nto vp / md at mid - year\n? feedback to employee\n? compensation decisions\n? sharing of performance rating at manager \u0001 , s discretion\n5 . prc meetings will be reviewed by both functional area \\& business units\nboth functional areas and business units will participate in the rating of\nemployees to cover both solid and dotted line reporting relationships .\nfunctional prc meetings will take place first , followed by the final business\nunit meetings . difference in views on an individual employee \u0001 , s rating should\nbe discussed and consensus should be reached . the functional area meetings\nare :\n- accounting\n- human resources\n- government affairs\n- rac\n- global finance\n6 . the pep system is now available via the intranet to allow greater access\nfrom global locations and remotely . the functionality is essentially the\nsame . if you would like further information on how to use this system you may\ngain access to the quick reference guide by clicking on the attached\nweblinkhttp : / / home . enron . com / announce / . pdf . if the\nquick reference does not display correctly on your pc , call your help desk\nfor assistance , or irma alvarez at 713 - 853 - 1543 to get a hard copy .\n7 . the general responsibilities remain the same regarding the overall\nprocess :\nemployee / reviewer responsibilities :\nselect 5 - 7 reviewers\ncomplete self - assessment\ncomplete requested feedback forms\nreviewers who cannot provide feedback use the decline request feature\nsupervisor responsibilities :\napprove reviewers ( at least 3 of the employee ' s choices )\ncommunicate modifications to employee\nparticipate in prc meetings as required\nsummarize feedback and complete appropriate feedback form\ncommunicate feedback to the employee\nschedule for mid - year performance review\nmay 15 pep system opens for feedback\njune 9 pep system closes for feedback\njune 12 functional / business unit prc meetings begin\njuly 20 prc meetings should finish\njuly 31 / august 1 vp \\& md prc meeting\nas always , if you have further questions on the performance management\nprocess , you may contact your hr representative . & 0\\\\\n\t 992 & ham & Subject: enron / hpl actuals for june 15 , 2000\nteco tap 115 . 000 / hpl iferc ; 10 . 000 / enron\ntexoma 0\nls hpl lsk 30 . 000 / enron & 0\\\\\n\t 4894 & spam & Subject: we are the best qns\nlook at this of - fers :\nv - codin - 225 . 00 ( 90 pi lls )\nvalliuum - 153 . 00 ( 90 pi lls )\nvi graa - 270 . 00 ( 90 pi lls )\ncai llis - 348 . 00 ( 90 pi lls )\ncodeinne - 126 . 00 ( 90 pi lls )\nxia naax - 171 . 00 ( 90 pi lls )\nall orderrs are delivered by fedex with full tracking 24 / 7 .\nsatisfactiionnss guaaranteeed . . .\nhttp : / / www . ultrameds 4 u . com\nto get rid of maiiling list :\n & 1\\\\\n\t 3348 & ham & Subject: re : epgt\ngloria , the difference between the two pipes for july 2000 is the actuals came in lower than what was nominated and scheduled on mops . there isn ' t anything we can do about that difference , hopefully there is some kind of oba that takes those variances .\nsabra\n- - - - - original message - - - - -\nfrom : barkowsky , gloria g .\nsent : friday , june 22 , 2001 4 : 50 pm\nto : garcia , clarissa ; farmer , daren j . ; dinari , sabra l .\nsubject : epgt\nclarissa - thanks so much for all your help with this pipe ! everything looks great . i just have a couple of paths\nthat i need to finish it :\njanuary 2000 - i need deal \\# 854688 pathed for epgt and for tetc . according to the invoice , we should have\n11 , 129 dth on the interconnect .\nfebruary 2000 - i need deal \\# 871184 pathed for hpl and chan . hpl should have 3 , 600 dth and chan should\nhave 11 , 500 dth on the interconnect .\njuly 2000 - deal \\# 871172 has an interconnect issue . according to mops contract \\# 105124 , they received 8 , 275 dth\non the matagorda 624 , but according to epgt , they delivered 10 , 362 dth to hpl ( ? ) could this possibly\nneed to be split somehow , or do you have any other ideas ?\nlet me know . thanks , gloria 3 - 7118 & 0\\\\\n\t 4961 & spam & Subject: keep your immune system strong\nkeep your immune system strong\nhttp : / / crohellocro . info / ps\ngo here for removal\nhttp : / / www . myfriendlyshop . com / gone\n & 1\\\\\n\t 2331 & ham & Subject: enron / hpl actuals for january 2 , 2001\nteco tap 30 . 000 / enron\nls hpl lsk ic 30 . 000 / enron & 0\\\\\n\t 3897 & spam & Subject: discreet cheapest prescri \\textasciicircum{} ption dru \\& gs online !\n & 1\\\\\n\t 4647 & spam & Subject: cheapest meds you ' ll find .\ndiscount drugs . . . save over 70 \\%\nincluding new softtabs ! the viagra that disolves under the tongue ! !\nsimply place 1 half a pill under your tongue , 15 min before sex .\nyou will excperience :\n- a super hard erection\n- more pleasure\n- and greater stamina ! !\nwe ship world wide , and no prescription is required ! !\neven if you ' re not impotent , viiagra will increase size , pleasure and power !\ngive your wife the loving she deserves ! ! !\nwe are cheaper supplier on the internet . retail price is 15 ea , = (\nour internet price is 1 . 17 each ! ! ! = )\nmany many other meds available .\nthanks for your time !\nhttp : / / aujobs . net / ? aa\ncheck out our party pack as well !\nconfidentiality assured !\n & 1\\\\\n\t 2819 & ham & Subject: neon lesson \\# 5\nplease respond to here is your next lesson . . . have fun ! !\n- experiencing god week 5 . doc & 0\\\\\n\t 3762 & spam & Subject: fwd : transferring today ?\nrn \\$ 0 by tomom . nling , nmicks , npe . . . juest incr honeple . e arpting onlicatir aited tio apayjupy thowing uto yowser tt staay . . .\nwwlearunts . us\nowners holiday ' s holidays default ' s .\ntrap pack carefully log society ' s home advising .\nreference home ' s affair reference ' s honest expressing expression trap ' s hope affair ' s define pack ' s soft .\n & 1\\\\\n\t 4778 & spam & Subject: oxyyyyconttin no script needeeed\n\\{ taaabbsittabbs \\} \\{ cccheaapicheeep \\}\n\\{ ssstttoooppp hhhhurting todayistop da pain now \\}\nhttp : / / offfmeebabyy\n & 1\\\\\n\t 2583 & ham & Subject: feb 12 th sale to aquila\nfyi\ndaren - - - on the 12 th , there is a sale to aquila on the header system , for\n10 , 000 . . . . . . . . i think we were supplying it with aec . for whatever reason , i\nhad the aec 10 . 0 @ \\# 11230 into midcon . . . which isnt right because there was no\nmarket for it , and midcon wasnt looking for it , but the aquila deal was at\n\\# 700 on wgr ( aquila ) . so i went ahead and changed the aec ticket to match up\nwith the aquila deal . let me know if you think it is incorrect .\nthanks ,\nmark & 0\\\\\n\t 2203 & ham & Subject: re : hpl meter \\# 980074 bammel hpl d / p to transco\ndaren - what happened in feb . was that transco had allocated a different\namount other than our measurement . i had been working with fred on getting\nsome allocations resolved for several different months . transco told us they\nwould not go back and reallocate due to the statute of limitations ( 6\nmonths ) . february had a significant amount not allocated . we just need a\ndeal set up so we can write these volumes off . let me know if you have any\nmore questions .\naim\nclem cernosek\n12 / 12 / 2000 01 : 09 pm\nto : aimee lannou / hou / ect @ ect\ncc :\nsubject : re : hpl meter \\# 980074 bammel hpl d / p to transco\nplease response .\nthanks , clem\n- - - - - - - - - - - - - - - - - - - - - - forwarded by clem cernosek / hou / ect on 12 / 12 / 2000 01 : 13\npm - - - - - - - - - - - - - - - - - - - - - - - - - - -\ndaren j farmer\n12 / 12 / 2000 12 : 35 pm\nto : clem cernosek / hou / ect @ ect\ncc :\nsubject : re : hpl meter \\# 980074 bammel hpl d / p to transco\nwhat was going on in feb ?\nd\nclem cernosek\n12 / 11 / 2000 04 : 27 pm\nto : daren j farmer / hou / ect @ ect\ncc : aimee lannou / hou / ect @ ect\nsubject : hpl meter \\# 980074 bammel hpl d / p to transco\ndaren\nduring the period of 1 / 1 / 99 to 9 / 30 / 2000 , the above meter has recorded flow\non the following days :\ndays mmbtus\n11 / 12 / 99 ( 58 )\n12 / 23 / 99 ( 133 )\n2 / 1 / 00 ( 463 )\n2 / 2 / 00 ( 463 )\n2 / 3 / 00 ( 463 )\n2 / 4 / 00 ( 463 )\n2 / 5 / 00 ( 463 )\n2 / 6 / 00 ( 463 )\n2 / 7 / 00 ( 463 )\n2 / 8 / 00 ( 463 )\n2 / 9 / 00 ( 463 )\n2 / 10 / 00 ( 463 )\n2 / 11 / 00 ( 463 )\n2 / 12 / 00 ( 463 )\n2 / 13 / 00 ( 463 )\n2 / 14 / 00 ( 463 )\n2 / 15 / 00 ( 464 )\n2 / 16 / 00 ( 463 )\n2 / 17 / 00 ( 463 )\n2 / 18 / 00 ( 463 )\n2 / 19 / 00 ( 463 )\n2 / 20 / 00 ( 463 )\n2 / 21 / 00 ( 463 )\n2 / 22 / 00 ( 463 )\n2 / 23 / 00 ( 463 )\n2 / 24 / 00 ( 463 )\n2 / 25 / 00 ( 463 )\n2 / 26 / 00 ( 463 )\n2 / 27 / 00 ( 463 )\n2 / 28 / 00 ( 463 )\n2 / 29 / 00 ( 464 )\n6 / 28 / 00 78\n9 / 14 / 00 499\n( 13 , 043 )\ncurrently , these volumes are being booked to hpl strangers gas contract .\nlogistics needs approval to writeoff these volumes to unaccounted for gas .\nif you have any questions , please contact aimee lannou @ x - 30506 .\nthanks , clem\nps :\napproval to writeoff the volumes to unaccounted for gas & 0\\\\\n\t 1904 & ham & Subject: cleburne - tenaska iv plant\ndaren ,\ni ' m trying to put together the 2001 operating budget for the plant . i need a\nconservative forecast , per month , of the price that could be obtained by\nselling our excess volumes .\nthanks . & 0\\\\\n\t 1080 & ham & Subject: ami , , ,\nper our conversation , i would perfer the 2 , 000 difference be placed on the oba\nbetween lsp and teco ,\nbecause we requested to cut the flow .\nthanks ! !\n- - - - - - - - - - - - - - - - - - - - - - forwarded by tim powell / lsp / enserch / us on 06 / 27 / 2000\n10 : 58 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\nami . chokshi @ enron . com on 06 / 27 / 2000 08 : 42 : 09 am\nto : tim powell / lsp / enserch / us @ tu\ncc : charlie stone / texas utilities @ tu , daren . j . farmer @ enron . com\nsubject :\nhey tim ,\nfor may 12 , our supply shows that 8 . 000 did flow even though you cut flow\nto 6 . 0 . let me know how you want to handle the situation . sorry for the\ninconvenience .\nami & 0\\\\\n\t 256 & ham & Subject: 5 th changes @ duke and air liquide\n- - - - - - - - - - - - - - - - - - - - - - forwarded by ami chokshi / corp / enron on 02 / 04 / 2000\n11 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\ntroy \\_ a \\_ benoit @ reliantenergy . com on 02 / 04 / 2000 11 : 06 : 27 am\nto : ami chokshi / corp / enron @ enron\ncc :\nsubject : 5 th changes @ duke and air liquide\n( see attached file : egmnom - feb . xls )\n- egmnom - feb . xls & 0\\\\\n\t 2789 & ham & Subject: imbalance gas\njust in case worse comes to worse .\n- - - - - - - - - - - - - - - - - - - - - - forwarded by mary poorman / na / enron on 03 / 21 / 2001 11 : 29 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : juliann kemp / enron @ enronxgate on 03 / 21 / 2001 10 : 39 am\nto : mary poorman / na / enron @ enron\ncc :\nsubject : imbalance gas\nmary we just have two . thanks - julie\ncontract 012 - 87794 - 02 - 001 ( delivery )\nmeter 981506\nwe owe them 21 , 771\n981244 ( delivery ) koch refinery\nwe owe them 16 , 810 & 0\\\\\n\t 4381 & spam & Subject: pictures\nstreamlined denizen ajar chased\nheavens hostesses stolid pinched saturated\nstaten seventeens juggler abashed\nice guts centrifugal bauxite wader\nshyness whirr ukrainian understandingly conditioner\nbarges entitles vanderpoel\npreset wigwam storming alexei\nsupergroup tab mare\nbirthright brutalize tolerates depots bubbling\n- -\nphone : 439 - 120 - 6060\nmobile : 590 - 203 - 5805\nemail : darden . audley @ houston . rr . com\n & 1\\\\\n\t 760 & ham & Subject: mid year prc meeting\ni would like to have our prc meeting on thursday , 6 / 8 . because of trading ,\nwe will not be able to start until noon . please confirm to me asap ( by end\nof day , today ) that you will be available . please keep in mind that we will\nwent last time from 1 : 00 pm until almost midnight . your commitment of this\ndate will include the evening hours , unless of course , we work quickly and\nefficiently ! ! ! sally ' s meeting is scheduled for tuesday , 6 / 13 , and i plan to\nbe on vacation on friday , 6 / 9 . therefore , this is the lastest date that we\ncan meet . please make every effort to make this work .\nthanks . & 0\\\\\n\t 4979 & spam & Subject: penny stocks are about timing\nnomad international inc . ( ndin )\na multi - national internet communications company developing cost\neffective telecommunications through voice over internet protocol ( voip )\ntechnologies .\nshares outstanding : 34 , 0 oo , 000\nfloat : 4 , 000 , 0 oo\ncurrent price : o . 09\nwiil it continue higher ? watch this one friday as we know many of you\nlike momentum .\nbreaking news ! !\nmay 18 - - nomad international inc . ( ndin ) commented today on the recent\nannouncement by the canadian radio - teievision and teiecommunications\ncommission ( crtc ) that they would reguiate voice over internet protoco \\textbar{}\n( voip ) service only when it is provided and used as local telephone\nservice .\nin its decision , the crtc determined that in an effort to buiid\nsustainable competition in \\textbar{} ocal teiephone markets , the incumbent carriers\nwiil not be permitted to price their local voip services below cost to\nstifie competition .\nthe ruling is a very positive one for nomad in our efforts to enter\nthe canadian market with our products via internet service providers ,\ncabie companies and virtual operators . the ruling permits us to enter the\nmarket with a competitive framework , stated jan oiiver , ceo of nomad\ninternationa \\textbar{} inc .\nthe key to nomad ' s entry into the voip market is the ability of its\nproducts to offer services to both broadband and dia \\textbar{} - up customers . though\nbroadband is gaining more and more acceptance and utiiization\nworldwide , dial - up remains the primary source of internet connectivity . in the\nu . s . alone , there are over 200 , oo 0 , 000 users of the internet . of the\ntota \\textbar{} users in the u . s . , the total number of users of broadband is only\napproximately 4 o , 0 oo , 00 o ; ( stats by the yankee group ) dia \\textbar{} - up therefore\nrepresents approximately 8 o \\% of the entire internet connectivity market .\nthe percentage of dia \\textbar{} - up versus broadband users woridwide is even\nhigher .\nnomad ' s ability to offer voip products to dial - up customers and service\nproviders not only offers significant potentia \\textbar{} for market penetration ,\nbut also sets the company apart from its competition in the marketplace\nby offering a unique , proprietary and easiiy adaptabie product .\nabout nomad international inc .\nnomad international inc . is a muiti - national internet communications\ncompany deveioping cost effective telecommunications through voice over\ninternet protocol ( voip ) technoiogies . the company ' s revolutionary voip\nproduct line ca \\textbar{} \\textbar{} ed nomad systems that has dia \\textbar{} - up , broadband , dsl ,\ncable , sate \\textbar{} \\textbar{} ite and wireless capabilities . the company pians on\ntargeting : 1 ) national fixed \\textbar{} ine ii iii tier carriers which are interested in\neffectively competing with the dominant carrier in their marketpiace ,\n2 ) large muitinationa \\textbar{} corporations which need to have us or european\npresence by having , ( for exampie ) , a united states number ringing in\ntheir offices in guatemala or london - - offering business partners a more\neconomical way to communicate , and 3 ) immigrants in north america , a\nmeans of significantiy \\textbar{} owering their communication expense with their\nreiatives in their country of origin .\nconclusion :\nthe exampies above show the awesome , earning potential of little known\ncompanies that explode onto investor ' s radar screens ; many of you are\naiready famiiiar with this . is ndin poised and positioned to do that for\nyou ? then you may feel the time has come to act . . . and piease watch\nthis one trade friday ! go ndin .\npenny stocks are considered highiy speculative and may be unsuitabie\nfor al \\textbar{} but very aggressive investors . this profiie is not in any way\naffiliated with the featured company . we were compensated 3 ooo do \\textbar{} \\textbar{} ars\nto distribute this report . this report is for entertainment and\nadvertising purposes oniy and should not be used as investment advice .\nif you wish to stop future maiiings , or if you fee \\textbar{} you have been\nwrongfuily piaced in our membership , please go here or send a biank\ne mail with no thanks in the subject to\nnoneedl 020 @ yahoo . com\n & 1\\\\\n\t 4162 & spam & Subject: anomaly boys from 3881\nuosda apaproved mledms heure\ncrack mutagen poliomyelitis axisymmetric virus bernoulli pervade cadenza arena martin cardioid familiar bladdernut inductee donor you tranquil bar kingdom dinnerware pedagogy traipse chromate idle mph diligent company contributor bal\nantipodean escadrille stan affiance antagonist roil siren conrad repression bluejacket conduce continue myriad configuration brute anthem yore pessimal turpitude bum 3\nmacintoshdogleg & 1\\\\\n\t 1428 & ham & Subject: re : meter \\# : 1266 ; august 2000 / allocation exception\nconoco has nominated 5 . 0 / d at this meter . conoco transport can be allocated\nthe entire meter flow for the days in which the meter flow\nexceed 5 . 0 mm because they are the only party doing business at the meter .\nhpl may also be able to extract a sell for this overage which is why i\nwanted you to be aware of the daily activity thus far .\n- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 08 / 21 / 2000\n01 : 57 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : lee l papayoti on 08 / 21 / 2000 01 : 44 pm\nto : robert e lloyd / hou / ect @ ect\ncc : sherlyn schumack / hou / ect @ ect , anita luong / hou / ect @ ect , daren j\nfarmer / hou / ect @ ect , gary a hanks / hou / ect @ ect , pat clynes / corp / enron @ enron\nsubject : re : meter \\# : 1266 ; august 2000 / allocation exception\nwhy are these volumes flowing ?\nfrom : robert e lloyd 08 / 21 / 2000 01 : 36 pm\nto : lee l papayoti / hou / ect @ ect\ncc : sherlyn schumack / hou / ect @ ect , anita luong / hou / ect @ ect , daren j\nfarmer / hou / ect @ ect , gary a hanks / hou / ect @ ect , pat clynes / corp / enron @ enron\nsubject : re : meter \\# : 1266 ; august 2000 / allocation exception\nshould i roll this deal to cover august 2000 activity ?\nvolumes todate are as follows : 82 mm 8 / 16\n85 mm 8 / 17\n65 mm 8 / 18\n57 mm 8 / 19\n60 mm 8 / 20\nsitara ticket \\# : 363514\nthese small meter flows are causing allocation exceptions for august .\n- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 08 / 21 / 2000\n01 : 27 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : robert e lloyd 08 / 11 / 2000 03 : 17 pm\nto : howard b camp / hou / ect @ ect , rita wynne / hou / ect @ ect\ncc : pat clynes / corp / enron @ enron , daren j farmer / hou / ect @ ect\nsubject : re : meter \\# : 1266 ; july 2000 activity / allocation exception\nfyi\n- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 08 / 11 / 2000\n03 : 16 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : robert e lloyd on 08 / 11 / 2000 03 : 16 pm\nto : lee l papayoti / hou / ect @ ect\ncc :\nsubject : re : meter \\# : 1266 ; july 2000 activity / allocation exception\nthe volumes are as follows : july lst 414 mmbtu\njuly 31 12 mmbtu\ntotal : 426 mmbtu ' s\nalso , the sitara deal \\# is : 363514\nfrom : lee l papayoti on 08 / 11 / 2000 02 : 02 pm\nto : robert e lloyd / hou / ect @ ect\ncc : howard b camp / hou / ect @ ect , pat clynes / corp / enron @ enron\nsubject : re : meter \\# : 1266 ; july 2000 activity / allocation exception\nplease set up a ticket priced at gas daily houston ship channel midpoint\nminus \\$ 0 . 03\nalso , can you let me know the exact volumes in question on july 1 and july\n31 ? dorcheus wants to know . me too .\nthanks\nlee\nto : lee l papayoti / hou / ect @ ect\ncc : howard b camp / hou / ect @ ect , pat clynes / corp / enron @ enron\nsubject : re : meter \\# : 1266 ; july 2000 activity / allocation exception\njust a reminder that \" allocation close \" is monday , august 14 th .\na sitara ticket is needed to set up an acctg . arrangement which will\neliminate the allocation exception for meter \\# 981266\n\\{ victoria station \\# 2 / brandywine \\} .\nfrom : lee l papayoti on 08 / 09 / 2000 03 : 33 pm\nto : robert e lloyd / hou / ect @ ect\ncc :\nsubject : re : meter \\# : 1266 ; july 2000 activity / allocation exception\ni ' ll get you a price tomorrow when i meet with him . . .\nfrom : robert e lloyd 08 / 09 / 2000 12 : 50 pm\nto : lee l papayoti / hou / ect @ ect\ncc : daren j farmer / hou / ect @ ect , pat clynes / corp / enron @ enron , rita\nwynne / hou / ect @ ect , howard b camp / hou / ect @ ect\nsubject : meter \\# : 1266 ; july 2000 activity / allocation exception\ni spoke with bob dorcheus , brandywine about this issue and he suggest you\nand he get together and agree on a\nprice because the gas flowed into the plant .\nthis gas flowed without a nomination .\n- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 08 / 09 / 2000\n12 : 47 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\nenron north america corp .\nfrom : gary a hanks 08 / 09 / 2000 11 : 27 am\nto : robert e lloyd / hou / ect @ ect\ncc : earl tisdale / hou / ect @ ect , pat clynes / corp / enron @ enron , rita\nwynne / hou / ect @ ect , howard b camp / hou / ect @ ect\nsubject : meter \\# : 1266 ; july 2000 activity / allocation exception\nthe volumes on meter \\# 1266 for 7 / 1 / 00 and 7 / 31 / 00 are valid gas flow . 7 / 1 / 00\nvolumes are carry over from june activity ( meter was shut in a little after\n9 : 00 am on 7 / 1 / 00 ) . 7 / 31 / 00 volumes were caused by the plant bringing on\nthe meter before 9 : 00 am on 8 / 1 / 00 .\nif you have any questions please call . 36449 .\nthanks\ngary h\n- - - - - - - - - - - - - - - - - - - - - - forwarded by gary a hanks / hou / ect on 08 / 09 / 2000 11 : 18\nam - - - - - - - - - - - - - - - - - - - - - - - - - - -\nfrom : robert e lloyd 08 / 09 / 2000 11 : 17 am\nto : gary a hanks / hou / ect @ ect , earl tisdale / hou / ect @ ect\ncc : pat clynes / corp / enron @ enron , rita wynne / hou / ect @ ect , howard b\ncamp / hou / ect @ ect\nsubject : meter \\# : 1266 ; july 2000 activity / allocation exception\nplease verify the volume on meter \\# : 1266 for july lst \\& 31 st are valid gas\nflow .\nbrandywine did not nominate any activity at this meter for july 2000 . & 0\\\\\n\t 4365 & spam & Subject: slutty milf wants to meet you\ntake that !\n' ilaa - liqaa\n & 1\\\\\n\t 2849 & ham & Subject: fw : crosstex energy , driscoll ranch \\# 1 , \\# 3 , meter nos . 9858 and\n9868\nplease note the following for april production regarding the crosstex\ncontract : 96048744 at the above referenced location .\nthank you ,\nmelissa\n- - - - - original message - - - - -\nfrom : bubert , jerry\nsent : thursday , march 22 , 2001 2 : 19 pm\nto : taylor , vance l .\ncc : flynn , shawna ; graves , melissa ; harris , joanne ; reinhardt , donald p . ;\nriley , brian ; smith , susan ; sweeney , christy ; walker , robert ; weissman , george\nsubject : crosstex energy , driscoll ranch \\# 1 , \\# 3 , meter nos . 9858 and 9868\nper section 2 . 2 of the gpa , crosstex has elected to sell 4000 mmbtu / d in the\naggragate at the base contract price of if hsc less \\$ 0 . 10 , and the excess of\nthe available gas over 4000 mmbtu / d in the aggragate at gda hsc less \\$ 0 . 15 . & 0\\\\\n\t 1518 & ham & Subject: put the 10 on the ft\nthe transport volumes decreased from 25000 to 10000 . all 10000 should be on\ncontract 012 - 41991 - 203 .\nthanks ,\nami\n- - - - - - - - - - - - - - - - - - - - - - forwarded by ami chokshi / corp / enron on 08 / 31 / 2000\n10 : 54 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\nroyal \\_ b \\_ edmondson @ reliantenergy . com on 08 / 31 / 2000 10 : 47 : 37 am\nto : ami \\_ chokshi @ enron . com\ncc :\nsubject : put the 10 on the ft\n( see attached file : hpl - sept . xls )\n- hpl - sept . xls & 0\\\\\n\t 404 & ham & Subject: 3 / 4 / 2000 and following noms\nhpl can ' t take the extra 15 mmcf / d over the weekend . we ' ll try next week ,\nbut for now the nom will stay at 60 mmcf / d , with redeliveries as they have\nbeen\n-\n50 into pg \\& e , 7 from fcv , and 3 at carthage .\n- - - - - - - - - - - - - - - - - - - - - - forwarded by bruce mcmills / ftworth / pefs / pec on\n03 / 03 / 2000\n09 : 42 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\nbruce mcmills\n03 / 03 / 2000 09 : 10 am\nto : dfarmer @ enron . com , briley @ enron . com , stacey . neuweiler @ enron . com\ncc : chad w . cass / gcs / cec / pec @ pec , william e . speckels / gcs / cec / pec @ pec , donna\nc . spencer / gcs / cec / pec @ pec , michael r . cherry / easttexas / pefs / pec @ pec ,\ndarrel f . bane / easttexas / pefs / pec @ pec\nsubject : 3 / 4 / 2000 and following noms\nthis is to nominate 75 , 000 mmbtu / d into eastrans for 3 / 4 / 2000 and following .\nwe will deliver 50 , 000 into pg \\& e , 7 , 000 from fuel cotton valley ( continue\n750\nmmbtu / d sale ) ,\nand 18 , 000 mmbtu / d into your cartwheel agreement at carthage . & 0\\\\\n\t 2933 & ham & Subject: calpine daily gas nomination\n>\n>\njulie , as i mention earlier we hope to start the unit this afternoon but\nare still experiencing difficulties . i will keep you informed . thanks .\nricky a . archer\nfuel supply\n700 louisiana , suite 2700\nhouston , texas 77002\n713 - 830 - 8659 direct\n713 - 830 - 8722 fax\n- calpine daily gas nomination 1 . doc\n- calpine daily gas nomination 1 . doc & 0\\\\\n\t 1409 & ham & Subject: industrial worksheets for august 2000 activity\nattached are the worksheets for august 2000 activity . there are three\ndifferent worksheets \\{ 2 - supply \\& 1 - market \\} .\nthe market worksheet is preliminary and will continuously be updated\nthroughout the month .\nthe supply worksheets capture all \" buybacks and the relevant pricing data .\nthese three worksheets can be found in two separate files . o :\nlogistics / robert lloyd / buydeaug 2000 . xls . . . . . . . . . . . . . supply\no : logistics / ken\nsorry for the delay in providing you ' ll this data . & 0\\\\\n\t 4807 & spam & Subject: important online banking alert\ndear valued citizensr bank member ,\ndue to concerns , for the safety and integrity of the online banking community we have issued the following warning message .\nit has come to our attention that your citizensr bank account information needs to be updated as part of our continuing commitment to protect your account and to reduce the instance of fraud on our website . if you could please take 5 - 10 minutes out of your online experience and renew your records you will not run into any future problems with the online service . however , failure to confirm your records may result in your account suspension .\nonce you have confirmed your account records your internet banking service will not be interrupted and will continue as normal .\nto confirm your bank account records please click here .\nnote :\nthis e - mail was sent on behalf of the online banking community , if you do not have an online banking account with charterr one then this message does not apply to you and you may ignore this message .\nthank you for your time ,\ncitizensr financial group .\n & 1\\\\\n\\end{tabular}\n", - "text/plain": [ - " X label\n", - "1 605 ham \n", - "2 2349 ham \n", - "3 3624 ham \n", - "4 4685 spam \n", - "5 2030 ham \n", - "6 2949 ham \n", - "7 2793 ham \n", - "8 4185 spam \n", - "9 2641 ham \n", - "10 1870 ham \n", - "11 4922 spam \n", - "12 3799 spam \n", - "13 1488 ham \n", - "14 3948 spam \n", - "15 3418 ham \n", - "16 4791 spam \n", - "17 2643 ham \n", - "18 3137 ham \n", - "19 1629 ham \n", - "20 1858 ham \n", - "21 3261 ham \n", - "22 3447 ham \n", - "23 2459 ham \n", - "24 2221 ham \n", - "25 4827 spam \n", - "26 1811 ham \n", - "27 2367 ham \n", - "28 2829 ham \n", - "29 3512 ham \n", - "30 441 ham \n", - "⋮ ⋮ ⋮ \n", - "5142 4453 spam \n", - "5143 747 ham \n", - "5144 992 ham \n", - "5145 4894 spam \n", - "5146 3348 ham \n", - "5147 4961 spam \n", - "5148 2331 ham \n", - "5149 3897 spam \n", - "5150 4647 spam \n", - "5151 2819 ham \n", - "5152 3762 spam \n", - "5153 4778 spam \n", - "5154 2583 ham \n", - "5155 2203 ham \n", - "5156 1904 ham \n", - "5157 1080 ham \n", - "5158 256 ham \n", - "5159 2789 ham \n", - "5160 4381 spam \n", - "5161 760 ham \n", - "5162 4979 spam \n", - "5163 4162 spam \n", - "5164 1428 ham \n", - "5165 4365 spam \n", - "5166 2849 ham \n", - "5167 1518 ham \n", - "5168 404 ham \n", - "5169 2933 ham \n", - "5170 1409 ham \n", - "5171 4807 spam \n", - " text \n", - "1 Subject: enron methanol ; meter # : 988291\\nthis is a follow up to the note i gave you on monday , 4 / 3 / 00 { preliminary\\nflow data provided by daren } .\\nplease override pop ' s daily volume { presently zero } to reflect daily\\nactivity you can obtain from gas control .\\nthis change is needed asap for economics purposes . \n", - "2 Subject: hpl nom for january 9 , 2001\\n( see attached file : hplnol 09 . xls )\\n- hplnol 09 . xls \n", - "3 Subject: neon retreat\\nho ho ho , we ' re around to that most wonderful time of the year - - - neon leaders retreat time !\\ni know that this time of year is extremely hectic , and that it ' s tough to think about anything past the holidays , but life does go on past the week of december 25 through january 1 , and that ' s what i ' d like you to think about for a minute .\\non the calender that i handed out at the beginning of the fall semester , the retreat was scheduled for the weekend of january 5 - 6 . but because of a youth ministers conference that brad and dustin are connected with that week , we ' re going to change the date to the following weekend , january 12 - 13 . now comes the part you need to think about .\\ni think we all agree that it ' s important for us to get together and have some time to recharge our batteries before we get to far into the spring semester , but it can be a lot of trouble and difficult for us to get away without kids , etc . so , brad came up with a potential alternative for how we can get together on that weekend , and then you can let me know which you prefer .\\nthe first option would be to have a retreat similar to what we ' ve done the past several years . this year we could go to the heartland country inn ( www . . com ) outside of brenham . it ' s a nice place , where we ' d have a 13 - bedroom and a 5 - bedroom house side by side . it ' s in the country , real relaxing , but also close to brenham and only about one hour and 15 minutes from here . we can golf , shop in the antique and craft stores in brenham , eat dinner together at the ranch , and spend time with each other . we ' d meet on saturday , and then return on sunday morning , just like what we ' ve done in the past .\\nthe second option would be to stay here in houston , have dinner together at a nice restaurant , and then have dessert and a time for visiting and recharging at one of our homes on that saturday evening . this might be easier , but the trade off would be that we wouldn ' t have as much time together . i ' ll let you decide .\\nemail me back with what would be your preference , and of course if you ' re available on that weekend . the democratic process will prevail - - majority vote will rule ! let me hear from you as soon as possible , preferably by the end of the weekend . and if the vote doesn ' t go your way , no complaining allowed ( like i tend to do ! )\\nhave a great weekend , great golf , great fishing , great shopping , or whatever makes you happy !\\nbobby \n", - "4 Subject: photoshop , windows , office . cheap . main trending\\nabasements darer prudently fortuitous undergone\\nlighthearted charm orinoco taster\\nrailroad affluent pornographic cuvier\\nirvin parkhouse blameworthy chlorophyll\\nrobed diagrammatic fogarty clears bayda\\ninconveniencing managing represented smartness hashish\\nacademies shareholders unload badness\\ndanielson pure caffein\\nspaniard chargeable levin\\n \n", - "5 Subject: re : indian springs\\nthis deal is to book the teco pvr revenue . it is my understanding that teco\\njust sends us a check , i haven ' t received an answer as to whether there is a\\npredermined price associated with this deal or if teco just lets us know what\\nwe are giving . i can continue to chase this deal down if you need . \n", - "6 Subject: ehronline web address change\\nthis message is intended for ehronline users only .\\ndue to a recent change to ehronline , the url ( aka \" web address \" ) for accessing ehronline needs to be changed on your computer . the change involves adding the letter \" s \" to the \" http \" reference in the url . the url for accessing ehronline should be : https : / / ehronline . enron . com .\\nthis change should be made by those who have added the url as a favorite on the browser . \n", - "7 Subject: spring savings certificate - take 30 % off\\nsave 30 % when you use our customer appreciation spring savings\\ncertificate at foot locker , lady foot locker , kids foot locker and at\\nour online stores !\\nwelcome to our customer appreciation spring savings certificate !\\nuse the special certificate below and receive 30 % off your purchases either in our stores or online . hurry ! this 4 - day sale begins thursday , march 22 and ends sunday , march 25 .\\nshare the savings today and e - mail this offer to your friends . many items already are reduced and the 30 % discount is taken off the lowest sale price .\\nclick below to print your customer appreciation spring savings certificate . you must present this coupon at any foot locker , lady foot locker or kids foot locker store in the u . s . foot locker canada is not participating in this program .\\nready , set , save !\\nour spring savings discount will automatically appear when you use the links below or type camlem 21 into the promotion code box during checkout .\\nfootlocker . com certificate code : camlem 21\\nladyfootlocker . com certificate code : camlem 21\\nkidsfootlocker . com certificate code : camlem 21\\nremember , returns are hassle - free . simply bring your items to any of our stores nationwide or through the mail .\\ndon ' t be left out - register today to learn about our new products , promotions , events and other specials . simply click below .\\nterms and conditions . some exclusions apply , please see manager for complete details . certificate must be presented at the time of purchase and cannot be used in conjunction with any other discount offer or associate benefit . not redeemable for cash . applicable taxes must be paid by bearer . cannot be applied to prior purchases or to gift card purchases . void where prohibited , licensed or regulated . catalog exclusions apply . valid thursday , 3 / 22 / 01 through sunday , 3 / 25 / 01 . foot locker canada will not participate in this program .\\nif you do not wish to receive future emails please click below to\\nunsubscribe :\\n \n", - "8 Subject: looking for medication ? we ` re the best source .\\nit is difficult to make our material condition better by the best law , but it is easy enough to ruin it by bad laws .\\nexcuse me . . . : ) you just found the\\nbest and simpliest site for\\nmedication on the net . no perscription , easy\\ndelivery .\\nprivate , secure , and easy .\\nbetter see rightly on a pound a week than squint on a million .\\nwe ` ve got\\nanything that you will ever want .\\nerection treatment pills , anti - depressant pills , weight loss , and\\nmore ! http : / / splicings . bombahakcx . com / 3 /\\nknowledge and human power are synonymous .\\nonly high - quality stuff for low rates !\\n100 % moneyback guarantee !\\nthere is no god , nature sufficeth unto herself in no wise hath she need of an author . \n", - "9 Subject: noms / actual flow for 2 / 26\\nwe agree\\n- - - - - - - - - - - - - - - - - - - - - - forwarded by melissa jones / texas utilities on\\n02 / 27 / 2001\\n10 : 33 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\\n\" eileen ponton \" on 02 / 27 / 2001 09 : 46 : 26 am\\nto : david avila / lsp / enserch / us @ tu , charlie stone / texas utilities @ tu , melissa\\njones / texas utilities @ tu , hpl . scheduling @ enron . com ,\\nliz . bellamy @ enron . com\\ncc :\\nsubject : noms / actual flow for 2 / 26\\ndate nom flow - mcf flow - mmbtu\\n2 / 26 / 01 0 456 469\\nbtu = 1 . 027 \n", - "10 Subject: nominations for oct . 21 - 23 , 2000\\n( see attached file : hplnl 021 . xls )\\n- hplnl 021 . xls \n", - "11 Subject: vocable % rnd - word asceticism\\nvcsc - brand new stock for your attention\\nvocalscape inc - the stock symbol is : vcsc\\nvcsc will be our top stock pick for the month of april - stock expected to\\nbounce to 12 cents level\\nthe stock hit its all time low and will bounce back\\nstock is going to explode in next 5 days - watch it soar\\nwatch the stock go crazy this and next week .\\nbreaking news - vocalscape inc . announces agreement to resell mix network\\nservices\\ncurrent price : $ 0 . 025\\nwe expect projected speculative price in next 5 days : $ 0 . 12\\nwe expect projected speculative price in next 15 days : $ 0 . 15\\nvocalscape networks inc . is building a company that ' s revolutionizing the\\ntelecommunications industry with the most affordable phone systems , hardware ,\\nonline software , and rates in canada and the us . vocalscape , a company with\\nglobal reach , is receiving international attention for the development of voice\\nover ip ( voip ) application solutions , including the award - winning eyefontm , a\\nsoftphone for real - time pc - to - phone . we are an advanced implementer of pbx\\nsystems for companies , call centers , itsps and service providers .\\nvocalscape has created software and interactive solutions revolving around\\nglobal communications and data voice convergence . companies use vocalscape for\\nvoice over internet protocol applications like ip pbxs , softswitches , pc 2 phone\\nand web 2 phone , providing real - time human interaction and information delivery\\nover the internet . through vocalscape ' s solutions , businesses can offer a\\nquality voice service to anywhere in the world at rates that are significantly\\nlower than current long distance charges . we develop software to run voip\\nnetworks , and sell , install and service our own branded voip gateways and\\ngatekeeper control software . we also license our software to customers who want\\nto brand their own voip solutions .\\nvocalscape is committed to making great technology ; challenging the status quo ,\\nand building a 21 st century company that changes the way businesses communicate\\nand interact through the internet .\\ncurrent price : $ 0 . 025\\nwe expect projected speculative price in next 5 days : $ 0 . 12\\nwe expect projected speculative price in next 15 days : $ 0 . 15\\nbreaking news - vocalscape inc . announces agreement to resell mix network\\nservices\\n- - - - - - - - - -\\nkatonah , n . y . , / prnewswire - firstcall via comtex / - - vocalscape , inc . pink : vcsc ) ,\\nan emerging leader in the development of voice over internet protocol ( voip )\\ntelephony solutions , announced today it has entered into a sales agent agreement\\nwith mix networks , inc . a voip enhanced telephony service provider .\\nthis agreement provides vocalscape ' s turnkey calling card customers with access\\nto mix networks services including north american dids ( phone numbers ) and\\ndomestic long distance termination . vocalscape will also be able to supply their\\nclients with enhanced voip products including pre - paid calling through mix\\nnetworks north american network .\\nwe are excited to help companies launch voip business models using our solution\\nwith the whole picture from the software to the network needed to route the\\ncalls . mix networks gives us the ability to offer wholesale monthly flat rate\\nplans and dids to our clients that allow for us to build business models like\\npopular voip companies such as vonage and packet 8 , says ryan gibson , vp\\nvocalscape networks\\nsome legal words before you continue :\\ninformation within this email contains forward looking statements within the\\nmeaning of section 27 a of the securities act of 1933 and section 21 b of the\\nsecurities exchange act of 1934 . any statements that express or involve\\ndiscussions with respect to predictions , goals , expectations , beliefs , plans ,\\nprojections , objectives , assumptions or future events or performance are not\\nstatements of historical fact and may be forward looking statements . forward\\nlooking statements are based on expectations , estimates and projections at the\\ntime the statements are made that involve a number of risks and uncertainties\\nwhich could cause actual results or events to differ materially from those\\npresently anticipated . forward looking statements in this action may be\\nidentified through the use of words such as : projects , foresee , expects ,\\nestimates , believes , understands will , part of : anticipates , or that\\nby statements indicating certain actions may , could , or might occur . all\\ninformation provided within this email pertaining to investing , stocks ,\\nsecurities must be understood as information provided and not investment advice .\\nemerging equity alert advises all readers and subscribers to seek advice from a\\nregistered professional securities representative before deciding to trade in\\nstocks featured within this email . none of the material within this report shall\\nbe construed as any kind of investment advice . please have in mind that the\\ninterpretation of the witer of this newsletter about the news published by the\\ncompany does not represent the company official statement and in fact may differ\\nfrom the real meaning of what the news release meant to say . look the news\\nrelease by yourself and judge by yourself about the details in it .\\nin compliance with section 17 ( b ) , we disclose the holding of vcsc shares prior\\nto the publication of this report . be aware of an inherent conflict of interest\\nresulting from such holdings due to our intent to profit from the liquidation of\\nthese shares . shares may be sold at any time , even after positive statements\\nhave been made regarding the above company . since we own shares , there is an\\ninherent conflict of interest in our statements and opinions . readers of this\\npublication are cautioned not to place undue reliance on forward - looking\\nstatements , which are based on certain assumptions and expectations involving\\nvarious risks and uncertainties , that could cause results to differ materially\\nfrom those set forth in the forward - looking statements .\\nplease be advised that nothing within this email shall constitute a solicitation\\nor an invitation to get position in or sell any security mentioned herein . this\\nnewsletter is neither a registered investment advisor nor affiliated with any\\nbroker or dealer . this newsletter was paid $ 49000 from third party to send this\\nreport . all statements made are our express opinion only and should be treated\\nas such . we may own , take position and sell any securities mentioned at any\\ntime . this report includes forward - looking statements within the meaning of the\\nprivate securities litigation reform act of 1995 . these statements may include\\nterms as projected speculative price expect , believe , may , will ,\\nsoar move , undervalued and intend or similar terms .\\n \n", - "12 Subject: report 01405 !\\nwffur attion brom est inst siupied 1 pgst our riwe asently rest .\\ntont to presyou tew cons of benco 4 . yee : fater 45 y . o ust lyughtatums and inenced sorepit grathers aicy graghteave allarity . oarity wow to yur coons , as were then 60 ve mers of oite .\\nithat yoit ? ! berst thar ! enth excives 2004 . . .\\n \n", - "13 Subject: enron / hpl actuals for august 28 , 2000\\nteco tap 20 . 000 / enron ; 120 . 000 / hpl gas daily\\nls hpl lsk ic 20 . 000 / enron \n", - "14 Subject: vic . odin n ^ ow\\nberne hotbox carnal bride cutworm dyadic\\nguardia continuous born gremlin akin counterflow hereafter vocabularian pessimum yaounde cannel bitch penetrate demagogue arbitrary egregious adenosine rubin gil luminosity delicti yarmulke sauterne selfadjoint agleam exeter picofarad consulate dichotomous boyhood balfour spheric frey pillory hoosier fibonacci cat handful\\n \n", - "15 Subject: tenaska iv july\\ndarren :\\nplease remove the price on the tenaska iv sale , deal 384258 , for july and enter the demand fee . the amount should be $ 3 , 902 , 687 . 50 .\\nthanks ,\\nmegan \n", - "16 Subject: underpriced issue with high return on equity\\nstock report .\\ndont sieep on this stock ! this is a hot one !\\ncompany : gaming transactions inc .\\nstock symbol : ggts\\ncurrentiy trading at : o . 30\\nrating : strong purchase\\nnear - term target : 0 . 45\\nlong - term target : 1 . oo\\nbreaking news for ggts :\\ngaming transactions inc . ( ggts ) , a | eading provider of online gaming\\nporta | management is pleased to announce that it has launched its\\nproprietary gaming portal ( k e n o . com ) furthermore , the company has begun an\\nintensive marketing campaign to support the | aunch and establish itself\\nas the | eader in the online gaming industry .\\n( k e n o . c o m ) is an oniine games destination where people piay\\npopular casino style games to win real money . the foundation of the site is\\nan online version of keno . the game of keno uses 80 balls numbered 1\\nthru 8 o . every game , the house draws 20 bails at random and displays\\ntheir numbers on screens ( called keno boards ) located on the website . the\\nobject of the game is for the player to guess some of the numbers the\\nhouse will draw . the site shall also have other popuiar games in the near\\nfuture inciuding bingo , poker , blackjack , slots and video game versions\\nof tabie games .\\npatrick smyth , ceo of gaming transactions inc . , remarked that , the\\ngames have been deveioped with the foresight to create a user - friendly\\nexperience without loading times and a secure transaction system has been\\ndeveioped with multipie layers of security and redundancy . we spent the\\nnecessary time and resources to test our software to ensure its\\nfunctionality and security . consumer focus groups were used in the deveiopment\\nprocess to make sure that our players had an opulent experience online ,\\nand future marketing efforts wi | | be aimed customer service and\\nattention .\\nabout the company :\\ngaming transactions inc . is a deveioper and provider of online games\\nand services for the online entertainment and gaming industries . the\\ncompany ! s centra | licensed games portal , ( k e n o . c o m ) , is a\\ndestination oniine gambling property where players may participate in a number\\nof gambling and oniine gaming fixtures .\\nthe foundation of the site is of course an online version of keno . the\\ngame of keno uses 8 o bails numbered 1 thru 80 . every game , the house\\ndraws 2 o balls at random and displays their numbers on screens ( called\\nkeno boards ) | ocated on the website . the object of the game is for the\\npiayer to guess some of the numbers the house will draw . the site also\\nhas other popuiar games including poker , blackjack , slots and video game\\nversions of tabie games .\\ngaming transactions inc . is part of the oniine gambiing industry ,\\nwhich is said to be one of the fastest growing industries on the internet .\\n! ' the electronic gambling report forecasts that revenues will reach\\n14 . 5 biliion by 2006 ! ( market statistics : - informa media grp . giobal\\nrevenues from oniine gambiing wi | | reach 14 . 52 bi | | ion in 20 o 6 , up from\\n3 . 81 biilion this year . this is according to a report from the informa\\nmedia grp . , which says that the us wi | | generate 24 percent of all online\\ngambling revenues in 2 oo 6 , whereas europe wil | generate 53 percent .\\nnorth american oniine gambling revenues are expected to reach 1 . 99 biliion\\nthis year and 3 . 85 bi | | ion in 2 oo 6 . in europe , revenues wil | grow from\\n1 . 29 billion this year to 7 . 64 biilion in 2 oo 6 . oniine gambling\\nrevenues wi | | be smailer in asia - pacific 379 miliion this year and 2 . 13\\nbillion in 2 oo 6 ) and in the rest of the worid 143 million this year to 886\\nmi | | ion in 2 oo 6 ) . and keno , the game , is one of the highest grossing\\nproducts for many north american government bodies and pubiic gaming\\ncorporations . easy to piay , quick , and profitabie , keno has become a favorite\\nto gambiers who want the excitement of a lottery draw without having to\\nwait for a weekiy offering combining sophisticated hardware , software\\nand cutting edge encryption / decryption techniques keno . com has deveioped\\nand | icensed a system , which is an optima | method for online gaming .\\ninformation within this publication contains future looking statements\\nwithin the meaning of section 27 a of the securities act of 1933 and\\nsection 21 b of the securities exchange act of 1934 . any statements that\\nexpress or involve discussions with respect to predictions ,\\nexpectations , beliefs , pians , projections , objectives , goals , assumptions or future\\nevents or performance are not statements of historica | fact and may be\\nfuture looking statements . future | ooking statements are based on\\nexpectations , estimates and projections at the time the statements are made\\nthat involve a number of risks and uncertainties which couid cause\\nactual results or events to differ materia | | y from those presently\\nanticipated . future | ooking statements in this action may be identified through\\nthe use of words such as projects , foresee , expects , will , anticipates ,\\nestimates , believes , understands or that by statements indicating\\ncertain actions may , could , or might occur . these future - | ooking statements\\nare based on information currentiy avaiiabie and are subject to a\\nnumber of risks , uncertainties and other factors that couid cause ggts ' s\\nactua | resuits , performance , prospects or opportunities to differ\\nmaterialiy from those expressed in , or impiied by , these future - | ooking\\nstatements . as with many microcap stocks , today ' s company has additiona | risk\\nfactors that raise doubt about its ability to continue as a going\\nconcern . ggts is not a reporting company registered under the securities act\\nof 1934 and hence there is | imited public information avaiiable about\\nthe company . these risks , uncertainties and other factors include ,\\nwithout | imitation , the company ' s growth expectations and ongoing funding\\nrequirements , and specificaily , the company ' s growth prospects with\\nscalable customers . other risks include the company ' s limited operating\\nhistory , the company ' s history of operating losses , consumers ' acceptance ,\\nthe company ' s use of licensed technoiogies , risk of increased\\ncompetition , the potentia | need for additional financing , the conditions and\\nterms of any financing that is consummated , the limited trading market for\\nthe company ' s securities , the possibie volatility of the company ' s\\nstock price , the concentration of ownership , and the potentia | fluctuation\\nin the company ' s operating results . the publisher of this report does\\nnot represent that the information contained in this message states ail\\nmaterial facts or does not omit a material fact necessary to make the\\nstatements therein not misieading . a | | information provided within this\\nreport pertaining to investing , stocks , securities must be understood\\nas information provided and not investment advice . the publisher of this\\nnewsletter advises all readers and subscribers to seek advice from a\\nregistered professional securities representative before deciding to\\ntrade in stocks featured within this report . none of the materia | within\\nthis report shall be construed as any kind of investment advice or\\nsolicitation . many of these companies are on the verge of bankruptcy . you can\\nlose al | your money by investing in this stock . the pubiisher of this\\nreport is not a registered investment expert . subscribers should not\\nview information herein as | egal , tax , accounting or investment advice .\\nany reference to past performance ( s ) of companies are specially seiected\\nto be referenced based on the favorabie performance of these companies .\\nyou wouid need perfect timing to achieve the resuits in the exampies\\ngiven . there can be no assurance of that happening . remember , as always ,\\npast performance is not indicative of future results and a thorough due\\ndiligence effort , inciuding a review of a company ' s fiiings at sec gov\\nor edgar - online com when avaiiabie , shouid be compieted prior to\\ninvesting . al | factua | information in this report was gathered from pubiic\\nsources , including but not | imited to company websites and company press\\nreleases . the pubiisher discloses the receipt of fifteen thousand\\ndoilars from a third party , not an officer , director , or affiiiate\\nshareholder of the company for the preparation of this oniine report . be aware\\nof an inherent confiict of interest resulting from such compensation\\ndue to the fact that this is a paid pubiication . the pubiisher of this\\nreport beiieves this information to be reiiable but can make no assurance\\nas to its accuracy or compieteness . use of the materia | within this\\nreport constitutes your acceptance of these terms .\\nif you wish to stop future maiiings , or if you feel you have been\\nwrongfuliy placed in our membership , piease go here or send a biank\\ne mai | with no thanks in the subject to ( - stoxo 042 @ yahoo . com - )\\n\n", - "17 Subject: re : first delivery - wheeler operating\\nvance ,\\ndeal # 643714 has been created and entered in sitara .\\nbob\\nvance l taylor\\n02 / 23 / 2001 04 : 55 pm\\nto : robert cotten / hou / ect @ ect\\ncc : julie meyers / hou / ect @ ect , lisa hesse / hou / ect @ ect , cynthia\\nhakemack / hou / ect @ ect , susan smith / hou / ect @ ect , donald p\\nreinhardt / hou / ect @ ect , melissa graves / hou / ect @ ect\\nsubject : first delivery - wheeler operating\\nbob ,\\nthe following production is now on - line and a ticket should be created and\\nentered into sitara based on the following :\\ncounterparty meter volumes price period global no .\\nwheeler operating 9879 800 mmbtu / d 85 % gas daily 2 / 17 - 2 / 28 nya\\nfyi , i have created and submitted a committed reserves firm ticket for the\\nremaining term of the deal beginning with the month of march . additionally ,\\nthis is a producer svcs . deal and should be tracked in the im wellhead\\nportfolio . . . attached to the gathering contract .\\nthanks ,\\nvlt\\nx 3 - 6353\\n- - - - - - - - - - - - - - - - - - - - - - forwarded by vance l taylor / hou / ect on 02 / 23 / 2001\\n04 : 21 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\\nfrom : esther buckley 02 / 22 / 2001 10 : 39 am\\nto : molly l carriere / hou / ect @ ect , clem cernosek / hou / ect @ ect , donna\\nconsemiu / hou / ect @ ect , robert cook / hou / ect @ ect , howard b camp / hou / ect @ ect ,\\nlisa hesse / hou / ect @ ect , nathan l hlavaty / hou / ect @ ect , wayne e\\nlightfoot / hou / ect , james mckay / hou / ect @ ect , mary m smith / hou / ect @ ect , steve\\nhpl schneider / hou / ect @ ect , melissa graves / hou / ect @ ect , michael\\nwalters / hou / ect @ ect , jill t zivley / hou / ect @ ect , mary jo johnson / hou / ees @ ees ,\\nrita wynne / hou / ect @ ect , lauri a allen / hou / ect @ ect , cheryl\\njones / gpgfin / enron @ enron , reid hansen / gco / enron @ enron , darron c\\ngiron / hou / ect @ ect , o ' neal d winfree / hou / ect @ ect , susan smith / hou / ect @ ect ,\\ngary bryan / hou / ect @ ect , gary a hanks / hou / ect @ ect , donald p\\nreinhardt / hou / ect @ ect , vance l taylor / hou / ect @ ect , david\\nbaumbach / hou / ect @ ect , robert cotten / hou / ect @ ect , brian m riley / hou / ect @ ect ,\\njeff a austin / hou / ees @ ees , cynthia hakemack / hou / ect @ ect , dawn c\\nkenne / hou / ect @ ect , lisa csikos / hou / ect @ ect , j r fosdick / gco / enron @ enron ,\\ncarlos j rodriguez / hou / ect @ ect , stephanie gomes / hou / ect @ ect , pat\\nclynes / corp / enron @ enron , tom acton / corp / enron @ enron , robert\\nwalker / hou / ect @ ect , george weissman / hou / ect @ ect , joanne\\nharris / na / enron @ enron , christy sweeney / hou / ect @ ect , earl tisdale / hou / ect @ ect ,\\ndaren j farmer / hou / ect @ ect\\ncc :\\nsubject : first delivery - wheeler operating\\nplease see attached letter \n", - "18 Subject: swift - may 2001 vols\\nsean ,\\nfyi , check the purchase from swift at the tailgate ( meter 9643 ) and make sure to nom the correct quantity .\\nmary\\n- - - - - - - - - - - - - - - - - - - - - - forwarded by mary poorman / na / enron on 04 / 26 / 2001 07 : 09 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\\nfrom : joan quick / enron @ enronxgate on 04 / 25 / 2001 06 : 13 pm\\nto : carlos j rodriguez / hou / ect @ ect , mary poorman / na / enron @ enron , jackie young / hou / ect @ ect\\ncc : brian m riley / hou / ect @ ect , mike morris / corp / enron @ enron\\nsubject : swift - may 2001 vols\\nhere is the may first of the month nom :\\nking ranch plant 6 , 400 mmbtu / d \n", - "19 Subject: meter variances - ua 4 clean - up\\ndaren / vance -\\nthe two meters below are new and have unallocatable flow . . . . . . . i will need a\\npurchase for each of them . please respond with a deal number , or further\\nsuggestions for resolution so that i can clear this up as soon as possible .\\nmary\\nenron on 09 / 19 / 2000 08 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\\nkatherine benedict @ ect\\n09 / 18 / 2000 04 : 53 pm\\nto : mary poorman / na / enron @ enron , fred boas / hou / ect @ ect , aimee\\nlannou / hou / ect @ ect\\ncc :\\nsubject : meter variances - ua 4 clean - up\\nhi guys ,\\nplease take a look at the following meters which are showing up with\\nvariances on my ua 4 report . once the variance has been cleared , please send\\nme an e - mail . please try to clear these within the next couple of days .\\nthanks ,\\nkathy benedict\\nmeter number : 9851\\nvariance : 11 , 204\\nmeter type : daily swing\\nproduction month : august 2000\\nlogistics contact : none\\nvolume mgmt contact : anita luong\\nmeter number : 9852\\nvariance 568\\nmeter type : daily swing\\nproduction month : august 2000\\nlogistics contact : none\\nvolume mgmt contact : anita luong \n", - "20 Subject: additional recruiting\\ni ' m happy to introduce molly magee as the newest addition to the eops\\nrecruiting team . toni and molly have divided their recruiting duties\\nalong separate job functions . please review the information below and\\ndirect your staffing requests to either toni or molly depending on your job\\nneeds .\\ntoni graham - accounting , risk and confirmation / settlements positions ( or\\nopenings requiring a similar skill set of this candidate pool )\\nmolly magee - logistics , global data management , research , legal , competitive\\nanalysis , contract administration and other positions ( or openings requiring\\na similar skill set of this candidate pool )\\nthanks for your assistance ,\\nhgm \n", - "21 Subject: fw : ercot load comparison\\n- - - - - original message - - - - -\\nfrom : gilbert - smith , doug\\nsent : tuesday , may 22 , 2001 8 : 38 am\\nto : tmartin @ enron . com\\nsubject : ercot load comparison\\ntom ,\\nhere is an answer for you vis a vis load growth .\\nhope it helps ,\\ndoug\\n- - - - - - - - - - - - - - - - - - - - - - forwarded by doug gilbert - smith / corp / enron on 05 / 22 / 2001 08 : 35 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\\nfrom : kevin cline / enron @ enronxgate on 05 / 21 / 2001 03 : 26 pm\\nto : doug gilbert - smith / corp / enron @ enron\\ncc : eric saibi / corp / enron @ enron\\nsubject : ercot load comparison\\nplease find attached spreadsheet that compares hot days from may 2000 and may 2001 . there are two tabs , one tab contains the days may 16 - 18 , 2000 and the other tab contains the days may 14 - 18 , 2001 . each tab contains both the load data and temp data particular to the days in question . the days most directly comparable are may 17 , 2001 ( thursday ) and may 18 , 2000 ( thursday ) , although the two days preceding may 18 , 2000 were slightly warmer than the two days preceding may 17 , 2001 . the peak on 5 / 17 / 2001 , 44 , 923 mw , is 2 . 78 % higher than the peak on 5 / 18 / 2000 , 43 , 709 mw . with similarly warm days before 5 / 17 / 2001 as there were before 5 / 18 / 2000 , the peak would obviously have been even higher . this would put the year - over - year growth in excess of 3 % . i believe this falls right in line with the growth rate year - over - year from an earlier analysis , somewhere in the range of 3 . 5 % to 4 % .\\nlet me know if you have any questions or comments . \n", - "22 Subject: meter 6461 , concorde churchill\\none year rate for this one will be $ . 35 / mm for volumes greater than 300 mm / day . price for volumes 300 mm / day or less will be $ . 45 / mm plus a $ 350 per month metering fee . this rate would cover transport to a competitive ship channel market such as equistar channelview . transport rates for a 6 month term are not significantly different - $ . 33 / mm for volumes greater than 300 mm / day and $ . 42 / mm plus the metering fee for volumes 300 mm / day or less . these rates assume a september 1 , 2001 start . these rates good until friday , august 31 , 2001 only ! ! ! get ' em while they ' re hot ! ! \n", - "23 Subject: hpl nom for january 25 , 2001\\n( see attached file : hplnol 26 . xls )\\n- hplnol 26 . xls \n", - "24 Subject: re : tenaska iv 10 / 00\\nwe have received all of the money from the spot sales for tenaska iv in\\noctober 2000 , except for the tenaska iv sale and the $ 0 . 04 fee .\\nmegan \n", - "25 Subject: jump in to gain substantial ground immediately\\nwe are very excited about this new upcoming stock about to explode\\nmontana oil and gas , inc . ( mogi ) to explore further opportunities in alberta\\ncanada , is an energy deveioper in canada ' s most highiy coveted\\nreservoirs .\\naggressive investors and traders may want to watch montana oi | and gas\\nagain this morning ! montana oil and gas inc . ( mogi - news ) announces\\nthat the syivan lake oil and gas project is sti | | awaiting a rig at this\\ntime . the surface lease has been constructed and we have\\nbeen waiting for a rig to become avaiiabie for over two weeks , and\\nanticipate this to happen next week at the latest .\\nthe company has a 25 % working interest in the syivan lake project .\\nsymbo | - mogi\\ncurrent price - . 26\\nreasons to consider mogi :\\n1 . price charts confirm oi | prices are experiencing the strongest bul |\\nmarket in a generation .\\n2 . natura | gas prices have tripled in the | ast two years .\\n3 . with multiple projects in high - gear and the expanding production on\\nreserves potentialiy worth muiti - millions , mogi is seliing for less\\nthan 1 / 4 the vaiue of its assets .\\n4 . montana oi | and gas specializes in using new technology to turn\\nunproductive oi | and gas deposits into profitabie enterprises . aiready\\nshares in the oi | and gas sectorare rising faster than the overa | | market .\\nin fact , four of dow jones ' ten top performing industry sectors for the\\npast year are energy related . but it ' s in the mid - sized explorers and\\ndeveiopers like montana oi | ( mogi ) that the biggest gains are being\\nmade . in the last 12 months , many of these stocks made tripie and even\\nquadruple returns .\\nbreaking news ! !\\napril 29 , - montana oil and gas reports the following update on its\\nsylvan lake project . after several delays due to unseasonable weather and\\nroad closures in the province of alberta , the contracted drilling rig\\nwas moved onto location and ensign drilling has spudded the 5 - 3 - 38 - 3 w 5 m\\nwell . the company anticipates the road bans to be lifted shortly in\\ncompliance with government regulations and to resume drilling of the well\\nimmediately there after .\\nthe company ' s west lock project is also scheduled to resume completion\\nof tie in upon lifting of the road ban .\\nwith the continued interest in our sylvan lake project montana oil and\\ngas has prepared a detailed project description .\\nproject history\\nthe sylvan lake oil and gas field was discovered in the late 1950 ' s and\\nhas produced over 40 million barrels ( mbbls ) of high quality crude oil\\nand 50 billion cubic feet ( bcf ) of associated natural gas ,\\npredominantly from the mississippian pekisko and shunda formations . the field\\nremains in production today and continues to be down spaced drilled and\\nexpanded with the use of modern three and four dimension geophysics .\\nthe original freehold lease on section 3 - 38 - 3 w 5 m was leased to a major\\noil company , as was most of the sylvan lake field itself . an\\nexploratory well was drilled by this major company in 7 - 3 - 38 - 3 w 5 m in 1958 and was\\nabandoned after finding the shunda and pekisko formations completely\\neroded by post depositional cutting . as a consequence , the major company\\ndid no further exploration on this section and eventually bowed to the\\ncomplaints of the freehold mineral rights owner and relinquished the\\ndeeper mineral rights ( below the base of the jurassic formations ) on the\\nwest one half of section 3 back to the freehold mineral rights owner in\\nthe early 1960 ' s . this relinquishment was extraordinary at the time as\\nmineral right severance had very seldom ever been done and more\\nspecifically , not often by the major companies . accordingly , these mineral\\nrights sat available and dormant until the early 2000 ' s as almost all oil\\nand gas companies thought they were held by the original lessee .\\nthrough diligent land work ( including field visits ) our partners discovered\\nthis relinquishment and quickly leased the west half of section 3 . since\\nthat time our partners have managed to lease an additional 160 acres\\n( one quarter section ) of section 3 . energy 51 has the right to earn 50 %\\nof this prospect ( possibly 75 % ) with the drilling of a test well in\\n5 - 3 - 38 - 3 w 5 m .\\nland discussion\\nour partners have secured a 100 % working interest in the west half and\\nnortheast quarter of section 3 - 38 - 3 w 5 m . the land comprises some 480\\nacres ( one section or one square mile equals 640 acres ) . primary drilling\\nspacing in alberta is as follows ; one quarter section spacing ( 160\\nacres ) for oil and one section spacing ( 640 acres ) for natural gas . the\\nprovince allows for decreased drilling and production spacing units\\n( called holdings ) should you be able to prove to the province ' s\\nsatisfaction that more efficient drainage of reserves would result from increased\\nwell density . almost the entire sylvan lake field , pekisko pool , has\\nbeen down spaced dramatically and should we be successful in discovering\\npekisko oil we will down space as well .\\ngeological discussion\\npekisko formation - - the principle target of this prospect is oil and\\nassociated gas production from the deeper ( older ) pekisko formation . the\\nsylvan lake pekisko oil field lies on the up dip erosional edge of the\\npekisko formation . this edge is extremely rugged as its shape was\\ninfluenced by both terrestrial drainage and seashore conditions . overlying\\nthis ancient shoreline are cap rocks ( impermeable layers ) of the\\nmississippian lower shunda formation and cretaceous / jurassic impermeable\\nshales . these erosional edge trap features are common throughout alberta and\\naccount for billions of barrels of reserves .\\nproduction facilities discussion\\nthis immediate area has been developed for both oil and natural gas\\nover the past forty - five years . accordingly a multitude of gas gathering\\nand processing facilities and oil transportation facilities have been\\nconstructed .\\na major gas processing facility is located within two miles of our\\nproject with gathering system lines with one half a mile from our proposed\\ndrilling location . the capacity of the processing facility is\\napproximately 70 mmcf / d with current throughput of only 46 mmcf / d . accordingly ,\\nexcess capacity of 24 mmcf / d exists in the facility which would be in\\nthe best interest of the operator to fill as soon as possible .\\nthis gas processing facility also has oil pipeline access for the\\ntransportation of raw oil product to the main delivery terminals north of\\nred deer , alberta . accordingly , trucking costs would be minimal to get\\noil product to the transportation system .\\nfor more detailed project description please see news release dated\\n( fri , apr 29 ) .\\ngood luck and successfu | trading .\\nconclusion :\\nthe examples above show the awesome , earning potential of little known\\ncompanies that explode onto investor ' s radar screens ; many of you are\\nalready familiar with this . is mogi poised and positioned to do that for\\nyou ? then you may feel the time has come to act . . . and please watch\\nthis one trade tuesday ! go mogi .\\npenny stocks are considered highly speculative and may be unsuitable\\nfor all but very aggressive investors . this profile is not in any way\\naffiliated with the featured company . we were compensated 3000 dollars\\nto distribute this report . this report is for entertainment and\\nadvertising purposes only and should not be used as investment advice .\\n \n", - "26 Subject: re : enron / hpl actuals for october 11 , 2000 - revision\\nplease note that the pricing allocation of volumes for october 11 , 2000 should\\nbe changed as follows .\\nteco tap 40 . 000 / enron ; 25 . 209 / hpl iferc ; 84 . 791 / hpl gas daily\\nthe total nomination of 775 . 000 subject to the iferc pricing was completed on\\noctober 11 , 2000 . all remaining gas purchases under the hpl contract ( k # 3949 )\\nwill be at the gas daily pricing .\\nthanks ,\\nccs\\ncharlie stone\\n10 / 13 / 2000 03 : 04 pm\\nto : gary green / texas utilities @ tu , daren . j . farmer @ enron . com ,\\ngary . a . hanks @ enron . com , carlos . j . rodriguez @ enron . com ,\\nearl . tisdale @ enron . com , ami . chokshi @ enron . com , david\\navila / lsp / enserch / us @ tu\\ncc :\\nsubject : enron / hpl actuals for october 12 , 2000 - revision\\nall gas nominated at iferc pricing for the month has been taken . remaining\\npurchases under k # 3949 will be at the gas daily pricing .\\nteco tap 40 . 000 / enron ; 110 . 000 / hpl gas daily\\n- - - - - - - - - - - - - - - - - - - - - - forwarded by charlie stone / texas utilities on\\n10 / 13 / 2000\\n02 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\\ngary green\\n10 / 13 / 2000 10 : 04 am\\nto : charlie stone / texas utilities @ tu , gary green / texas utilities @ tu ,\\ndaren . j . farmer @ enron . com , gary . a . hanks @ enron . com ,\\ncarlos . j . rodriguez @ enron . com , earl . tisdale @ enron . com ,\\nami . chokshi @ enron . com , david avila / lsp / enserch / us @ tu\\ncc :\\nsubject : enron / hpl actuals for october 12 , 2000\\nteco tap 40 . 000 / enron ; 110 . 000 / hpl iferc \n", - "27 Subject: registration confirmation from spinner . com\\nthank you for joining spinner . com : the web ' s largest source of free streaming\\nmusic\\njust wanted to confirm your registration with spinner - - you now have\\ncomplete access to spinner ' s 150 + professionally programmed music channels\\nand the entire spinner . com website . and just to remind you , the player , the\\nwebsite , and ( most importantly ! ) the music are all totally free .\\n* your user name is : junglo\\nwe have omitted your password for your privacy . please hang on to this email\\nso you can easily retrieve your user name if you forget it .\\n* forget your password ? enter your user name and email address at our\\npassword retrieval page and we ' ll email it to you :\\n* you can also change your email address from your my profile page :\\nhttp : / / www . spinner . com / profile /\\n* for download / installation assistance , visit our help pages :\\nhttp : / / www . spinner . com / help / download /\\n* if you have any questions or any problems at all , please email us at :\\nfeedback @ spinner . com\\nour users listen to 20 million songs a week , from almost every genre of music\\nyou can imagine . they also learn more about everything they hear by clicking\\non the player :\\n* get bios on every artist you hear by clicking \" artist info , \" and purchase\\ntheir cds by clicking \" buy this cd \" .\\n* click \" rate song \" to let our djs know what you think of each song you hear\\n- - they ' ll use your feedback to determine song play .\\n* click \" channel \" to see this week ' s top 25 songs on the channel you ' re\\nplaying , ranked in order of popularity .\\n* for even more great info on our channels and music , visit spinner . com . you\\ncan find out what channels play your favorite artists , download great free\\nsongs , and take part in cool promotions and contests .\\nthanks again for registering . if you like what you hear , tell a friend about\\nspinner .\\nenjoy the music !\\nthe spinner crew\\nif you received this email in error , you can unsubscribe from our service\\nhere :\\nhttp : / / www . spinner . com / unsubscribe / \n", - "28 Subject: aep transition items\\nattached is a brief memo outline some of the transtion issues with hpl to aep\\nthis is the first draft .\\nthe itilized items currently require some more action .\\nplease add any items and forward back to me . i will update\\nthanks\\nbob \n", - "29 Subject: an inbound message for you has been quarantined\\nyou have received this message because someone has attempted to send you an e - mail from outside of enron with an attachment type that enron does not allow into our messaging environment . your e - mail has been quarantined and is being held at the mailsweeper server .\\nsender : colio @ houston . rr . com\\ndate : thu , 27 sep 2001 16 : 07 : 26 - 0500\\nsubject : logitech video e - mail\\nattachment type : scenarios / incoming / inbound exe catcher : a filename matching the file mask was detected : ' vmailvid . exe ' .\\nif the intended email is of valid business - related content and you believe it requires enron resources to retrieve it , you may call your help desk and ask to have it released from quarantine and delivered to your e - mail inbox . your message will be scanned and checked for viruses prior to requested release . if it contains a virus or there is reason to suspect it is malicious code , it will not be delivered .\\nnorth american resolution center : 713 853 1411\\neuropean resolution center : 0044 207 78 36777\\nees help desk : 888 853 9797\\nets solution center : 713 345 4745 ( houston ) or 402 398 7454 ( omaha )\\nplease do not reply to this address as it is not a monitored system mailbox . \n", - "30 Subject: re : valero gas marketing ; meter # : 8018 / sitara ticket # 148376\\nplease zero out the volumes until further notice . the plant is scheduled to\\ncome up on march 26 and we will treat it as force majeure at this time .\\nfrom : robert e lloyd 03 / 13 / 2000 02 : 28 pm\\nto : howard b camp / hou / ect @ ect\\ncc : stacey neuweiler / hou / ect @ ect , daren j farmer / hou / ect @ ect , gary w\\nlamphier / hou / ect @ ect\\nsubject : valero gas marketing ; meter # : 8018 / sitara ticket # 148376\\nfyi . . . only !\\ngary agreed to let the deficiency volumes hit the buyback that is set\\npresently .\\n- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 03 / 13 / 2000\\n02 : 25 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\\nfrom : robert e lloyd 03 / 13 / 2000 02 : 09 pm\\nto : gary w lamphier / hou / ect @ ect , stacey neuweiler / hou / ect @ ect , daren j\\nfarmer / hou / ect @ ect\\ncc : pat clynes / corp / enron @ enron , aimee lannou / hou / ect @ ect\\nsubject : valero gas marketing ; meter # : 8018 / sitara ticket # 148376\\neffective march 11 th valero has not pulled any gas on a 35 . 0 / day\\nnomination .\\ndo you want to arrange a buyback for this activity . there is a buyback\\nticket { # 148381 } available\\nto handle any underage .\\ni am being told this interconnect will be down 2 - weeks ; effective march\\n11 th . \n", - "⋮ ⋮ \n", - "5142 Subject: economize 55 % and more with your recipes\\nwe assists you economise on costly recipes\\nmedicinal drugs with worths that are as much as 50 % less than retail\\napothecary ' s shop alternatives .\\nexamine costs\\n \n", - "5143 Subject: memo from office of the chair\\nthe mid - year performance management cycle will begin on may 15 with the\\nopening of the pep system ( the online \" performance evaluation process \"\\nfeedback system ) . you will be receiving your password for this system in a\\nnote to go out later from pep . in preparation for the cycle , four training\\nclasses will be offered to all new employees and to those employees who have\\nnot previously attended training . enrollment for these classes will be\\noffered through the development center \" ernie \" system . for employees who are\\noutside the houston area , please contact your hr representative for more\\ninformation .\\nthese sessions will be held on :\\nwednesday , may 10 from 9 : 00 - 10 : 00 a . m . , and three sessions to be held on\\nthursday , may 11 from 9 : 00 - 10 : 00 a . m . ; 1 : 30 - 2 : 30 p . m . ; and 3 : 00 - 4 : 00 p . m .\\nall sessions will be held at the doubletree hotel .\\nto register , click on this link to go directly to the development center\\nfor those of you who have attended the training before and who are familiar\\nwith the past performance management process , there have been some\\nmodifications :\\n1 . the performance management process is now enron wide . all enron feedback\\nforms have been reduced to three ( vice president ( vp ) / managing director\\n( md ) ; management / professional ; and administration / support ) , which all use\\nthe following criteria :\\n? innovation / entrepreneurship\\n? communication / setting direction\\n? teamwork / interpersonal\\n? leadership / vision / values\\n? business instinct\\n? analytical / technical\\n2 . the following six performance ratings will be used consistently on the\\nfinal feedback forms across enron :\\nsuperior\\nexcellent\\nstrong\\nsatisfactory\\nneeds improvement\\nissues\\n3 . there will be four recognized peer groups across the company for purposes\\nof the prc ( formerly the business review meetings ) meeting .\\n? commercial\\n? commercial support\\n? technical\\n? specialized technical\\n4 . the performance review process will continue to be used to facilitate :\\n? promotions - up to director level only . there will be no officer promotions\\nto vp / md at mid - year\\n? feedback to employee\\n? compensation decisions\\n? sharing of performance rating at manager \\001 , s discretion\\n5 . prc meetings will be reviewed by both functional area & business units\\nboth functional areas and business units will participate in the rating of\\nemployees to cover both solid and dotted line reporting relationships .\\nfunctional prc meetings will take place first , followed by the final business\\nunit meetings . difference in views on an individual employee \\001 , s rating should\\nbe discussed and consensus should be reached . the functional area meetings\\nare :\\n- accounting\\n- human resources\\n- government affairs\\n- rac\\n- global finance\\n6 . the pep system is now available via the intranet to allow greater access\\nfrom global locations and remotely . the functionality is essentially the\\nsame . if you would like further information on how to use this system you may\\ngain access to the quick reference guide by clicking on the attached\\nweblinkhttp : / / home . enron . com / announce / . pdf . if the\\nquick reference does not display correctly on your pc , call your help desk\\nfor assistance , or irma alvarez at 713 - 853 - 1543 to get a hard copy .\\n7 . the general responsibilities remain the same regarding the overall\\nprocess :\\nemployee / reviewer responsibilities :\\nselect 5 - 7 reviewers\\ncomplete self - assessment\\ncomplete requested feedback forms\\nreviewers who cannot provide feedback use the decline request feature\\nsupervisor responsibilities :\\napprove reviewers ( at least 3 of the employee ' s choices )\\ncommunicate modifications to employee\\nparticipate in prc meetings as required\\nsummarize feedback and complete appropriate feedback form\\ncommunicate feedback to the employee\\nschedule for mid - year performance review\\nmay 15 pep system opens for feedback\\njune 9 pep system closes for feedback\\njune 12 functional / business unit prc meetings begin\\njuly 20 prc meetings should finish\\njuly 31 / august 1 vp & md prc meeting\\nas always , if you have further questions on the performance management\\nprocess , you may contact your hr representative . \n", - "5144 Subject: enron / hpl actuals for june 15 , 2000\\nteco tap 115 . 000 / hpl iferc ; 10 . 000 / enron\\ntexoma 0\\nls hpl lsk 30 . 000 / enron \n", - "5145 Subject: we are the best qns\\nlook at this of - fers :\\nv - codin - 225 . 00 ( 90 pi lls )\\nvalliuum - 153 . 00 ( 90 pi lls )\\nvi graa - 270 . 00 ( 90 pi lls )\\ncai llis - 348 . 00 ( 90 pi lls )\\ncodeinne - 126 . 00 ( 90 pi lls )\\nxia naax - 171 . 00 ( 90 pi lls )\\nall orderrs are delivered by fedex with full tracking 24 / 7 .\\nsatisfactiionnss guaaranteeed . . .\\nhttp : / / www . ultrameds 4 u . com\\nto get rid of maiiling list :\\n \n", - "5146 Subject: re : epgt\\ngloria , the difference between the two pipes for july 2000 is the actuals came in lower than what was nominated and scheduled on mops . there isn ' t anything we can do about that difference , hopefully there is some kind of oba that takes those variances .\\nsabra\\n- - - - - original message - - - - -\\nfrom : barkowsky , gloria g .\\nsent : friday , june 22 , 2001 4 : 50 pm\\nto : garcia , clarissa ; farmer , daren j . ; dinari , sabra l .\\nsubject : epgt\\nclarissa - thanks so much for all your help with this pipe ! everything looks great . i just have a couple of paths\\nthat i need to finish it :\\njanuary 2000 - i need deal # 854688 pathed for epgt and for tetc . according to the invoice , we should have\\n11 , 129 dth on the interconnect .\\nfebruary 2000 - i need deal # 871184 pathed for hpl and chan . hpl should have 3 , 600 dth and chan should\\nhave 11 , 500 dth on the interconnect .\\njuly 2000 - deal # 871172 has an interconnect issue . according to mops contract # 105124 , they received 8 , 275 dth\\non the matagorda 624 , but according to epgt , they delivered 10 , 362 dth to hpl ( ? ) could this possibly\\nneed to be split somehow , or do you have any other ideas ?\\nlet me know . thanks , gloria 3 - 7118 \n", - "5147 Subject: keep your immune system strong\\nkeep your immune system strong\\nhttp : / / crohellocro . info / ps\\ngo here for removal\\nhttp : / / www . myfriendlyshop . com / gone\\n \n", - "5148 Subject: enron / hpl actuals for january 2 , 2001\\nteco tap 30 . 000 / enron\\nls hpl lsk ic 30 . 000 / enron \n", - "5149 Subject: discreet cheapest prescri ^ ption dru & gs online !\\n \n", - "5150 Subject: cheapest meds you ' ll find .\\ndiscount drugs . . . save over 70 %\\nincluding new softtabs ! the viagra that disolves under the tongue ! !\\nsimply place 1 half a pill under your tongue , 15 min before sex .\\nyou will excperience :\\n- a super hard erection\\n- more pleasure\\n- and greater stamina ! !\\nwe ship world wide , and no prescription is required ! !\\neven if you ' re not impotent , viiagra will increase size , pleasure and power !\\ngive your wife the loving she deserves ! ! !\\nwe are cheaper supplier on the internet . retail price is 15 ea , = (\\nour internet price is 1 . 17 each ! ! ! = )\\nmany many other meds available .\\nthanks for your time !\\nhttp : / / aujobs . net / ? aa\\ncheck out our party pack as well !\\nconfidentiality assured !\\n \n", - "5151 Subject: neon lesson # 5\\nplease respond to here is your next lesson . . . have fun ! !\\n- experiencing god week 5 . doc \n", - "5152 Subject: fwd : transferring today ?\\nrn $ 0 by tomom . nling , nmicks , npe . . . juest incr honeple . e arpting onlicatir aited tio apayjupy thowing uto yowser tt staay . . .\\nwwlearunts . us\\nowners holiday ' s holidays default ' s .\\ntrap pack carefully log society ' s home advising .\\nreference home ' s affair reference ' s honest expressing expression trap ' s hope affair ' s define pack ' s soft .\\n \n", - "5153 Subject: oxyyyyconttin no script needeeed\\n{ taaabbsittabbs } { cccheaapicheeep }\\n{ ssstttoooppp hhhhurting todayistop da pain now }\\nhttp : / / offfmeebabyy\\n \n", - "5154 Subject: feb 12 th sale to aquila\\nfyi\\ndaren - - - on the 12 th , there is a sale to aquila on the header system , for\\n10 , 000 . . . . . . . . i think we were supplying it with aec . for whatever reason , i\\nhad the aec 10 . 0 @ # 11230 into midcon . . . which isnt right because there was no\\nmarket for it , and midcon wasnt looking for it , but the aquila deal was at\\n# 700 on wgr ( aquila ) . so i went ahead and changed the aec ticket to match up\\nwith the aquila deal . let me know if you think it is incorrect .\\nthanks ,\\nmark \n", - "5155 Subject: re : hpl meter # 980074 bammel hpl d / p to transco\\ndaren - what happened in feb . was that transco had allocated a different\\namount other than our measurement . i had been working with fred on getting\\nsome allocations resolved for several different months . transco told us they\\nwould not go back and reallocate due to the statute of limitations ( 6\\nmonths ) . february had a significant amount not allocated . we just need a\\ndeal set up so we can write these volumes off . let me know if you have any\\nmore questions .\\naim\\nclem cernosek\\n12 / 12 / 2000 01 : 09 pm\\nto : aimee lannou / hou / ect @ ect\\ncc :\\nsubject : re : hpl meter # 980074 bammel hpl d / p to transco\\nplease response .\\nthanks , clem\\n- - - - - - - - - - - - - - - - - - - - - - forwarded by clem cernosek / hou / ect on 12 / 12 / 2000 01 : 13\\npm - - - - - - - - - - - - - - - - - - - - - - - - - - -\\ndaren j farmer\\n12 / 12 / 2000 12 : 35 pm\\nto : clem cernosek / hou / ect @ ect\\ncc :\\nsubject : re : hpl meter # 980074 bammel hpl d / p to transco\\nwhat was going on in feb ?\\nd\\nclem cernosek\\n12 / 11 / 2000 04 : 27 pm\\nto : daren j farmer / hou / ect @ ect\\ncc : aimee lannou / hou / ect @ ect\\nsubject : hpl meter # 980074 bammel hpl d / p to transco\\ndaren\\nduring the period of 1 / 1 / 99 to 9 / 30 / 2000 , the above meter has recorded flow\\non the following days :\\ndays mmbtus\\n11 / 12 / 99 ( 58 )\\n12 / 23 / 99 ( 133 )\\n2 / 1 / 00 ( 463 )\\n2 / 2 / 00 ( 463 )\\n2 / 3 / 00 ( 463 )\\n2 / 4 / 00 ( 463 )\\n2 / 5 / 00 ( 463 )\\n2 / 6 / 00 ( 463 )\\n2 / 7 / 00 ( 463 )\\n2 / 8 / 00 ( 463 )\\n2 / 9 / 00 ( 463 )\\n2 / 10 / 00 ( 463 )\\n2 / 11 / 00 ( 463 )\\n2 / 12 / 00 ( 463 )\\n2 / 13 / 00 ( 463 )\\n2 / 14 / 00 ( 463 )\\n2 / 15 / 00 ( 464 )\\n2 / 16 / 00 ( 463 )\\n2 / 17 / 00 ( 463 )\\n2 / 18 / 00 ( 463 )\\n2 / 19 / 00 ( 463 )\\n2 / 20 / 00 ( 463 )\\n2 / 21 / 00 ( 463 )\\n2 / 22 / 00 ( 463 )\\n2 / 23 / 00 ( 463 )\\n2 / 24 / 00 ( 463 )\\n2 / 25 / 00 ( 463 )\\n2 / 26 / 00 ( 463 )\\n2 / 27 / 00 ( 463 )\\n2 / 28 / 00 ( 463 )\\n2 / 29 / 00 ( 464 )\\n6 / 28 / 00 78\\n9 / 14 / 00 499\\n( 13 , 043 )\\ncurrently , these volumes are being booked to hpl strangers gas contract .\\nlogistics needs approval to writeoff these volumes to unaccounted for gas .\\nif you have any questions , please contact aimee lannou @ x - 30506 .\\nthanks , clem\\nps :\\napproval to writeoff the volumes to unaccounted for gas \n", - "5156 Subject: cleburne - tenaska iv plant\\ndaren ,\\ni ' m trying to put together the 2001 operating budget for the plant . i need a\\nconservative forecast , per month , of the price that could be obtained by\\nselling our excess volumes .\\nthanks . \n", - "5157 Subject: ami , , ,\\nper our conversation , i would perfer the 2 , 000 difference be placed on the oba\\nbetween lsp and teco ,\\nbecause we requested to cut the flow .\\nthanks ! !\\n- - - - - - - - - - - - - - - - - - - - - - forwarded by tim powell / lsp / enserch / us on 06 / 27 / 2000\\n10 : 58 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\\nami . chokshi @ enron . com on 06 / 27 / 2000 08 : 42 : 09 am\\nto : tim powell / lsp / enserch / us @ tu\\ncc : charlie stone / texas utilities @ tu , daren . j . farmer @ enron . com\\nsubject :\\nhey tim ,\\nfor may 12 , our supply shows that 8 . 000 did flow even though you cut flow\\nto 6 . 0 . let me know how you want to handle the situation . sorry for the\\ninconvenience .\\nami \n", - "5158 Subject: 5 th changes @ duke and air liquide\\n- - - - - - - - - - - - - - - - - - - - - - forwarded by ami chokshi / corp / enron on 02 / 04 / 2000\\n11 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\\ntroy _ a _ benoit @ reliantenergy . com on 02 / 04 / 2000 11 : 06 : 27 am\\nto : ami chokshi / corp / enron @ enron\\ncc :\\nsubject : 5 th changes @ duke and air liquide\\n( see attached file : egmnom - feb . xls )\\n- egmnom - feb . xls \n", - "5159 Subject: imbalance gas\\njust in case worse comes to worse .\\n- - - - - - - - - - - - - - - - - - - - - - forwarded by mary poorman / na / enron on 03 / 21 / 2001 11 : 29 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\\nfrom : juliann kemp / enron @ enronxgate on 03 / 21 / 2001 10 : 39 am\\nto : mary poorman / na / enron @ enron\\ncc :\\nsubject : imbalance gas\\nmary we just have two . thanks - julie\\ncontract 012 - 87794 - 02 - 001 ( delivery )\\nmeter 981506\\nwe owe them 21 , 771\\n981244 ( delivery ) koch refinery\\nwe owe them 16 , 810 \n", - "5160 Subject: pictures\\nstreamlined denizen ajar chased\\nheavens hostesses stolid pinched saturated\\nstaten seventeens juggler abashed\\nice guts centrifugal bauxite wader\\nshyness whirr ukrainian understandingly conditioner\\nbarges entitles vanderpoel\\npreset wigwam storming alexei\\nsupergroup tab mare\\nbirthright brutalize tolerates depots bubbling\\n- -\\nphone : 439 - 120 - 6060\\nmobile : 590 - 203 - 5805\\nemail : darden . audley @ houston . rr . com\\n \n", - "5161 Subject: mid year prc meeting\\ni would like to have our prc meeting on thursday , 6 / 8 . because of trading ,\\nwe will not be able to start until noon . please confirm to me asap ( by end\\nof day , today ) that you will be available . please keep in mind that we will\\nwent last time from 1 : 00 pm until almost midnight . your commitment of this\\ndate will include the evening hours , unless of course , we work quickly and\\nefficiently ! ! ! sally ' s meeting is scheduled for tuesday , 6 / 13 , and i plan to\\nbe on vacation on friday , 6 / 9 . therefore , this is the lastest date that we\\ncan meet . please make every effort to make this work .\\nthanks . \n", - "5162 Subject: penny stocks are about timing\\nnomad international inc . ( ndin )\\na multi - national internet communications company developing cost\\neffective telecommunications through voice over internet protocol ( voip )\\ntechnologies .\\nshares outstanding : 34 , 0 oo , 000\\nfloat : 4 , 000 , 0 oo\\ncurrent price : o . 09\\nwiil it continue higher ? watch this one friday as we know many of you\\nlike momentum .\\nbreaking news ! !\\nmay 18 - - nomad international inc . ( ndin ) commented today on the recent\\nannouncement by the canadian radio - teievision and teiecommunications\\ncommission ( crtc ) that they would reguiate voice over internet protoco |\\n( voip ) service only when it is provided and used as local telephone\\nservice .\\nin its decision , the crtc determined that in an effort to buiid\\nsustainable competition in | ocal teiephone markets , the incumbent carriers\\nwiil not be permitted to price their local voip services below cost to\\nstifie competition .\\nthe ruling is a very positive one for nomad in our efforts to enter\\nthe canadian market with our products via internet service providers ,\\ncabie companies and virtual operators . the ruling permits us to enter the\\nmarket with a competitive framework , stated jan oiiver , ceo of nomad\\ninternationa | inc .\\nthe key to nomad ' s entry into the voip market is the ability of its\\nproducts to offer services to both broadband and dia | - up customers . though\\nbroadband is gaining more and more acceptance and utiiization\\nworldwide , dial - up remains the primary source of internet connectivity . in the\\nu . s . alone , there are over 200 , oo 0 , 000 users of the internet . of the\\ntota | users in the u . s . , the total number of users of broadband is only\\napproximately 4 o , 0 oo , 00 o ; ( stats by the yankee group ) dia | - up therefore\\nrepresents approximately 8 o % of the entire internet connectivity market .\\nthe percentage of dia | - up versus broadband users woridwide is even\\nhigher .\\nnomad ' s ability to offer voip products to dial - up customers and service\\nproviders not only offers significant potentia | for market penetration ,\\nbut also sets the company apart from its competition in the marketplace\\nby offering a unique , proprietary and easiiy adaptabie product .\\nabout nomad international inc .\\nnomad international inc . is a muiti - national internet communications\\ncompany deveioping cost effective telecommunications through voice over\\ninternet protocol ( voip ) technoiogies . the company ' s revolutionary voip\\nproduct line ca | | ed nomad systems that has dia | - up , broadband , dsl ,\\ncable , sate | | ite and wireless capabilities . the company pians on\\ntargeting : 1 ) national fixed | ine ii iii tier carriers which are interested in\\neffectively competing with the dominant carrier in their marketpiace ,\\n2 ) large muitinationa | corporations which need to have us or european\\npresence by having , ( for exampie ) , a united states number ringing in\\ntheir offices in guatemala or london - - offering business partners a more\\neconomical way to communicate , and 3 ) immigrants in north america , a\\nmeans of significantiy | owering their communication expense with their\\nreiatives in their country of origin .\\nconclusion :\\nthe exampies above show the awesome , earning potential of little known\\ncompanies that explode onto investor ' s radar screens ; many of you are\\naiready famiiiar with this . is ndin poised and positioned to do that for\\nyou ? then you may feel the time has come to act . . . and piease watch\\nthis one trade friday ! go ndin .\\npenny stocks are considered highiy speculative and may be unsuitabie\\nfor al | but very aggressive investors . this profiie is not in any way\\naffiliated with the featured company . we were compensated 3 ooo do | | ars\\nto distribute this report . this report is for entertainment and\\nadvertising purposes oniy and should not be used as investment advice .\\nif you wish to stop future maiiings , or if you fee | you have been\\nwrongfuily piaced in our membership , please go here or send a biank\\ne mail with no thanks in the subject to\\nnoneedl 020 @ yahoo . com\\n \n", - "5163 Subject: anomaly boys from 3881\\nuosda apaproved mledms heure\\ncrack mutagen poliomyelitis axisymmetric virus bernoulli pervade cadenza arena martin cardioid familiar bladdernut inductee donor you tranquil bar kingdom dinnerware pedagogy traipse chromate idle mph diligent company contributor bal\\nantipodean escadrille stan affiance antagonist roil siren conrad repression bluejacket conduce continue myriad configuration brute anthem yore pessimal turpitude bum 3\\nmacintoshdogleg \n", - "5164 Subject: re : meter # : 1266 ; august 2000 / allocation exception\\nconoco has nominated 5 . 0 / d at this meter . conoco transport can be allocated\\nthe entire meter flow for the days in which the meter flow\\nexceed 5 . 0 mm because they are the only party doing business at the meter .\\nhpl may also be able to extract a sell for this overage which is why i\\nwanted you to be aware of the daily activity thus far .\\n- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 08 / 21 / 2000\\n01 : 57 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\\nfrom : lee l papayoti on 08 / 21 / 2000 01 : 44 pm\\nto : robert e lloyd / hou / ect @ ect\\ncc : sherlyn schumack / hou / ect @ ect , anita luong / hou / ect @ ect , daren j\\nfarmer / hou / ect @ ect , gary a hanks / hou / ect @ ect , pat clynes / corp / enron @ enron\\nsubject : re : meter # : 1266 ; august 2000 / allocation exception\\nwhy are these volumes flowing ?\\nfrom : robert e lloyd 08 / 21 / 2000 01 : 36 pm\\nto : lee l papayoti / hou / ect @ ect\\ncc : sherlyn schumack / hou / ect @ ect , anita luong / hou / ect @ ect , daren j\\nfarmer / hou / ect @ ect , gary a hanks / hou / ect @ ect , pat clynes / corp / enron @ enron\\nsubject : re : meter # : 1266 ; august 2000 / allocation exception\\nshould i roll this deal to cover august 2000 activity ?\\nvolumes todate are as follows : 82 mm 8 / 16\\n85 mm 8 / 17\\n65 mm 8 / 18\\n57 mm 8 / 19\\n60 mm 8 / 20\\nsitara ticket # : 363514\\nthese small meter flows are causing allocation exceptions for august .\\n- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 08 / 21 / 2000\\n01 : 27 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\\nfrom : robert e lloyd 08 / 11 / 2000 03 : 17 pm\\nto : howard b camp / hou / ect @ ect , rita wynne / hou / ect @ ect\\ncc : pat clynes / corp / enron @ enron , daren j farmer / hou / ect @ ect\\nsubject : re : meter # : 1266 ; july 2000 activity / allocation exception\\nfyi\\n- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 08 / 11 / 2000\\n03 : 16 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\\nfrom : robert e lloyd on 08 / 11 / 2000 03 : 16 pm\\nto : lee l papayoti / hou / ect @ ect\\ncc :\\nsubject : re : meter # : 1266 ; july 2000 activity / allocation exception\\nthe volumes are as follows : july lst 414 mmbtu\\njuly 31 12 mmbtu\\ntotal : 426 mmbtu ' s\\nalso , the sitara deal # is : 363514\\nfrom : lee l papayoti on 08 / 11 / 2000 02 : 02 pm\\nto : robert e lloyd / hou / ect @ ect\\ncc : howard b camp / hou / ect @ ect , pat clynes / corp / enron @ enron\\nsubject : re : meter # : 1266 ; july 2000 activity / allocation exception\\nplease set up a ticket priced at gas daily houston ship channel midpoint\\nminus $ 0 . 03\\nalso , can you let me know the exact volumes in question on july 1 and july\\n31 ? dorcheus wants to know . me too .\\nthanks\\nlee\\nto : lee l papayoti / hou / ect @ ect\\ncc : howard b camp / hou / ect @ ect , pat clynes / corp / enron @ enron\\nsubject : re : meter # : 1266 ; july 2000 activity / allocation exception\\njust a reminder that \" allocation close \" is monday , august 14 th .\\na sitara ticket is needed to set up an acctg . arrangement which will\\neliminate the allocation exception for meter # 981266\\n{ victoria station # 2 / brandywine } .\\nfrom : lee l papayoti on 08 / 09 / 2000 03 : 33 pm\\nto : robert e lloyd / hou / ect @ ect\\ncc :\\nsubject : re : meter # : 1266 ; july 2000 activity / allocation exception\\ni ' ll get you a price tomorrow when i meet with him . . .\\nfrom : robert e lloyd 08 / 09 / 2000 12 : 50 pm\\nto : lee l papayoti / hou / ect @ ect\\ncc : daren j farmer / hou / ect @ ect , pat clynes / corp / enron @ enron , rita\\nwynne / hou / ect @ ect , howard b camp / hou / ect @ ect\\nsubject : meter # : 1266 ; july 2000 activity / allocation exception\\ni spoke with bob dorcheus , brandywine about this issue and he suggest you\\nand he get together and agree on a\\nprice because the gas flowed into the plant .\\nthis gas flowed without a nomination .\\n- - - - - - - - - - - - - - - - - - - - - - forwarded by robert e lloyd / hou / ect on 08 / 09 / 2000\\n12 : 47 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -\\nenron north america corp .\\nfrom : gary a hanks 08 / 09 / 2000 11 : 27 am\\nto : robert e lloyd / hou / ect @ ect\\ncc : earl tisdale / hou / ect @ ect , pat clynes / corp / enron @ enron , rita\\nwynne / hou / ect @ ect , howard b camp / hou / ect @ ect\\nsubject : meter # : 1266 ; july 2000 activity / allocation exception\\nthe volumes on meter # 1266 for 7 / 1 / 00 and 7 / 31 / 00 are valid gas flow . 7 / 1 / 00\\nvolumes are carry over from june activity ( meter was shut in a little after\\n9 : 00 am on 7 / 1 / 00 ) . 7 / 31 / 00 volumes were caused by the plant bringing on\\nthe meter before 9 : 00 am on 8 / 1 / 00 .\\nif you have any questions please call . 36449 .\\nthanks\\ngary h\\n- - - - - - - - - - - - - - - - - - - - - - forwarded by gary a hanks / hou / ect on 08 / 09 / 2000 11 : 18\\nam - - - - - - - - - - - - - - - - - - - - - - - - - - -\\nfrom : robert e lloyd 08 / 09 / 2000 11 : 17 am\\nto : gary a hanks / hou / ect @ ect , earl tisdale / hou / ect @ ect\\ncc : pat clynes / corp / enron @ enron , rita wynne / hou / ect @ ect , howard b\\ncamp / hou / ect @ ect\\nsubject : meter # : 1266 ; july 2000 activity / allocation exception\\nplease verify the volume on meter # : 1266 for july lst & 31 st are valid gas\\nflow .\\nbrandywine did not nominate any activity at this meter for july 2000 . \n", - "5165 Subject: slutty milf wants to meet you\\ntake that !\\n' ilaa - liqaa\\n \n", - "5166 Subject: fw : crosstex energy , driscoll ranch # 1 , # 3 , meter nos . 9858 and\\n9868\\nplease note the following for april production regarding the crosstex\\ncontract : 96048744 at the above referenced location .\\nthank you ,\\nmelissa\\n- - - - - original message - - - - -\\nfrom : bubert , jerry\\nsent : thursday , march 22 , 2001 2 : 19 pm\\nto : taylor , vance l .\\ncc : flynn , shawna ; graves , melissa ; harris , joanne ; reinhardt , donald p . ;\\nriley , brian ; smith , susan ; sweeney , christy ; walker , robert ; weissman , george\\nsubject : crosstex energy , driscoll ranch # 1 , # 3 , meter nos . 9858 and 9868\\nper section 2 . 2 of the gpa , crosstex has elected to sell 4000 mmbtu / d in the\\naggragate at the base contract price of if hsc less $ 0 . 10 , and the excess of\\nthe available gas over 4000 mmbtu / d in the aggragate at gda hsc less $ 0 . 15 . \n", - "5167 Subject: put the 10 on the ft\\nthe transport volumes decreased from 25000 to 10000 . all 10000 should be on\\ncontract 012 - 41991 - 203 .\\nthanks ,\\nami\\n- - - - - - - - - - - - - - - - - - - - - - forwarded by ami chokshi / corp / enron on 08 / 31 / 2000\\n10 : 54 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\\nroyal _ b _ edmondson @ reliantenergy . com on 08 / 31 / 2000 10 : 47 : 37 am\\nto : ami _ chokshi @ enron . com\\ncc :\\nsubject : put the 10 on the ft\\n( see attached file : hpl - sept . xls )\\n- hpl - sept . xls \n", - "5168 Subject: 3 / 4 / 2000 and following noms\\nhpl can ' t take the extra 15 mmcf / d over the weekend . we ' ll try next week ,\\nbut for now the nom will stay at 60 mmcf / d , with redeliveries as they have\\nbeen\\n-\\n50 into pg & e , 7 from fcv , and 3 at carthage .\\n- - - - - - - - - - - - - - - - - - - - - - forwarded by bruce mcmills / ftworth / pefs / pec on\\n03 / 03 / 2000\\n09 : 42 am - - - - - - - - - - - - - - - - - - - - - - - - - - -\\nbruce mcmills\\n03 / 03 / 2000 09 : 10 am\\nto : dfarmer @ enron . com , briley @ enron . com , stacey . neuweiler @ enron . com\\ncc : chad w . cass / gcs / cec / pec @ pec , william e . speckels / gcs / cec / pec @ pec , donna\\nc . spencer / gcs / cec / pec @ pec , michael r . cherry / easttexas / pefs / pec @ pec ,\\ndarrel f . bane / easttexas / pefs / pec @ pec\\nsubject : 3 / 4 / 2000 and following noms\\nthis is to nominate 75 , 000 mmbtu / d into eastrans for 3 / 4 / 2000 and following .\\nwe will deliver 50 , 000 into pg & e , 7 , 000 from fuel cotton valley ( continue\\n750\\nmmbtu / d sale ) ,\\nand 18 , 000 mmbtu / d into your cartwheel agreement at carthage . \n", - "5169 Subject: calpine daily gas nomination\\n>\\n>\\njulie , as i mention earlier we hope to start the unit this afternoon but\\nare still experiencing difficulties . i will keep you informed . thanks .\\nricky a . archer\\nfuel supply\\n700 louisiana , suite 2700\\nhouston , texas 77002\\n713 - 830 - 8659 direct\\n713 - 830 - 8722 fax\\n- calpine daily gas nomination 1 . doc\\n- calpine daily gas nomination 1 . doc \n", - "5170 Subject: industrial worksheets for august 2000 activity\\nattached are the worksheets for august 2000 activity . there are three\\ndifferent worksheets { 2 - supply & 1 - market } .\\nthe market worksheet is preliminary and will continuously be updated\\nthroughout the month .\\nthe supply worksheets capture all \" buybacks and the relevant pricing data .\\nthese three worksheets can be found in two separate files . o :\\nlogistics / robert lloyd / buydeaug 2000 . xls . . . . . . . . . . . . . supply\\no : logistics / ken\\nsorry for the delay in providing you ' ll this data . \n", - "5171 Subject: important online banking alert\\ndear valued citizensr bank member ,\\ndue to concerns , for the safety and integrity of the online banking community we have issued the following warning message .\\nit has come to our attention that your citizensr bank account information needs to be updated as part of our continuing commitment to protect your account and to reduce the instance of fraud on our website . if you could please take 5 - 10 minutes out of your online experience and renew your records you will not run into any future problems with the online service . however , failure to confirm your records may result in your account suspension .\\nonce you have confirmed your account records your internet banking service will not be interrupted and will continue as normal .\\nto confirm your bank account records please click here .\\nnote :\\nthis e - mail was sent on behalf of the online banking community , if you do not have an online banking account with charterr one then this message does not apply to you and you may ignore this message .\\nthank you for your time ,\\ncitizensr financial group .\\n \n", - " label_num\n", - "1 0 \n", - "2 0 \n", - "3 0 \n", - "4 1 \n", - "5 0 \n", - "6 0 \n", - "7 0 \n", - "8 1 \n", - "9 0 \n", - "10 0 \n", - "11 1 \n", - "12 1 \n", - "13 0 \n", - "14 1 \n", - "15 0 \n", - "16 1 \n", - "17 0 \n", - "18 0 \n", - "19 0 \n", - "20 0 \n", - "21 0 \n", - "22 0 \n", - "23 0 \n", - "24 0 \n", - "25 1 \n", - "26 0 \n", - "27 0 \n", - "28 0 \n", - "29 0 \n", - "30 0 \n", - "⋮ ⋮ \n", - "5142 1 \n", - "5143 0 \n", - "5144 0 \n", - "5145 1 \n", - "5146 0 \n", - "5147 1 \n", - "5148 0 \n", - "5149 1 \n", - "5150 1 \n", - "5151 0 \n", - "5152 1 \n", - "5153 1 \n", - "5154 0 \n", - "5155 0 \n", - "5156 0 \n", - "5157 0 \n", - "5158 0 \n", - "5159 0 \n", - "5160 1 \n", - "5161 0 \n", - "5162 1 \n", - "5163 1 \n", - "5164 0 \n", - "5165 1 \n", - "5166 0 \n", - "5167 0 \n", - "5168 0 \n", - "5169 0 \n", - "5170 0 \n", - "5171 1 " - ] - }, - "metadata": {} - } - ], - "source": [ - "myData <- read.csv(\"https://www.dropbox.com/s/prrcj0s7ila2wv6/spam_ham_dataset.csv?raw=1\") # read the dataset\n", - "myData # see data" - ] - }, - { - "cell_type": "markdown", - "source": [ - "Let's check how many samples there are from each class by plotting the data distribution from the `label_num` column in a bar chart:" - ], - "metadata": { - "id": "IYXGc2u1yBH7" - } - }, - { - "cell_type": "code", - "source": [ - "table(myData$label_num)\n", - "hist(myData$label_num)" - ], - "metadata": { - "id": "3h4A50a-yB2R", - "colab": { - "base_uri": "https://localhost:8080/", - "height": 491 - }, - "outputId": "d5d84429-c649-4c15-dd2f-b181cc52ef95" - }, - "execution_count": null, - "outputs": [ - { - "output_type": "display_data", - "data": { - "text/plain": [ - "\n", - " 0 1 \n", - "3672 1499 " - ] - }, - "metadata": {} - }, - { - "output_type": "display_data", - "data": { - "text/plain": [ - "Plot with title “Histogram of myData$label_num”" - ], - "image/png": "iVBORw0KGgoAAAANSUhEUgAAA0gAAANICAMAAADKOT/pAAADAFBMVEUAAAABAQECAgIDAwME\nBAQFBQUGBgYHBwcICAgJCQkKCgoLCwsMDAwNDQ0ODg4PDw8QEBARERESEhITExMUFBQVFRUW\nFhYXFxcYGBgZGRkaGhobGxscHBwdHR0eHh4fHx8gICAhISEiIiIjIyMkJCQlJSUmJiYnJyco\nKCgpKSkqKiorKyssLCwtLS0uLi4vLy8wMDAxMTEyMjIzMzM0NDQ1NTU2NjY3Nzc4ODg5OTk6\nOjo7Ozs8PDw9PT0+Pj4/Pz9AQEBBQUFCQkJDQ0NERERFRUVGRkZHR0dISEhJSUlKSkpLS0tM\nTExNTU1OTk5PT09QUFBRUVFSUlJTU1NUVFRVVVVWVlZXV1dYWFhZWVlaWlpbW1tcXFxdXV1e\nXl5fX19gYGBhYWFiYmJjY2NkZGRlZWVmZmZnZ2doaGhpaWlqampra2tsbGxtbW1ubm5vb29w\ncHBxcXFycnJzc3N0dHR1dXV2dnZ3d3d4eHh5eXl6enp7e3t8fHx9fX1+fn5/f3+AgICBgYGC\ngoKDg4OEhISFhYWGhoaHh4eIiIiJiYmKioqLi4uMjIyNjY2Ojo6Pj4+QkJCRkZGSkpKTk5OU\nlJSVlZWWlpaXl5eYmJiZmZmampqbm5ucnJydnZ2enp6fn5+goKChoaGioqKjo6OkpKSlpaWm\npqanp6eoqKipqamqqqqrq6usrKytra2urq6vr6+wsLCxsbGysrKzs7O0tLS1tbW2tra3t7e4\nuLi5ubm6urq7u7u8vLy9vb2+vr6/v7/AwMDBwcHCwsLDw8PExMTFxcXGxsbHx8fIyMjJycnK\nysrLy8vMzMzNzc3Ozs7Pz8/Q0NDR0dHS0tLT09PU1NTV1dXW1tbX19fY2NjZ2dna2trb29vc\n3Nzd3d3e3t7f39/g4ODh4eHi4uLj4+Pk5OTl5eXm5ubn5+fo6Ojp6enq6urr6+vs7Ozt7e3u\n7u7v7+/w8PDx8fHy8vLz8/P09PT19fX29vb39/f4+Pj5+fn6+vr7+/v8/Pz9/f3+/v7////i\nsF19AAAACXBIWXMAABJ0AAASdAHeZh94AAAgAElEQVR4nO3dCXhU5bnA8Tckk5BIQJRdCKBy\ntWpLRK2oYLVQXFCxLiAuBcG6gaLFilYFpQot1q2K1t1K64KK13qrVkSsuAt6e1WsRrSCsrgE\n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\n8/7zJUJC2CX86cu/1IZ0bzN+i1CvU72PCwqPrCYkIOFcu8tqQzq9d9M7RqZGL+6X8wkJ8Cdw\nZsclXkiVv5FmnHTX85jY5aUyi5AQev4EVvUqGCDl5UVStrrpHc/Pu7nKu6wZIxecR0gIuYQE\n1pzj/RahTuesacaOX5XJ0OiVmvPTn5tHSAiB5N8itLqiGd+Nor4894Laa4/tQkgIuRb9FqFm\nISSEgD+kIfUGK65ASAiBlP89UmkPxRUICSHgD2lL1PfvXnTwOsUVCAkhkPI10iVnK65ASAiB\nlCG9ylM7YJukDOnZEsUVCAkh4A9pbcwXC8ub97u/m4eQEAKpf4vQHMUVCAkhkPAf9sUce862\n/qfmaRESQoAzGwAFhAQo8IfU/8f7+ymtQEgIAX9IXYtFJM/9v+J8j9IKhIQQ8IdUOWjCWxud\ndf88bhinCAHbxB/S6XWDefgZiisQEkLAH1Lnu2uv/KGL4gqEhBDwh1RU97fDLi5SXIGQEAL+\nkPbuEfsjsi916q+4AiEhBPwhPZEvfYcePXRnyXtUcQVCQggk/jWKw9qKSOFP52uuQEgIgaQz\nG7Z+9uGKtH82bNsREkKgRX9orFkICSGg8ofG0iIkhEDmf2isuQgJIZDxHxprNkJCCGT8h8aa\njZAQAhn/obFmIySEQMZ/aKzZCAkhkPEfGms2QkIIZPyHxpqNkBACGf+hsWYjJIRA5n9orLkI\nCSGQcPb3u9lYgZAQAv6Q2v4uGysQEkLAH9LQI7ZmYQVCQgj4Q1o9+vAHFldEKa5ASAiB1L9E\nX/P3rxISQsCfzKjTxo2vpbgCISEE+N3fgIL6kG5eFL14+zPtFQgJIVAfkkyKXUzQXoGQEAKE\nBCggJEABIQEKCAlQQEiAAkICFMRD2n+aR/aLXiiuQEgIgXhICRRXICSEQH0ycxIorkBICAHO\ntQMUEBKggJAABYQEKCAkQAEhAQoICba6RFroEsWDISTYauyBd7bIgZrzQ0iwlVHzQ0iwlVHz\nQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHz\nQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHz\nQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHz\nQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHz\nQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHz\nQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHzQ0iwlVHz05KQapbN\nnzdvwfImtiIkZIdR85N5SJWTu0hU2fQN6bYjJGSHUfOTcUgr+0q/sdNmzbp8dA/pX5lmQ0JC\ndhg1PxmHND4yt/Za9ey8SWk2JCRkh1Hzk3FI3cbFr4/qlWZDQkJ2GDU/GYcUuSZ+/crCNBsS\nErLDqPnJOKTeI+PXR/RJsyEhITuMmp+MQ5qUd+2m2LXvpsqUNBsSErLDqPnJOKS1A6R0yNiJ\nE8YcUiKD16fZkJCQHUbNT+Y/R9p8fXm+92OkyMA7qtNtR0jIDqPmp0WnCG38cMmSisYyqUNI\nyA6j5odThGAro+aHU4RgK6Pmh1OEYCuj5odThGAro+aHU4RgK6Pmh1OEYCuj5odThGAro+aH\nU4RgK6Pmh1OEYCuj5idLpwitq6z3DCEhK4yan+ycIvRRnvhsamR3o/6HgHWMmp8snSL06bJ6\nj/AdCVlh1PxwihBsZdT8cIoQbGXU/HCKEGxl1PxwihBsZdT8cIoQbGXU/HCKEGxl1PxwihBs\nZdT8cIoQbGXU/PBbhGAro+aH3yIEWxk1Pyp/se+rijR3EhKyw6j5UQlpSrpHISRkh1HzQ0iw\nlVHzQ0iwlVHzk3FI+/h0IyQEz6j5yTikNm2K6uUTEoJn1PxkHNKU0vhbdTy1Qw4YNT8Zh1S1\n975VddcJCTlg1Pxk/mbD0uKL6q4SEnLAqPlpwbt2676uu/bCzDSbERKyw6j5UXn7Oy1CQnYY\nNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZ\nNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZ\nNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZ\nNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZ\nNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZ\nNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZ\nNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZ\nNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZ\nNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZ\nNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZ\nNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZ\nNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZ\nNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZ\nNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZNT+EBFsZ\nNT+EBFsZNT+EBFsZNT8tCalm2fx58xYsb2IrQkJ2GDU/mYdUObmLRJVN35BuO0JCdhg1PxmH\ntLKv9Bs7bdasy0f3kP6VaTYkJGSHUfOTcUjjI3Nrr1XPzpuUZkNCQnYYNT8Zh9RtXPz6qF5p\nNiQkZIdR85NxSJFr4tevLEy68+POHeuVSlUjDzE+0r5F8os6tkhxMfvbvH9RC+cnMj7T4U8h\n45B6j4xfH9En6c6tC+fXe/YvjT3Eyvkt8/DD7M/+LbAy0+FPIeOQJuVduyl27bupMkXrcAA7\nZRzS2gFSOmTsxAljDimRwes1DwmwT+Y/R9p8fXm+92OkyMA7qhUPCLBRi04R2vjhkiUVjb0n\nB4RI9s+1A0KAkAAFhAQoICRAASEBCggJUEBIgAJCAhQQEqCAkAAFhAQoICRAASEBCggJUEBI\ngAJCAhQQEqAglyENFCCHBioOcy5DOvnoxTl1NOuHe/2TFYc5lyGNzfFvSmV91ldDSKzP+goI\nifVZXwEhsT7rKyAk1md9BYTE+qyvgJBYn/UVEBLrs74CQmJ91ldASKzP+gpyGdKZZ+ZwcdZn\nfc31cxlSZWUOF2d91tdcn/+MAlBASIACQgIUEBKggJAABYQEKCAkQAEhAQoICVBASIACQgIU\nEBKggJAABYQEKCAkQAEhAQoCD2ntpN6R7uNXprkh4PUrJ5cV9hnxas7W91wo43O3/lMHt+tw\n6MKcrf/+qd0KOh37elDrO1WXtNkn7QFlJuiQNg+Q468ZF+lb2egNAa//dR8ZfsUpBW3/L0fr\ne97MDyykhuvfI7tcflHnwpdztP67pTtMvf+33QoWBLO+s3RAaUJIWvMXdEjXy+/djw/L5EZv\nCHj9CXKz+/ExOTJH67u2lPcPLKQG669pt/d3jlPR7twcrX+yPO9+/JccEsz664r3rSjyh6Q1\nf0GHVF66ybvYtUtNYzcEvP4FQ6rcjzXFvQNZPuWX+7u8pwMLqcH618oz3kUw/+unWH9/8f73\nd9r3CWb9rydXOQkhac1fwCFtzB8SvRwryxq5IeD1a22KHBTE8inX/6j4nLVBhdRw/cOKq5xN\n64JZPdX6Y+Qd9+OXbY4I6hCchJDU5i/gkD6U2O8SmybzG7kh4PVr3RR9gpeb9Yd0/yawkBqu\n33uPtw7Kk13uzdX6Szv2X7TqrSElrwVzAB5/SGrzF3BIS2RC9PJamdfIDQGvH/NC4aAtQSyf\nav175VEnsJAarl/au/vkR28qk7/maH3n33uISNkrgSwf4w9Jbf4CD2li9HKWPN7IDQGvH/VA\n0YCvg1g91fprdjjKCTKk5PWL5M/ux5XtulXnZv2lfXtd9+Tde3YI5AlJTGJISvMXcEgVMiZ6\nebk818gNAa/vqpkqh38bxOIp1z+p3acBhtRw/R3zv/cuTpRA3v9vuP7Aks/cj9/vtFNVEOtH\n+UNSm7+AQ9pcEHubc7R82sgNAa/vdjROzgvkX+OU6z8lV6xYseI9Gb0ikBf8Db/+ffKjE3yu\nBPKDpAbrr887NHr5C3k3iIGB++4AAAZVSURBVPWj/CGpzV/Qb3/vX+L9A7i1R69Gbwh4fWeS\nzAhm6ZTrT5Y6U3KyvjNRoi/zh8nynKz/hRwQvRwpiwNZ35Pw9rfW/AUd0h1ypfvxNrnKcTa+\n/VHiDTlZ/zGZFMzKqddf+qTnIRn25Ps5Wd9ZnPfTTY7zZpsfBbJ8w/X7Rj5wP67dof2mYA7A\nqQ9Jd/6CDql6sIy46qS8H7r/DLwjQxJvyMn6u8h5U6KCOUepwfpRgb1GSrH+BVJ+1S+LCxfm\naP15bXa87J5r+srsYNZ/wf3/dH4398NXyvMX+Emr6y/qHdlpgvcmWe3/I+M35GT9+qdWn+Rm\n/ajgQmq4fs2f+rftcOQbOVv/lWM7F3Qc+veAlp9Z9//uCuX54z+jABQQEqCAkAAFhAQoICRA\nASEBCggJUEBIgAJCAhQQEqCAkAAFhAQoICRAASEBCggJUEBIgAJCAhQQEqCAkAAFhAQoICRA\nASEBCggJUEBIgAJCAhQQEqCAkAAFhAQoICRAASEBCggJUEBIgAJCAhQQkm06zI9ejJIV/luT\nPk17K7KAkHJvjvenGCNdf3bjN8n3zKxIuuHhwZ2kYOcZGwnJNISUe3PkoClTLhzZXbrOT7xj\npTydeMNMGTi9eOwBchIhmYaQcm+OTPMuqu8qKU78m8hPJIX0fdFBNd5Tu+PkTUIyDCEFZLSs\nPbNL8f6vfz+px3YHLHGcQW2Wezd/VTCwLiTHeUQGuh9fP3bHSO9TP3Gc4d5TvkW+G5bJBdHX\nSO9e/1Gskfp73E+X/apH4W6zvYdZfW5ZpNOIN5wGIY2W9Rf3Lux5fY332GvdG7Z4f9g7+ciQ\nCUIKyBgZetVb97UtO2rK4ke371rl3CdXezffLn+Kh+QMkA+dxW17TL/jktIuXzmvniZTH//a\nd8P3RXtt8L/ZEL/H/XT44BlTd5Y7HeeL3h2mzJnRs+iFBiGNkcPOfvXlYXJPQkjJR4ZMEFJA\nxss57seRcoL7cZK87HzfoZ9385C23/hCulTud24dsNC9drPc7L0k8p7a+W6YKrvdsl08JN89\no2TwVsf5T2Ffxzmn4E331uWl+zYIabyMdrzva0clhJR8ZMgEIQVkvHgBXCZz3I+3yqOOc7a8\n5H73yB/t+EK6Rf4QvazauEAm14Xku6Hmpq4i3cYsdOKN1N4zSv7qfXaoLK/pNGCV5zBZ3zCk\nZ7yLkvKkkJKODBkgpICMl6Xux2nyvPvxTnnQcRbLGY5zmzzrD+kGudFx7j94e+/F0aT6kOI3\nOE71C8U7t5GRm2ONxO8ZJe/EVlm0Wuq81zAk7xicDnsmhZR0ZMgAIQVkvHg/E5rmvXlQO657\nt9/gHNprqz+kiTLXfXq3770vvHpXPCTfDZ4O8/9zhNwUbcR3zyj51LvzPJlfIeVPx6xtGFL0\n51INQko+Mmw7QgpIw3G9RR5Z1eYyxxfS1r6yemNxr/Xu1WfqQ/Lf4Okw31mXf6TXiP+eUfLv\n2Covr5by+kWbCul7QtJCSAFpOK5ri0+4MXpjfUi3yjHOJ/Jz7+ql9SH5briy29rYKUIdBnmN\n+DcdJY971w+RVU6ntl4jzhdOupCOFe/+dwlJCyEFJMW4nlJSPsi7rA1p662F7T9wNuTt7V5/\neyc5y3FmyTzHf8N9clb0B7JzZbLXiH/TUXK0e31F4R6Oc478xr36Rbej0oV0jvzTvXYxIWkh\npICkGNeFInd5l9FThC4e21u6eHceJWc9eEXHpwp6PvDdo/Lj697w3bDucOn/q7YnH5PXa3W0\nEd+mo2TYsbff8APvgdeUyen3zSiLPJsupFdln+dfu3RwKSEpIaSApBrXspJvvYvoSavSfr/p\nld5nX5zcucNPFzlXteu2qur44o6P+G/YdNM+HaWg94TVsUZ894yQygu6F/7gXu8RVp3Tq2D7\nY1530oXk3LdHcdczv+kxiJB0EFLuLI+cncFeHeY3vQ0CR0i5c2Lkgwz2mrlM/UDQcoSUIxWz\nh9X/+CiLtqyN4zS6LCKkHHksr/OMmuwv86TE8fIniwipdatcFPdlrg+mNSMkQAEhAQoICVBA\nSIACQgIUEBKggJAABYQEKCAkQAEhAQoICVBASIACQgIUEBKggJAABYQEKCAkQAEhAQoICVBA\nSIACQgIUEBKggJAABYQEKCAkQAEhAQr+H3QsIvYpqLKNAAAAAElFTkSuQmCC" - }, - "metadata": { - "image/png": { - "width": 420, - "height": 420 - } - } - } - ] - }, - { - "cell_type": "markdown", - "source": [ - "Notice there are around 2.5 times more 0's (ham) than 1's (spam)!" - ], - "metadata": { - "id": "NGDELt9byny_" - } - }, - { - "cell_type": "markdown", - "source": [ - "Now, we will remove the term \"Subject:\" as is common in every messages. It makes no sense to keep common terms like \"Subject:\" as they have no discrimination power!" - ], - "metadata": { - "id": "9-2AqQr8LPPN" - } - }, - { - "cell_type": "code", - "source": [ - "myData<-myData[,c(\"label\",\"text\")] # select two columns\n", - "myData$text<-substring(myData$text,9) # remove \"Subject:\"\n", - "head(myData, n=2)# see the first couple entries" - ], - "metadata": { - "id": "aQv2GS8zHqo8", - "colab": { - "base_uri": "https://localhost:8080/", - "height": 178 - }, - "outputId": "56f261fb-79ee-478b-e3df-6e5d6b75c5fc" - }, - "execution_count": null, - "outputs": [ - { - "output_type": "display_data", - "data": { - "text/html": [ - "\n", - "\n", - "\n", - "\t\n", - "\t\n", - "\n", - "\n", - "\t\n", - "\t\n", - "\n", - "
A data.frame: 2 × 2
labeltext
<chr><chr>
1ham enron methanol ; meter # : 988291\n", - "this is a follow up to the note i gave you on monday , 4 / 3 / 00 { preliminary\n", - "flow data provided by daren } .\n", - "please override pop ' s daily volume { presently zero } to reflect daily\n", - "activity you can obtain from gas control .\n", - "this change is needed asap for economics purposes .
2ham hpl nom for january 9 , 2001\n", - "( see attached file : hplnol 09 . xls )\n", - "- hplnol 09 . xls
\n" - ], - "text/markdown": "\nA data.frame: 2 × 2\n\n| | label <chr> | text <chr> |\n|---|---|---|\n| 1 | ham | enron methanol ; meter # : 988291\nthis is a follow up to the note i gave you on monday , 4 / 3 / 00 { preliminary\nflow data provided by daren } .\nplease override pop ' s daily volume { presently zero } to reflect daily\nactivity you can obtain from gas control .\nthis change is needed asap for economics purposes . |\n| 2 | ham | hpl nom for january 9 , 2001\n( see attached file : hplnol 09 . xls )\n- hplnol 09 . xls |\n\n", - "text/latex": "A data.frame: 2 × 2\n\\begin{tabular}{r|ll}\n & label & text\\\\\n & & \\\\\n\\hline\n\t1 & ham & enron methanol ; meter \\# : 988291\nthis is a follow up to the note i gave you on monday , 4 / 3 / 00 \\{ preliminary\nflow data provided by daren \\} .\nplease override pop ' s daily volume \\{ presently zero \\} to reflect daily\nactivity you can obtain from gas control .\nthis change is needed asap for economics purposes .\\\\\n\t2 & ham & hpl nom for january 9 , 2001\n( see attached file : hplnol 09 . xls )\n- hplnol 09 . xls \\\\\n\\end{tabular}\n", - "text/plain": [ - " label\n", - "1 ham \n", - "2 ham \n", - " text \n", - "1 enron methanol ; meter # : 988291\\nthis is a follow up to the note i gave you on monday , 4 / 3 / 00 { preliminary\\nflow data provided by daren } .\\nplease override pop ' s daily volume { presently zero } to reflect daily\\nactivity you can obtain from gas control .\\nthis change is needed asap for economics purposes .\n", - "2 hpl nom for january 9 , 2001\\n( see attached file : hplnol 09 . xls )\\n- hplnol 09 . xls " - ] - }, - "metadata": {} - } - ] - }, - { - "cell_type": "markdown", - "source": [ - "Let's check the word distributions (i.e. document terms) in each class. For\n", - "this purpose, we will use **word clouds**, where the size of the word is proportional to its frequency in the text (we used them in the menti polls!). If the word clouds are different, we can conclude that words that are common in spam are different from words that appear in ham. Hence, we can use words (features) in a text message to classify it as ham or spam." - ], - "metadata": { - "id": "6P7YZjqrL3dM" - } - }, - { - "cell_type": "code", - "source": [ - "# For spam\n", - "spamMsg<-subset(myData,label==\"spam\")\n", - "wordcloud(spamMsg$text,scale=c(.5,.5),min.freq=100) # plot if the word apperas more than 100 times in the spam messages" - ], - "metadata": { - "id": "uUpr-dBsHt6x", - "colab": { - "base_uri": "https://localhost:8080/", - "height": 508 - }, - "outputId": "e9f93ef7-5684-4ff3-a712-1ca23cf6d9b0" - }, - "execution_count": null, - "outputs": [ - { - "output_type": "stream", - "name": "stderr", - "text": [ - "Warning message in tm_map.SimpleCorpus(corpus, tm::removePunctuation):\n", - "“transformation drops documents”\n", - "Warning message in tm_map.SimpleCorpus(corpus, function(x) tm::removeWords(x, tm::stopwords())):\n", - "“transformation drops documents”\n" - ] - }, - { - "output_type": "display_data", - "data": { - "text/plain": [ - "plot without title" - ], - "image/png": "iVBORw0KGgoAAAANSUhEUgAAA0gAAANICAMAAADKOT/pAAACylBMVEUBAQEDAwMEBAQICAgM\nDAwNDQ0PDw8RERETExMUFBQVFRUWFhYXFxcYGBgZGRkaGhobGxscHBwdHR0eHh4fHx8gICAh\nISEiIiIjIyMkJCQlJSUmJiYnJycoKCgpKSkqKiorKyssLCwtLS0uLi4vLy8wMDAxMTEyMjIz\nMzM0NDQ1NTU2NjY3Nzc4ODg5OTk6Ojo7Ozs8PDw9PT0+Pj4/Pz9AQEBBQUFCQkJDQ0NERERF\nRUVGRkZHR0dISEhJSUlKSkpLS0tMTExNTU1OTk5PT09QUFBRUVFSUlJTU1NUVFRVVVVWVlZX\nV1dYWFhZWVlaWlpbW1tcXFxdXV1eXl5fX19gYGBhYWFiYmJjY2NkZGRlZWVmZmZnZ2doaGhp\naWlqampra2tsbGxtbW1ubm5vb29wcHBycnJzc3N0dHR1dXV2dnZ3d3d4eHh5eXl6enp7e3t8\nfHx+fn5/f3+BgYGCgoKDg4OEhISFhYWGhoaHh4eIiIiJiYmKioqLi4uMjIyNjY2Pj4+QkJCR\nkZGSkpKTk5OUlJSVlZWWlpaXl5eYmJiZmZmampqbm5ucnJydnZ2enp6fn5+goKChoaGioqKj\no6OkpKSlpaWmpqanp6eoqKipqamqqqqrq6usrKytra2urq6vr6+wsLCxsbGysrKzs7O0tLS1\ntbW2tra3t7e4uLi5ubm6urq7u7u8vLy+vr6/v7/AwMDBwcHCwsLDw8PExMTFxcXGxsbHx8fI\nyMjJycnKysrLy8vNzc3Ozs7Pz8/Q0NDS0tLT09PU1NTV1dXW1tbX19fY2NjZ2dna2trb29vc\n3Nzd3d3e3t7f39/g4ODh4eHi4uLj4+Pk5OTl5eXm5ubn5+fo6Ojp6enq6urr6+vs7Ozt7e3u\n7u7v7+/w8PDx8fHy8vLz8/P09PT19fX29vb39/f4+Pj5+fn6+vr7+/v8/Pz9/f3+/v7////v\ngEFZAAAACXBIWXMAABJ0AAASdAHeZh94AAAgAElEQVR4nO2di79dVX3g2xnbdOzMQEosouFN\nQiAJpoIElIeMZuQhNVEcjUIMDniAgNKKFW1lsCo+YECKiuAhBkbqTNXaSmkr4gCtrVSLEhEU\nFAqIA8nN+h9m7/Vba+3f2o9z9jn3d+8N5vsVT07OY59z89nfu/Za6/f4NQcAs+bXFvoLAPwq\ngEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGI\nBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgA\nBiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAA\nIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiAS\ngAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEY\ngEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGI\nBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgA\nBiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAA\nIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiAS\ngAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEY\ngEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGI\nBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgA\nBiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAA\nIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiAS\ngAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEY\ngEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGI\nBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgABiASgAGIBGAAIgEYgEgA\n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\nHHxr6AKRFogoUjXjyZqPzTKolBoO8w0iLRBBpOE70ownaz5WTIRmE2+HSPMNIi0sI854Alef\nTyDSwjJc97qDr3aSk+TXvWUtXIpywfMHRFpYhgc997O9dkpOkl/3liVwKcoFzx8QaWEZnu3c\nIQ9LTpJf95YlcCnKBc8fEGlh8Tunj4SOZL6di18Cl6Jc8PwBkRaW4fKZx/eZkZwkv+4tS+BS\nlAuePyDSwnLzaWccfr2TnCS/7i1L4FKUC54/IBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiA\nSAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgE\nYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAG\nIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAi\nARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKA\nAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiA\nSAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgE\nYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAG\nIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAi\nARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKA\nAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiA\nSAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgE\nYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAG\nIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAi\nARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKA\nAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiA\nSAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgE\nYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAG\nIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAi\nARiASAAGIBKAAYgEYAAiARiASAAGIBKAAYgEYAAiARiASAAGIBKAAf8fuNDBilj5sogAAAAA\nSUVORK5CYII=" - }, - "metadata": { - "image/png": { - "width": 420, - "height": 420 - } - } - } - ] - }, - { - "cell_type": "code", - "source": [ - "# For ham\n", - "hamMsg<-subset(myData,label==\"ham\")\n", - "wordcloud(hamMsg$text,scale=c(.5,.5),min.freq=100) # plot if the word apperas more than 100 times in the ham messages" - ], - "metadata": { - "id": "kPdfoQIQOJlk", - "colab": { - "base_uri": "https://localhost:8080/", - "height": 508 - }, - "outputId": "31f72d0f-ef54-47d3-91f3-9ff5d2734b6a" - }, - "execution_count": null, - "outputs": [ - { - "output_type": "stream", - "name": "stderr", - "text": [ - "Warning message in tm_map.SimpleCorpus(corpus, tm::removePunctuation):\n", - "“transformation drops documents”\n", - "Warning message in tm_map.SimpleCorpus(corpus, function(x) tm::removeWords(x, tm::stopwords())):\n", - "“transformation drops documents”\n" - ] - }, - { - "output_type": "display_data", - "data": { - "text/plain": [ - "plot without title" - ], - "image/png": "iVBORw0KGgoAAAANSUhEUgAAA0gAAANICAMAAADKOT/pAAAC4lBMVEUDAwMEBAQGBgYHBwcI\nCAgKCgoLCwsMDAwNDQ0ODg4PDw8QEBARERESEhITExMUFBQVFRUWFhYXFxcYGBgZGRkaGhob\nGxscHBwdHR0eHh4fHx8gICAhISEiIiIjIyMkJCQlJSUmJiYnJycoKCgpKSkqKiorKyssLCwt\nLS0uLi4vLy8wMDAxMTEyMjIzMzM0NDQ1NTU2NjY3Nzc4ODg5OTk6Ojo7Ozs8PDw9PT0+Pj4/\nPz9AQEBBQUFCQkJDQ0NERERFRUVGRkZHR0dISEhJSUlKSkpLS0tMTExNTU1OTk5PT09QUFBR\nUVFSUlJTU1NUVFRVVVVWVlZXV1dYWFhZWVlaWlpbW1tcXFxdXV1eXl5fX19gYGBhYWFiYmJj\nY2NkZGRlZWVmZmZnZ2doaGhpaWlqampra2tsbGxtbW1ubm5vb29wcHBxcXFycnJzc3N0dHR1\ndXV2dnZ3d3d4eHh5eXl6enp7e3t8fHx+fn5/f3+AgICBgYGCgoKDg4OEhISFhYWGhoaHh4eI\niIiJiYmKioqLi4uMjIyPj4+QkJCRkZGSkpKTk5OUlJSVlZWWlpaXl5eYmJiZmZmampqbm5uc\nnJydnZ2enp6fn5+goKChoaGioqKjo6OkpKSlpaWmpqanp6eoqKipqamqqqqrq6usrKytra2u\nrq6vr6+wsLCxsbGysrKzs7O0tLS1tbW2tra3t7e4uLi5ubm6urq7u7u8vLy+vr6/v7/AwMDB\nwcHCwsLDw8PExMTFxcXGxsbHx8fIyMjJycnKysrLy8vMzMzNzc3Ozs7Q0NDR0dHS0tLT09PU\n1NTV1dXW1tbX19fY2NjZ2dna2trb29vc3Nzd3d3e3t7f39/g4ODh4eHi4uLj4+Pk5OTl5eXm\n5ubn5+fo6Ojp6enq6urr6+vs7Ozt7e3u7u7v7+/w8PDx8fHy8vLz8/P09PT19fX29vb39/f4\n+Pj5+fn6+vr7+/v8/Pz9/f3+/v7////LHrr2AAAACXBIWXMAABJ0AAASdAHeZh94AAAgAElE\nQVR4nOy9aaBlVXUumtx330viJVxMIshBgpQ0AkUJBVS0pABp9BKeNIpVBiKFgGUePLdQoMQL\nUWwx9opgabh0G6wims6GREOe4gOeJCYSDQoBO6IICIFq5v+35hhjjvmNueZae+1Tq+TsdeYn\n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\n2dsIinPMLXlhddSZxuKSsWJiDhJXuKXfq/F0daS7w34OzJDOSgZAIa0n2nCqJiB37ivdjvP/\nS7VRnmNuyQuro2QaiwBjxcQcJK5wS7/34zNGujskGw6FtJ5ow6magNzrL3afC9oozzG35IXV\nUTqNRThstW8xB4kr3NLv/fiMke4OyYZDIc0L1kbhzUHiCrf0+xBP7nNLyEZDIc0L0kZxhrwr\n5iBxhVv6fRCSzy0hGw2FNC9IG8UZ8q6Yg8QVbun3QUg+t4RsNBTSE0DI0c8Zc+AqbRTvgA8w\nm2QzQSE9AcwkJGmjgLQ8ZpNsKiikjcEbhPb7yJFGSJA4ooc/6ici8wmFtDF4g1CIHGmEBIkj\nevijfiIyn1BIG4M3CIXIkUZIkDiihz/qJyLzCYW0MXiDUIgcCUew+t96+KN+okmkm79i6xJ5\nAqCQNgg1CIXIkSAk/W89/FE/0SQSIa1r6xKZBgppg1CDUIgcCULS/9bDH/UTJdjI2p9Ie5KW\nI67b5R5fUeNqT+sS2XgopM2MjazV9iQtR6iQxLja07pENh4KaTNjI2u1PUnLESokMa72tC6R\njYdC2szYyFptT9JyxPW73CMralztaV0iGw+FtJmxkbXanqTliK/vcN89Vo2rPa1LZOOhkDYz\nNrJW25O0HPHwWa//6PPUuNrXukQ2HAppMzN5TAvZJFBImxkKaW6gkAipAIVESAUoJEIqQCER\nUgEKiZAKUEiEVIBCIqQCFBIhFaCQCKkAhURIBSgkQipAIRFSAQqJkApQSIRUgEIipAIUEiEV\noJAIqQCFREgFKCRCKkAhEVIBComQClBIhFSAQiKkAhQSIRWgkAipAIVESAUoJEIqQCERUgEK\niZAKUEiEVIBCIqQCFBIhFaCQCKkAhURIBSgkQipAIRFSAQqJkApQSIRUgEIipAIUEiEVoJAI\nqQCFREgFKCRCKkAhEVIBComQClBIhFSAQiKkAhQSIRWgkAipAIVESAUoJEIqQCERUgEKiZAK\nUEiEVIBCIqQCFBIhFaCQCKkAhURIBSgkQipAIRFSAQqJkApQSIRUgEIipAIUEiEVoJAIqQCF\nREgFKCRCKkAhEVIBComQClBIhFSAQiKkAhQSIRWgkAipAIVESAUoJEIqQCERUgEKiZAKUEiE\nVIBCIqQCFBIhFaCQCKkAhURIBSgkQipAIRFSAQqJkApQSIRUgEIipAIUEiEVoJAIqQCFREgF\nKCRCKkAhEVIBComQClBIhFSAQiKkAhQSIRWgkAipAIVESAUoJEIqQCERUgEKiZAKUEiEVIBC\nIqQCFBIhFaCQCKkAhURIBSgkQipAIRFSAQqJkApQSIRUgEIipAIUEiEVoJAIqQCFREgFKCRC\nKkAhEVIBComQClBIhFSAQiKkAhQSIRWgkAipAIVESAUoJEIqQCERUgEKiZAKUEiEVIBCIqQC\nFBIhFaCQCKkAhURIBSgkQipAIRFSAQqJkApQSIRUgEIipAIUEiEVoJAIqQCFREgFKCRCKkAh\nEVIBComQClBIhFSAQiKkAhQSIRWgkAipAIVESAUoJEIqQCERUgEKiZAKUEiEVIBCIqQCFBIh\nFaCQCKkAhURIBSgkQipAIRFSAQqJkApQSIRUgEIipAIUEiEVoJAIqQCFREgFKCRCKkAhEVIB\nComQClBIhFSAQiKkAhQSIRWgkAipAIVESAUoJEIqQCERUgEKiZAKUEiEVIBCIqQC/w96zk8z\nTjwRRgAAAABJRU5ErkJggg==" - }, - "metadata": { - "image/png": { - "width": 420, - "height": 420 - } - } - } - ] - }, - { - "cell_type": "markdown", - "source": [ - "As we can see from the word cloud outputs, the term distributions between spam and ham differ. Therfore, we can train an ML model (NB in our case) using words as features:" - ], - "metadata": { - "id": "9SIlcCidNt2e" - } - }, - { - "cell_type": "code", - "source": [ - "# Create a document term matrix i.e. a mtable that describes the frecuency of terms\n", - "# occured in each message of our collection\n", - "myCorpus <- VCorpus(VectorSource(myData$text)) # create a corpus\n", - "myDTM <- DocumentTermMatrix(myCorpus, control = list(tolower=T,\n", - "removeNumbers=T,\n", - "removePunctuation=T,\n", - "stopwords = T,\n", - "stem=T))\n", - "myDTM" - ], - "metadata": { - "id": "USZRuCJqMLpj", - "colab": { - "base_uri": "https://localhost:8080/", - "height": 106 - }, - "outputId": "40bb65d1-17a9-402b-e389-f94b2e7a3e76" - }, - "execution_count": null, - "outputs": [ - { - "output_type": "display_data", - "data": { - "text/plain": [ - "<>\n", - "Non-/sparse entries: 309571/232824964\n", - "Sparsity : 100%\n", - "Maximal term length: 24\n", - "Weighting : term frequency (tf)" - ] - }, - "metadata": {} - } - ] - }, - { - "cell_type": "markdown", - "source": [ - "A document term matrix (DTM) is usually a sparse matrix as most of its entries are filled with zeros. Let’s use only terms which have frequency $\\geq 5$ as features in our model building. To this end we use the `findFreqTerms()` function in R. This will reduce the number of columns in our DTM matrix to $8615$, which would be a more manageable size in our model building." - ], - "metadata": { - "id": "sQesVGJRGcCZ" - } - }, - { - "cell_type": "code", - "source": [ - "freqWords <- findFreqTerms(myDTM,5)\n", - "myDTM <- myDTM[,freqWords]\n", - "myDTM" - ], - "metadata": { - "id": "nJH7OHi9GSJ9", - "colab": { - "base_uri": "https://localhost:8080/", - "height": 106 - }, - "outputId": "218f3d3c-1b11-4af2-931e-488aec21dc55" - }, - "execution_count": null, - "outputs": [ - { - "output_type": "display_data", - "data": { - "text/plain": [ - "<>\n", - "Non-/sparse entries: 256717/44291448\n", - "Sparsity : 99%\n", - "Maximal term length: 19\n", - "Weighting : term frequency (tf)" - ] - }, - "metadata": {} - } - ] - }, - { - "cell_type": "markdown", - "source": [ - "Now, we will split the dataset into train and test sets. We’re going to use an 80/20 partitioning for the training and testing by means of the `createDataPartition()` function from the caret package." - ], - "metadata": { - "id": "N5NoO_3CG2Jy" - } - }, - { - "cell_type": "code", - "source": [ - "tr_index <- createDataPartition(myData$label, p=0.80, list=FALSE) # List of 80% of the rows\n", - "trainSet <- myData[tr_index,] # select 80% of the data for the trainSet\n", - "testSet <- myData[-tr_index,] # Select the remaining 20% of data for testSet" - ], - "metadata": { - "id": "HOckz37QGxLC" - }, - "execution_count": null, - "outputs": [] - }, - { - "cell_type": "markdown", - "source": [ - "Since we are creating our NB model with the DTM entries, we should obtain the\n", - "corresponding DTM entries for the data in `trainSet` and `testSet`." - ], - "metadata": { - "id": "dr4fjErBIhZm" - } - }, - { - "cell_type": "code", - "source": [ - "myDTMTrain <- myDTM[tr_index,]\n", - "myDTMTest <- myDTM[-tr_index,]" - ], - "metadata": { - "id": "h8nayc0vGyEp" - }, - "execution_count": null, - "outputs": [] - }, - { - "cell_type": "markdown", - "source": [ - "To represent the presence or absence of a certain word (feature) in a\n", - "particular message, we code our DTM as follows:" - ], - "metadata": { - "id": "L-F8DYaoIpdl" - } - }, - { - "cell_type": "code", - "source": [ - "# Create a function called convert_counts to have a true/false table\n", - "convert_counts <- function(x) {\n", - "x <- ifelse(x > 0, \"T\", \"F\")\n", - "}\n", - "# Apply the function\n", - "myDTMTrainNew <- apply(myDTMTrain, MARGIN = 2,convert_counts)\n", - "myDTMTestNew <- apply(myDTMTest, MARGIN = 2, convert_counts)" - ], - "metadata": { - "id": "q5Ma-4T-IpM5" - }, - "execution_count": null, - "outputs": [] - }, - { - "cell_type": "markdown", - "source": [ - "If you print the output, it is a table with T or F depending on the precense/absence of a term" - ], - "metadata": { - "id": "snFbwOCAJO-H" - } - }, - { - "cell_type": "code", - "source": [ - "myDTMTestNew" - ], - "metadata": { - "id": "4K7iJFXGInXz", - "colab": { - "base_uri": "https://localhost:8080/", - "height": 1000 - }, - "outputId": "1089bfec-6392-4af9-ae8c-30ffc28bcd15" - }, - "execution_count": null, - "outputs": [ - { - "output_type": "display_data", - "data": { - "text/html": [ - "\n", - "\n", - "\n", - "\t\n", - "\n", - "\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\t\n", - "\n", - "
A matrix: 1033 × 8615 of type chr
aaronabaabachaabacusabacustechabazisabbotabbottabcabdominalzinczipperzismanzivleyzoloftzonezonedubaizoneszwalletzyban
1FFFFFFFFFFFFFFFFFFFF
7FFFFFFFFFFFFFFFFFFFF
8FFFFFFFFFFFFFFFFFFFF
18FFFFFFFFFFFFFFFFFFFF
21FFFFFFFFFFFFFFFFFFFF
22FFFFFFFFFFFFFFFFFFFF
26FFFFFFFFFFFFFFFFFFFF
30FFFFFFFFFFFFFFFFFFFF
35FFFFFFFFFFFFFFFFFFFF
39FFFFFFFFFFFFFFFFFFFF
41FFFFFFFFFFFFFFFFFFFF
55FFFFFFFFFFFFFFFFFFFF
57FFFFFFFFFFFFFFFFFFFF
58FFFFFFFFFFFFFFFFFFFF
69FFFFFFFFFFFFFFFFFFFF
78FFFFFFFFFFFFFFFFFFFF
79FFFFFFFFFFFFFFFFFFFF
80FFFFFFFFFFFFFFFFFFFF
83FFFFFFFFFFFFFFFFFFFF
85FFFFFFFFFFFFFFFFFFFF
86FFFFFFFFFFFFFFFTTFFF
97FFFFFFFFFFFFFFFFFFFF
102FFFFFFFFFFFFFFFFFFFF
105FFFFFFFFFFFFFFFFFFFF
108FFFFFFFFFFFFFFFFFFFF
112FFFFFFFFFFFFFFFFFFFF
117FFFFFFFFFFFFFFFFFFFF
120FFFFFFFFFFFFFFFFFFFF
121FFFFFFFFFFFFFFFFFFFF
131FFFFFFFFFFFFFFFFFFFF
5014FFFFFFFFFFFFFFFFFFFF
5017FFFFFFFFFFFFFFFFFFFF
5018FFFFFFFFFFFFFFFFFFFF
5021FFFFFFFFFFFFFFFFFFFF
5023FFFFFFFFFFFFFFFFFFFF
5027FFFFFFFFFFFFFFFFFFFF
5045FFFFFFFFFFFFFFFFFFFF
5048FFFFFFFFFFFFFFFFFFFF
5052FFFFFFFFFFFFFFFFFFFF
5071FFFFFFFFFFFFFFFFFFFF
5079FFFFFFFFFFFFFFFFFFFF
5089FFFFFFFFFFFFFFFFFFFF
5093FFFFFFFFFFFFFFFFFFFF
5097FFFFFFFFFFFFFFFFFFFF
5100FFFFFFFFFFFFFFFFFFFF
5103FFFFFFFFFFFFFFFFFFFF
5108FFFFFFFFFFFFFFFFFFFF
5109FFFFFFFFFFFFFFFFFFFF
5117FFFFFFFFFFFFFFFFFFFF
5119FFFFFFFFFFFFFFFFFFFF
5123FFFFFFFFFFFFFFFFFFFF
5124FFFFFFFFFFFFFFFFFFFF
5126FFFFFFFFFFFFFFFFFFFF
5134FFFFFFFFFFFFFFFFFFFF
5143FFFFFFFFFFFFFFFFFFFF
5149FFFFFFFFFFFFFFFFFFFF
5151FFFFFFFFFFFFFFFFFFFF
5153FFFFFFFFFFFFFFFFFFFF
5165FFFFFFFFFFFFFFFFFFFF
5167FFFFFFFFFFFFFFFFFFFF
\n" - ], - "text/markdown": "\nA matrix: 1033 × 8615 of type chr\n\n| | aaron | aba | abacha | abacus | abacustech | abazis | abbot | abbott | abc | abdominal | ⋯ | zinc | zipper | zisman | zivley | zoloft | zone | zonedubai | zones | zwallet | zyban |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n| 1 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 7 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 8 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 18 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 21 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 22 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 26 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 30 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 35 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 39 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 41 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 55 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 57 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 58 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 69 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 78 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 79 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 80 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 83 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 85 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 86 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | T | T | F | F | F |\n| 97 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 102 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 105 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 108 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 112 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 117 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 120 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 121 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 131 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋱ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ |\n| 5014 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5017 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5018 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5021 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5023 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5027 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5045 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5048 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5052 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5071 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5079 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5089 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5093 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5097 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5100 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5103 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5108 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5109 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5117 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5119 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5123 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5124 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5126 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5134 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5143 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5149 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5151 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5153 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5165 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n| 5167 | F | F | F | F | F | F | F | F | F | F | ⋯ | F | F | F | F | F | F | F | F | F | F |\n\n", - "text/latex": "A matrix: 1033 × 8615 of type chr\n\\begin{tabular}{r|lllllllllllllllllllll}\n & aaron & aba & abacha & abacus & abacustech & abazis & abbot & abbott & abc & abdominal & ⋯ & zinc & zipper & zisman & zivley & zoloft & zone & zonedubai & zones & zwallet & zyban\\\\\n\\hline\n\t1 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t7 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t8 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t18 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t21 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t22 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t26 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t30 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t35 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t39 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t41 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t55 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t57 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t58 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t69 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t78 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t79 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t80 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t83 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t85 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t86 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & T & T & F & F & F\\\\\n\t97 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t102 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t105 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t108 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t112 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t117 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t120 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t121 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t131 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t⋮ & ⋮ & ⋮ & ⋮ & ⋮ & ⋮ & ⋮ & ⋮ & ⋮ & ⋮ & ⋮ & ⋱ & ⋮ & ⋮ & ⋮ & ⋮ & ⋮ & ⋮ & ⋮ & ⋮ & ⋮ & ⋮\\\\\n\t5014 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5017 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5018 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5021 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5023 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5027 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5045 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5048 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5052 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5071 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5079 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5089 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5093 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5097 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5100 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5103 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5108 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5109 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5117 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5119 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5123 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5124 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5126 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5134 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5143 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5149 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5151 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5153 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5165 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\t5167 & F & F & F & F & F & F & F & F & F & F & ⋯ & F & F & F & F & F & F & F & F & F & F\\\\\n\\end{tabular}\n", - "text/plain": [ - " aaron aba abacha abacus abacustech abazis abbot abbott abc abdominal ⋯\n", - "1 F F F F F F F F F F ⋯\n", - "7 F F F F F F F F F F ⋯\n", - "8 F F F F F F F F F F ⋯\n", - "18 F F F F F F F F F F ⋯\n", - "21 F F F F F F F F F F ⋯\n", - "22 F F F F F F F F F F ⋯\n", - "26 F F F F F F F F F F ⋯\n", - "30 F F F F F F F F F F ⋯\n", - "35 F F F F F F F F F F ⋯\n", - "39 F F F F F F F F F F ⋯\n", - "41 F F F F F F F F F F ⋯\n", - "55 F F F F F F F F F F ⋯\n", - "57 F F F F F F F F F F ⋯\n", - "58 F F F F F F F F F F ⋯\n", - "69 F F F F F F F F F F ⋯\n", - "78 F F F F F F F F F F ⋯\n", - "79 F F F F F F F F F F ⋯\n", - "80 F F F F F F F F F F ⋯\n", - "83 F F F F F F F F F F ⋯\n", - "85 F F F F F F F F F F ⋯\n", - "86 F F F F F F F F F F ⋯\n", - "97 F F F F F F F F F F ⋯\n", - "102 F F F F F F F F F F ⋯\n", - "105 F F F F F F F F F F ⋯\n", - "108 F F F F F F F F F F ⋯\n", - "112 F F F F F F F F F F ⋯\n", - "117 F F F F F F F F F F ⋯\n", - "120 F F F F F F F F F F ⋯\n", - "121 F F F F F F F F F F ⋯\n", - "131 F F F F F F F F F F ⋯\n", - "⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋱\n", - "5014 F F F F F F F F F F ⋯\n", - "5017 F F F F F F F F F F ⋯\n", - "5018 F F F F F F F F F F ⋯\n", - "5021 F F F F F F F F F F ⋯\n", - "5023 F F F F F F F F F F ⋯\n", - "5027 F F F F F F F F F F ⋯\n", - "5045 F F F F F F F F F F ⋯\n", - "5048 F F F F F F F F F F ⋯\n", - "5052 F F F F F F F F F F ⋯\n", - "5071 F F F F F F F F F F ⋯\n", - "5079 F F F F F F F F F F ⋯\n", - "5089 F F F F F F F F F F ⋯\n", - "5093 F F F F F F F F F F ⋯\n", - "5097 F F F F F F F F F F ⋯\n", - "5100 F F F F F F F F F F ⋯\n", - "5103 F F F F F F F F F F ⋯\n", - "5108 F F F F F F F F F F ⋯\n", - "5109 F F F F F F F F F F ⋯\n", - "5117 F F F F F F F F F F ⋯\n", - "5119 F F F F F F F F F F ⋯\n", - "5123 F F F F F F F F F F ⋯\n", - "5124 F F F F F F F F F F ⋯\n", - "5126 F F F F F F F F F F ⋯\n", - "5134 F F F F F F F F F F ⋯\n", - "5143 F F F F F F F F F F ⋯\n", - "5149 F F F F F F F F F F ⋯\n", - "5151 F F F F F F F F F F ⋯\n", - "5153 F F F F F F F F F F ⋯\n", - "5165 F F F F F F F F F F ⋯\n", - "5167 F F F F F F F F F F ⋯\n", - " zinc zipper zisman zivley zoloft zone zonedubai zones zwallet zyban\n", - "1 F F F F F F F F F F \n", - "7 F F F F F F F F F F \n", - "8 F F F F F F F F F F \n", - "18 F F F F F F F F F F \n", - "21 F F F F F F F F F F \n", - "22 F F F F F F F F F F \n", - "26 F F F F F F F F F F \n", - "30 F F F F F F F F F F \n", - "35 F F F F F F F F F F \n", - "39 F F F F F F F F F F \n", - "41 F F F F F F F F F F \n", - "55 F F F F F F F F F F \n", - "57 F F F F F F F F F F \n", - "58 F F F F F F F F F F \n", - "69 F F F F F F F F F F \n", - "78 F F F F F F F F F F \n", - "79 F F F F F F F F F F \n", - "80 F F F F F F F F F F \n", - "83 F F F F F F F F F F \n", - "85 F F F F F F F F F F \n", - "86 F F F F F T T F F F \n", - "97 F F F F F F F F F F \n", - "102 F F F F F F F F F F \n", - "105 F F F F F F F F F F \n", - "108 F F F F F F F F F F \n", - "112 F F F F F F F F F F \n", - "117 F F F F F F F F F F \n", - "120 F F F F F F F F F F \n", - "121 F F F F F F F F F F \n", - "131 F F F F F F F F F F \n", - "⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ \n", - "5014 F F F F F F F F F F \n", - "5017 F F F F F F F F F F \n", - "5018 F F F F F F F F F F \n", - "5021 F F F F F F F F F F \n", - "5023 F F F F F F F F F F \n", - "5027 F F F F F F F F F F \n", - "5045 F F F F F F F F F F \n", - "5048 F F F F F F F F F F \n", - "5052 F F F F F F F F F F \n", - "5071 F F F F F F F F F F \n", - "5079 F F F F F F F F F F \n", - "5089 F F F F F F F F F F \n", - "5093 F F F F F F F F F F \n", - "5097 F F F F F F F F F F \n", - "5100 F F F F F F F F F F \n", - "5103 F F F F F F F F F F \n", - "5108 F F F F F F F F F F \n", - "5109 F F F F F F F F F F \n", - "5117 F F F F F F F F F F \n", - "5119 F F F F F F F F F F \n", - "5123 F F F F F F F F F F \n", - "5124 F F F F F F F F F F \n", - "5126 F F F F F F F F F F \n", - "5134 F F F F F F F F F F \n", - "5143 F F F F F F F F F F \n", - "5149 F F F F F F F F F F \n", - "5151 F F F F F F F F F F \n", - "5153 F F F F F F F F F F \n", - "5165 F F F F F F F F F F \n", - "5167 F F F F F F F F F F " - ] - }, - "metadata": {} - } - ] - }, - { - "cell_type": "markdown", - "source": [ - "Now we build the model. Remember, this only takes one line of code!" - ], - "metadata": { - "id": "W30jTm8-JVvh" - } - }, - { - "cell_type": "code", - "source": [ - "NBbasedSpamFilter <- naiveBayes(myDTMTrainNew, trainSet$label) # train the model" - ], - "metadata": { - "id": "2Q_LWBS5JZbp" - }, - "execution_count": null, - "outputs": [] - }, - { - "cell_type": "markdown", - "source": [ - "This is how the model looks like:" - ], - "metadata": { - "id": "wiOQfEoULxvw" - } - }, - { - "cell_type": "code", - "source": [ - "NBbasedSpamFilter" - ], - "metadata": { - "id": "vLSIC9ZvK3At", - "colab": { - "base_uri": "https://localhost:8080/", - "height": 1000 - }, - "outputId": "9813fc0d-eab7-4d59-b63b-9b8c3878f23c" - }, - "execution_count": null, - "outputs": [ - { - "output_type": "display_data", - "data": { - "text/plain": [ - "\n", - "Naive Bayes Classifier for Discrete Predictors\n", - "\n", - "Call:\n", - "naiveBayes.default(x = myDTMTrainNew, y = trainSet$label)\n", - "\n", - "A-priori probabilities:\n", - "trainSet$label\n", - " ham spam \n", - "0.7100048 0.2899952 \n", - "\n", - "Conditional probabilities:\n", - " aaron\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " aba\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " abacha\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " abacus\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " abacustech\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " abazis\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " abbot\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " abbott\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " abc\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " abdominal\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " abdul\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " abdv\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " abel\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " abhorred\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " abidjan\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " abiiity\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " ability\n", - "trainSet$label F T\n", - " ham 0.99012934 0.00987066\n", - " spam 0.97750000 0.02250000\n", - "\n", - " ablaze\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " able\n", - "trainSet$label F T\n", - " ham 0.95439074 0.04560926\n", - " spam 0.96916667 0.03083333\n", - "\n", - " aboard\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " abroad\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " absence\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.998333333 0.001666667\n", - "\n", - " absolute\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " absolutely\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.98833333 0.01166667\n", - "\n", - " abuse\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " abzt\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " accelerated\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " accent\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " accept\n", - "trainSet$label F T\n", - " ham 0.99285228 0.00714772\n", - " spam 0.98666667 0.01333333\n", - "\n", - " acceptance\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.980000000 0.020000000\n", - "\n", - " accepted\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.992500000 0.007500000\n", - "\n", - " accepting\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " access\n", - "trainSet$label F T\n", - " ham 0.96834581 0.03165419\n", - " spam 0.97166667 0.02833333\n", - "\n", - " accessed\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " accessible\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " accessing\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.998333333 0.001666667\n", - "\n", - " accessories\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " accessory\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " accommodate\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.998333333 0.001666667\n", - "\n", - " accomodate\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " accomplish\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.997500000 0.002500000\n", - "\n", - " accomplished\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.998333333 0.001666667\n", - "\n", - " accomplishments\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " accordance\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9908333333 0.0091666667\n", - "\n", - " according\n", - "trainSet$label F T\n", - " ham 0.98536419 0.01463581\n", - " spam 0.99250000 0.00750000\n", - "\n", - " accordingly\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.997500000 0.002500000\n", - "\n", - " account\n", - "trainSet$label F T\n", - " ham 0.98230088 0.01769912\n", - " spam 0.94500000 0.05500000\n", - "\n", - " accountant\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.996666667 0.003333333\n", - "\n", - " accounting\n", - "trainSet$label F T\n", - " ham 0.97277059 0.02722941\n", - " spam 0.98416667 0.01583333\n", - "\n", - " accounts\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.985833333 0.014166667\n", - "\n", - " accrual\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " accrued\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " acctg\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " accumulated\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " accumulation\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " accuracy\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.977500000 0.022500000\n", - "\n", - " accurate\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.993333333 0.006666667\n", - "\n", - " accurately\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " acf\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " ache\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " acheive\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " achieve\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.987500000 0.012500000\n", - "\n", - " achievements\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " achieving\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " achromatic\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " acid\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " acidulous\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " acknowledge\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " acock\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " acquire\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.986666667 0.013333333\n", - "\n", - " acquired\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.993333333 0.006666667\n", - "\n", - " acquires\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " acquiring\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " acquisition\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.988333333 0.011666667\n", - "\n", - " acquisitions\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " acquisitive\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " acres\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " acrobat\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9883333333 0.0116666667\n", - "\n", - " across\n", - "trainSet$label F T\n", - " ham 0.98910824 0.01089176\n", - " spam 0.99250000 0.00750000\n", - "\n", - " act\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.943333333 0.056666667\n", - "\n", - " acting\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " action\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 0.953333333 0.046666667\n", - "\n", - " actions\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.976666667 0.023333333\n", - "\n", - " actipatch\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " activate\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " activated\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " active\n", - "trainSet$label F T\n", - " ham 0.99012934 0.00987066\n", - " spam 0.98166667 0.01833333\n", - "\n", - " actively\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " activities\n", - "trainSet$label F T\n", - " ham 0.988427502 0.011572498\n", - " spam 0.998333333 0.001666667\n", - "\n", - " activity\n", - "trainSet$label F T\n", - " ham 0.96664398 0.03335602\n", - " spam 0.98750000 0.01250000\n", - "\n", - " acton\n", - "trainSet$label F T\n", - " ham 0.9734513274 0.0265486726\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " acts\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.976666667 0.023333333\n", - "\n", - " actua\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " actual\n", - "trainSet$label F T\n", - " ham 0.96426140 0.03573860\n", - " spam 0.96916667 0.03083333\n", - "\n", - " actualized\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 1.000000000 0.000000000\n", - "\n", - " actually\n", - "trainSet$label F T\n", - " ham 0.991490810 0.008509190\n", - " spam 0.990833333 0.009166667\n", - "\n", - " actuals\n", - "trainSet$label F T\n", - " ham 0.92239619 0.07760381\n", - " spam 1.00000000 0.00000000\n", - "\n", - " acy\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " acyclovir\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " adam\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99500000 0.00500000\n", - "\n", - " adams\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.995000000 0.005000000\n", - "\n", - " adapter\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " add\n", - "trainSet$label F T\n", - " ham 0.96800545 0.03199455\n", - " spam 0.96750000 0.03250000\n", - "\n", - " added\n", - "trainSet$label F T\n", - " ham 0.97583390 0.02416610\n", - " spam 0.98833333 0.01166667\n", - "\n", - " adding\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.996666667 0.003333333\n", - "\n", - " addition\n", - "trainSet$label F T\n", - " ham 0.97174949 0.02825051\n", - " spam 0.99000000 0.01000000\n", - "\n", - " additiona\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.990833333 0.009166667\n", - "\n", - " additional\n", - "trainSet$label F T\n", - " ham 0.95677332 0.04322668\n", - " spam 0.96416667 0.03583333\n", - "\n", - " additionally\n", - "trainSet$label F T\n", - " ham 0.976514636 0.023485364\n", - " spam 0.995833333 0.004166667\n", - "\n", - " additions\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " address\n", - "trainSet$label F T\n", - " ham 0.97140912 0.02859088\n", - " spam 0.92833333 0.07166667\n", - "\n", - " addressed\n", - "trainSet$label F T\n", - " ham 0.991490810 0.008509190\n", - " spam 0.996666667 0.003333333\n", - "\n", - " addressee\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " addresses\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.991666667 0.008333333\n", - "\n", - " adds\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " adequate\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " adios\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " adipex\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " adipren\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " adjust\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.998333333 0.001666667\n", - "\n", - " adjustable\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " adjusted\n", - "trainSet$label F T\n", - " ham 0.98978897 0.01021103\n", - " spam 1.00000000 0.00000000\n", - "\n", - " adjustment\n", - "trainSet$label F T\n", - " ham 0.99285228 0.00714772\n", - " spam 1.00000000 0.00000000\n", - "\n", - " adjustments\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 1.000000000 0.000000000\n", - "\n", - " admin\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 1.000000000 0.000000000\n", - "\n", - " administration\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.995833333 0.004166667\n", - "\n", - " administrative\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.995833333 0.004166667\n", - "\n", - " administrator\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " administrators\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " admiral\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " admiration\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " adobbe\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " adobe\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9658333333 0.0341666667\n", - "\n", - " adolph\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " adonis\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " adopted\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " adoption\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " ads\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " adsero\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " adsl\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " adult\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9866666667 0.0133333333\n", - "\n", - " adv\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " advance\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.995833333 0.004166667\n", - "\n", - " advanced\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9816666667 0.0183333333\n", - "\n", - " advantage\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.978333333 0.021666667\n", - "\n", - " advantages\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " adventure\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " advertisement\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9850000000 0.0150000000\n", - "\n", - " advertisements\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " advertising\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9875000000 0.0125000000\n", - "\n", - " advice\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.958333333 0.041666667\n", - "\n", - " advise\n", - "trainSet$label F T\n", - " ham 0.963580667 0.036419333\n", - " spam 0.990833333 0.009166667\n", - "\n", - " advised\n", - "trainSet$label F T\n", - " ham 0.9894486 0.0105514\n", - " spam 0.9850000 0.0150000\n", - "\n", - " advises\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9783333333 0.0216666667\n", - "\n", - " advisor\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.974166667 0.025833333\n", - "\n", - " advisors\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " advisory\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " adware\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " aeor\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.97416667 0.02583333\n", - "\n", - " aep\n", - "trainSet$label F T\n", - " ham 0.98774677 0.01225323\n", - " spam 1.00000000 0.00000000\n", - "\n", - " aepin\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 1.000000000 0.000000000\n", - "\n", - " aerofoam\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " affairs\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " affect\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.995000000 0.005000000\n", - "\n", - " affected\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.995833333 0.004166667\n", - "\n", - " affecting\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 1.000000000 0.000000000\n", - "\n", - " affects\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " affiiiate\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " affiliate\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.980000000 0.020000000\n", - "\n", - " affiliated\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9866666667 0.0133333333\n", - "\n", - " affiliates\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.997500000 0.002500000\n", - "\n", - " afford\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99250000 0.00750000\n", - "\n", - " affordable\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9808333333 0.0191666667\n", - "\n", - " afloat\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " aforementioned\n", - "trainSet$label F T\n", - " ham 0.9976174268 0.0023825732\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " afraid\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.995833333 0.004166667\n", - "\n", - " africa\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9875000000 0.0125000000\n", - "\n", - " aftermath\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " afternoon\n", - "trainSet$label F T\n", - " ham 0.972770592 0.027229408\n", - " spam 0.998333333 0.001666667\n", - "\n", - " agate\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " age\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.975833333 0.024166667\n", - "\n", - " aged\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " agencies\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " agency\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.995000000 0.005000000\n", - "\n", - " agenda\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.997500000 0.002500000\n", - "\n", - " agent\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.990000000 0.010000000\n", - "\n", - " agents\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " ages\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " aggie\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " aggies\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " aggragate\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " aggregate\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " aggressive\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9841666667 0.0158333333\n", - "\n", - " aging\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " agmt\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ago\n", - "trainSet$label F T\n", - " ham 0.990810075 0.009189925\n", - " spam 0.980833333 0.019166667\n", - "\n", - " agra\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " agree\n", - "trainSet$label F T\n", - " ham 0.9642614 0.0357386\n", - " spam 0.9900000 0.0100000\n", - "\n", - " agreed\n", - "trainSet$label F T\n", - " ham 0.988087134 0.011912866\n", - " spam 0.990833333 0.009166667\n", - "\n", - " agreement\n", - "trainSet$label F T\n", - " ham 0.94486045 0.05513955\n", - " spam 0.97666667 0.02333333\n", - "\n", - " agreements\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.997500000 0.002500000\n", - "\n", - " agrees\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " agricultural\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " agriculture\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " agua\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 1.000000000 0.000000000\n", - "\n", - " aguayo\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ahead\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 0.995000000 0.005000000\n", - "\n", - " aid\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9916666667 0.0083333333\n", - "\n", - " aids\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " ail\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9875 0.0125\n", - "\n", - " aim\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.995000000 0.005000000\n", - "\n", - " aimee\n", - "trainSet$label F T\n", - " ham 0.96732471 0.03267529\n", - " spam 1.00000000 0.00000000\n", - "\n", - " aimemail\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ain\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " air\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.986666667 0.013333333\n", - "\n", - " aiready\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " airline\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " airlines\n", - "trainSet$label F T\n", - " ham 0.9972770592 0.0027229408\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " airmail\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " airmass\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " airpanel\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " airplane\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " airport\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " aiso\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " aiways\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " ajax\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " ajello\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " aka\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " akin\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " alabama\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " alamo\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " alan\n", - "trainSet$label F T\n", - " ham 0.9972770592 0.0027229408\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " alarm\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " alaska\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " albert\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " alberta\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " albrecht\n", - "trainSet$label F T\n", - " ham 0.9942137509 0.0057862491\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " alcatel\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " alcoa\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " alcohol\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9825 0.0175\n", - "\n", - " aldermen\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " alert\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.979166667 0.020833333\n", - "\n", - " alex\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " alexander\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " alfonso\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ali\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.966666667 0.033333333\n", - "\n", - " alia\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " alias\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " align\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.987500000 0.012500000\n", - "\n", - " alike\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " aliquot\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " alisave\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " alium\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " alive\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.993333333 0.006666667\n", - "\n", - " alka\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " allan\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " alland\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 1.000000000 0.000000000\n", - "\n", - " allen\n", - "trainSet$label F T\n", - " ham 0.968005446 0.031994554\n", - " spam 0.995833333 0.004166667\n", - "\n", - " allergy\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9900000000 0.0100000000\n", - "\n", - " alles\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " alliance\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " allison\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " alliterate\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " allixon\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " allocatable\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " allocate\n", - "trainSet$label F T\n", - " ham 0.986044929 0.013955071\n", - " spam 0.998333333 0.001666667\n", - "\n", - " allocated\n", - "trainSet$label F T\n", - " ham 0.96562287 0.03437713\n", - " spam 1.00000000 0.00000000\n", - "\n", - " allocates\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " allocating\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 1.000000000 0.000000000\n", - "\n", - " allocation\n", - "trainSet$label F T\n", - " ham 0.9768550034 0.0231449966\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " allocations\n", - "trainSet$label F T\n", - " ham 0.98978897 0.01021103\n", - " spam 1.00000000 0.00000000\n", - "\n", - " allotted\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " allow\n", - "trainSet$label F T\n", - " ham 0.98264125 0.01735875\n", - " spam 0.98333333 0.01666667\n", - "\n", - " allowed\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.997500000 0.002500000\n", - "\n", - " allowing\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.998333333 0.001666667\n", - "\n", - " allows\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.991666667 0.008333333\n", - "\n", - " ally\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " almagest\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " almaguer\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " almost\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.982500000 0.017500000\n", - "\n", - " alone\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.990833333 0.009166667\n", - "\n", - " along\n", - "trainSet$label F T\n", - " ham 0.98910824 0.01089176\n", - " spam 0.99000000 0.01000000\n", - "\n", - " alot\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " aloud\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " alpha\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " alpine\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " already\n", - "trainSet$label F T\n", - " ham 0.96800545 0.03199455\n", - " spam 0.97333333 0.02666667\n", - "\n", - " also\n", - "trainSet$label F T\n", - " ham 0.8846154 0.1153846\n", - " spam 0.8900000 0.1100000\n", - "\n", - " alt\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.991666667 0.008333333\n", - "\n", - " alternate\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " alternative\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.986666667 0.013333333\n", - "\n", - " alternatives\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " althaus\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " although\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.990833333 0.009166667\n", - "\n", - " altra\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " alumni\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " alvin\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.998333333 0.001666667\n", - "\n", - " always\n", - "trainSet$label F T\n", - " ham 0.98502383 0.01497617\n", - " spam 0.94500000 0.05500000\n", - "\n", - " alysia\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " amanda\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " amateur\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " amazing\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.985000000 0.015000000\n", - "\n", - " amazon\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " ambien\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.985 0.015\n", - "\n", - " ambient\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " amblen\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " ambulate\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " amelia\n", - "trainSet$label F T\n", - " ham 0.9945541184 0.0054458816\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " amen\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " amend\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " amende\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " amended\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.996666667 0.003333333\n", - "\n", - " amendment\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " amerada\n", - "trainSet$label F T\n", - " ham 0.9959155888 0.0040844112\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " america\n", - "trainSet$label F T\n", - " ham 0.93362832 0.06637168\n", - " spam 0.96833333 0.03166667\n", - "\n", - " american\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.984166667 0.015833333\n", - "\n", - " americans\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " americas\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.998333333 0.001666667\n", - "\n", - " amherst\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " ami\n", - "trainSet$label F T\n", - " ham 0.94383935 0.05616065\n", - " spam 0.99750000 0.00250000\n", - "\n", - " amoco\n", - "trainSet$label F T\n", - " ham 0.9976174268 0.0023825732\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " among\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.983333333 0.016666667\n", - "\n", - " amorous\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " amount\n", - "trainSet$label F T\n", - " ham 0.97447243 0.02552757\n", - " spam 0.98750000 0.01250000\n", - "\n", - " amounts\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 1.000000000 0.000000000\n", - "\n", - " amp\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " amsterdam\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " amt\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " amy\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.997500000 0.002500000\n", - "\n", - " ana\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " anadarko\n", - "trainSet$label F T\n", - " ham 0.9972770592 0.0027229408\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " anal\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " analysis\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 0.995000000 0.005000000\n", - "\n", - " analyst\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.996666667 0.003333333\n", - "\n", - " analysts\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.996666667 0.003333333\n", - "\n", - " analyze\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " anax\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " anbsp\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " anchorite\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " ancient\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " anderson\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.995000000 0.005000000\n", - "\n", - " andrea\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " andrew\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.996666667 0.003333333\n", - "\n", - " andrews\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " andy\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.997500000 0.002500000\n", - "\n", - " angela\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.998333333 0.001666667\n", - "\n", - " angeles\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.991666667 0.008333333\n", - "\n", - " angelina\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " anger\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " angie\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.997500000 0.002500000\n", - "\n", - " anglo\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " aniline\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " animal\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " aninherent\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " aniseikonic\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " anita\n", - "trainSet$label F T\n", - " ham 0.98230088 0.01769912\n", - " spam 1.00000000 0.00000000\n", - "\n", - " ann\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.997500000 0.002500000\n", - "\n", - " anna\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " annals\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " anne\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.994166667 0.005833333\n", - "\n", - " annette\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " anniversary\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " announce\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.993333333 0.006666667\n", - "\n", - " announced\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.984166667 0.015833333\n", - "\n", - " announcement\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.988333333 0.011666667\n", - "\n", - " announcements\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995000000 0.005000000\n", - "\n", - " announces\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9850000000 0.0150000000\n", - "\n", - " annual\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.987500000 0.012500000\n", - "\n", - " annually\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9916666667 0.0083333333\n", - "\n", - " anonymous\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " another\n", - "trainSet$label F T\n", - " ham 0.96324030 0.03675970\n", - " spam 0.97583333 0.02416667\n", - "\n", - " anp\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " answer\n", - "trainSet$label F T\n", - " ham 0.98264125 0.01735875\n", - " spam 0.98666667 0.01333333\n", - "\n", - " answered\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.997500000 0.002500000\n", - "\n", - " answers\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.996666667 0.003333333\n", - "\n", - " anterior\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " anthony\n", - "trainSet$label F T\n", - " ham 0.9972770592 0.0027229408\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " anti\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9791666667 0.0208333333\n", - "\n", - " anticipate\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.995833333 0.004166667\n", - "\n", - " anticipated\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.973333333 0.026666667\n", - "\n", - " anticipates\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.97583333 0.02416667\n", - "\n", - " antivirus\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9908333333 0.0091666667\n", - "\n", - " antler\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " antoine\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " antoinette\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " antonio\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " anwar\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " anxiety\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9850000000 0.0150000000\n", - "\n", - " anxious\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " anybody\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " anymore\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.994166667 0.005833333\n", - "\n", - " anyone\n", - "trainSet$label F T\n", - " ham 0.97038802 0.02961198\n", - " spam 0.98750000 0.01250000\n", - "\n", - " anything\n", - "trainSet$label F T\n", - " ham 0.95915589 0.04084411\n", - " spam 0.98500000 0.01500000\n", - "\n", - " anytime\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.989166667 0.010833333\n", - "\n", - " anyway\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.996666667 0.003333333\n", - "\n", - " anywhere\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.986666667 0.013333333\n", - "\n", - " aoa\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " aoffa\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " aol\n", - "trainSet$label F T\n", - " ham 0.987746767 0.012253233\n", - " spam 0.996666667 0.003333333\n", - "\n", - " aopen\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.97166667 0.02833333\n", - "\n", - " apace\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " apache\n", - "trainSet$label F T\n", - " ham 0.98672566 0.01327434\n", - " spam 0.99750000 0.00250000\n", - "\n", - " apap\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " apapl\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " apart\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.993333333 0.006666667\n", - "\n", - " apc\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.97166667 0.02833333\n", - "\n", - " apologies\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " apologize\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.997500000 0.002500000\n", - "\n", - " app\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " appall\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " apparently\n", - "trainSet$label F T\n", - " ham 0.9908100749 0.0091899251\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " appeal\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " appear\n", - "trainSet$label F T\n", - " ham 0.986725664 0.013274336\n", - " spam 0.990833333 0.009166667\n", - "\n", - " appeared\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.995000000 0.005000000\n", - "\n", - " appears\n", - "trainSet$label F T\n", - " ham 0.986385296 0.013614704\n", - " spam 0.996666667 0.003333333\n", - "\n", - " appendix\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " appetite\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9900000000 0.0100000000\n", - "\n", - " apple\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " appliance\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " applicable\n", - "trainSet$label F T\n", - " ham 0.9945541184 0.0054458816\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " applicant\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " application\n", - "trainSet$label F T\n", - " ham 0.99149081 0.00850919\n", - " spam 0.97333333 0.02666667\n", - "\n", - " applications\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.986666667 0.013333333\n", - "\n", - " applied\n", - "trainSet$label F T\n", - " ham 0.9952348536 0.0047651464\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " applies\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " apply\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 0.987500000 0.012500000\n", - "\n", - " appoint\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " appointment\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99000000 0.01000000\n", - "\n", - " appointments\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " appr\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " appreciate\n", - "trainSet$label F T\n", - " ham 0.981960517 0.018039483\n", - " spam 0.996666667 0.003333333\n", - "\n", - " appreciated\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 1.000000000 0.000000000\n", - "\n", - " appreciation\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.996666667 0.003333333\n", - "\n", - " apprise\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " apprised\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " approach\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.994166667 0.005833333\n", - "\n", - " approaching\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " appropriate\n", - "trainSet$label F T\n", - " ham 0.98468346 0.01531654\n", - " spam 0.99750000 0.00250000\n", - "\n", - " appropriately\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " approval\n", - "trainSet$label F T\n", - " ham 0.98400272 0.01599728\n", - " spam 0.98333333 0.01666667\n", - "\n", - " approve\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.997500000 0.002500000\n", - "\n", - " approved\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.965000000 0.035000000\n", - "\n", - " approx\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.998333333 0.001666667\n", - "\n", - " approximate\n", - "trainSet$label F T\n", - " ham 0.9976174268 0.0023825732\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " approximateiy\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " approximately\n", - "trainSet$label F T\n", - " ham 0.97889721 0.02110279\n", - " spam 0.99000000 0.01000000\n", - "\n", - " apps\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " apr\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.993333333 0.006666667\n", - "\n", - " april\n", - "trainSet$label F T\n", - " ham 0.91865214 0.08134786\n", - " spam 0.99250000 0.00750000\n", - "\n", - " apwl\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " aqua\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " aquarius\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " aquila\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.998333333 0.001666667\n", - "\n", - " arabia\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " arafat\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " archaic\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " archer\n", - "trainSet$label F T\n", - " ham 0.986044929 0.013955071\n", - " spam 0.998333333 0.001666667\n", - "\n", - " architect\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.990833333 0.009166667\n", - "\n", - " architectural\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " architecture\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " arco\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " ard\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " arduous\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " area\n", - "trainSet$label F T\n", - " ham 0.98740640 0.01259360\n", - " spam 0.95916667 0.04083333\n", - "\n", - " areas\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.990000000 0.010000000\n", - "\n", - " aren\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.995833333 0.004166667\n", - "\n", - " arena\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " areveffo\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " arge\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " argest\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " argue\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " argus\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " arial\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.991666667 0.008333333\n", - "\n", - " arise\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.997500000 0.002500000\n", - "\n", - " arises\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " arizona\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " arm\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9916666667 0.0083333333\n", - "\n", - " armstrong\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 1.000000000 0.000000000\n", - "\n", - " army\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " arnold\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " around\n", - "trainSet$label F T\n", - " ham 0.97311096 0.02688904\n", - " spam 0.97500000 0.02500000\n", - "\n", - " arrange\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.994166667 0.005833333\n", - "\n", - " arranged\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " arrangement\n", - "trainSet$label F T\n", - " ham 0.9884275 0.0115725\n", - " spam 0.9975000 0.0025000\n", - "\n", - " arrangements\n", - "trainSet$label F T\n", - " ham 0.989108237 0.010891763\n", - " spam 0.995833333 0.004166667\n", - "\n", - " arrival\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " arrive\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.998333333 0.001666667\n", - "\n", - " arrived\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " arrives\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " arriving\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " arrow\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " ars\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " arsine\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " art\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.988333333 0.011666667\n", - "\n", - " arthritis\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " arthur\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " article\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.993333333 0.006666667\n", - "\n", - " artistes\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " artists\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " artprice\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " artwork\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " arty\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " aruba\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " asap\n", - "trainSet$label F T\n", - " ham 0.98332199 0.01667801\n", - " spam 0.99750000 0.00250000\n", - "\n", - " ascii\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.986666667 0.013333333\n", - "\n", - " ashland\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " ashley\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " ashman\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " asia\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.993333333 0.006666667\n", - "\n", - " aside\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " ask\n", - "trainSet$label F T\n", - " ham 0.98093941 0.01906059\n", - " spam 0.97750000 0.02250000\n", - "\n", - " asked\n", - "trainSet$label F T\n", - " ham 0.978556841 0.021443159\n", - " spam 0.990833333 0.009166667\n", - "\n", - " asking\n", - "trainSet$label F T\n", - " ham 0.989788972 0.010211028\n", - " spam 0.996666667 0.003333333\n", - "\n", - " asp\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.996666667 0.003333333\n", - "\n", - " aspect\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.998333333 0.001666667\n", - "\n", - " aspects\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995833333 0.004166667\n", - "\n", - " aspermont\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " asphyxiate\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " ass\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " assess\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " assessed\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " assessment\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " asset\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.995000000 0.005000000\n", - "\n", - " assets\n", - "trainSet$label F T\n", - " ham 0.99012934 0.00987066\n", - " spam 0.98750000 0.01250000\n", - "\n", - " assign\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.995833333 0.004166667\n", - "\n", - " assigned\n", - "trainSet$label F T\n", - " ham 0.99149081 0.00850919\n", - " spam 1.00000000 0.00000000\n", - "\n", - " assignment\n", - "trainSet$label F T\n", - " ham 0.9897889721 0.0102110279\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " assignments\n", - "trainSet$label F T\n", - " ham 0.9965963240 0.0034036760\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " assist\n", - "trainSet$label F T\n", - " ham 0.98978897 0.01021103\n", - " spam 0.98583333 0.01416667\n", - "\n", - " assistance\n", - "trainSet$label F T\n", - " ham 0.98570456 0.01429544\n", - " spam 0.98583333 0.01416667\n", - "\n", - " assistant\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.997500000 0.002500000\n", - "\n", - " assistants\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " assisting\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " associate\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.997500000 0.002500000\n", - "\n", - " associated\n", - "trainSet$label F T\n", - " ham 0.98536419 0.01463581\n", - " spam 0.99250000 0.00750000\n", - "\n", - " associates\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99500000 0.00500000\n", - "\n", - " association\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.993333333 0.006666667\n", - "\n", - " assume\n", - "trainSet$label F T\n", - " ham 0.991490810 0.008509190\n", - " spam 0.998333333 0.001666667\n", - "\n", - " assumed\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 1.000000000 0.000000000\n", - "\n", - " assuming\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 1.000000000 0.000000000\n", - "\n", - " assumption\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.997500000 0.002500000\n", - "\n", - " assumptions\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.975000000 0.025000000\n", - "\n", - " assurance\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98583333 0.01416667\n", - "\n", - " assure\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.995000000 0.005000000\n", - "\n", - " assured\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.98750000 0.01250000\n", - "\n", - " ast\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " astonish\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " astros\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " astroworld\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " asylum\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " ata\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " ate\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " ativan\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " atkins\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " atlanta\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " atlantis\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " atleast\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9775 0.0225\n", - "\n", - " atm\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " atmic\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " atmospheric\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " atp\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " atr\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " att\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " attach\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.998333333 0.001666667\n", - "\n", - " attached\n", - "trainSet$label F T\n", - " ham 0.76446562 0.23553438\n", - " spam 0.98916667 0.01083333\n", - "\n", - " attachment\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 0.997500000 0.002500000\n", - "\n", - " attachments\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.998333333 0.001666667\n", - "\n", - " attack\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9925000000 0.0075000000\n", - "\n", - " attacks\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " attempt\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.993333333 0.006666667\n", - "\n", - " attempted\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " attempting\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " attempts\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " attend\n", - "trainSet$label F T\n", - " ham 0.991490810 0.008509190\n", - " spam 0.994166667 0.005833333\n", - "\n", - " attended\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " attending\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 1.000000000 0.000000000\n", - "\n", - " attention\n", - "trainSet$label F T\n", - " ham 0.98706603 0.01293397\n", - " spam 0.97500000 0.02500000\n", - "\n", - " attire\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " attitude\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " attl\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 1.000000000 0.000000000\n", - "\n", - " attn\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " attorney\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995000000 0.005000000\n", - "\n", - " attract\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " attractions\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " attractive\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995000000 0.005000000\n", - "\n", - " auburndale\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " auction\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " audience\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.993333333 0.006666667\n", - "\n", - " audio\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9900000000 0.0100000000\n", - "\n", - " audit\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.996666667 0.003333333\n", - "\n", - " auditions\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " auditor\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.990833333 0.009166667\n", - "\n", - " audrey\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " auf\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " aug\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 0.993333333 0.006666667\n", - "\n", - " august\n", - "trainSet$label F T\n", - " ham 0.945541184 0.054458816\n", - " spam 0.990833333 0.009166667\n", - "\n", - " austin\n", - "trainSet$label F T\n", - " ham 0.9908100749 0.0091899251\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " australia\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.991666667 0.008333333\n", - "\n", - " australian\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " authentic\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " author\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " authorisation\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " authorised\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " authority\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.992500000 0.007500000\n", - "\n", - " authorization\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " authorized\n", - "trainSet$label F T\n", - " ham 0.9955752212 0.0044247788\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " auto\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.988333333 0.011666667\n", - "\n", - " autodesk\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " automate\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " automated\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " automatic\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995833333 0.004166667\n", - "\n", - " automatically\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.991666667 0.008333333\n", - "\n", - " automation\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " autonoms\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " autry\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " avaiiabie\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " avaiiable\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.991666667 0.008333333\n", - "\n", - " availabie\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " availabilities\n", - "trainSet$label F T\n", - " ham 0.99149081 0.00850919\n", - " spam 1.00000000 0.00000000\n", - "\n", - " availability\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.968333333 0.031666667\n", - "\n", - " available\n", - "trainSet$label F T\n", - " ham 0.95609258 0.04390742\n", - " spam 0.89916667 0.10083333\n", - "\n", - " avails\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ave\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.991666667 0.008333333\n", - "\n", - " avec\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " avenue\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " average\n", - "trainSet$label F T\n", - " ham 0.99149081 0.00850919\n", - " spam 0.99000000 0.01000000\n", - "\n", - " averaging\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " avg\n", - "trainSet$label F T\n", - " ham 0.9962559564 0.0037440436\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " avila\n", - "trainSet$label F T\n", - " ham 0.98059905 0.01940095\n", - " spam 1.00000000 0.00000000\n", - "\n", - " avoid\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.983333333 0.016666667\n", - "\n", - " avoidance\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " avoided\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " await\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " awaiting\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " awake\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " award\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9900000000 0.0100000000\n", - "\n", - " awarded\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " awards\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " aware\n", - "trainSet$label F T\n", - " ham 0.98468346 0.01531654\n", - " spam 0.97250000 0.02750000\n", - "\n", - " away\n", - "trainSet$label F T\n", - " ham 0.990810075 0.009189925\n", - " spam 0.972500000 0.027500000\n", - "\n", - " awesome\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.986666667 0.013333333\n", - "\n", - " awhile\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " axcp\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " axle\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " aybar\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " aye\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " azimuthal\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " azurix\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " babe\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " babes\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " baby\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.990833333 0.009166667\n", - "\n", - " babysit\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " bac\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " bachelor\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " back\n", - "trainSet$label F T\n", - " ham 0.90844112 0.09155888\n", - " spam 0.91583333 0.08416667\n", - "\n", - " backed\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.998333333 0.001666667\n", - "\n", - " backgammon\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " background\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.992500000 0.007500000\n", - "\n", - " backlog\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " backout\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " backup\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " backwards\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " bad\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.977500000 0.022500000\n", - "\n", - " badly\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " bag\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.998333333 0.001666667\n", - "\n", - " bahamas\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " baker\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " bakery\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " balance\n", - "trainSet$label F T\n", - " ham 0.98434309 0.01565691\n", - " spam 0.99000000 0.01000000\n", - "\n", - " balanced\n", - "trainSet$label F T\n", - " ham 0.9945541184 0.0054458816\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " balances\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " balancing\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " balfour\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.997500000 0.002500000\n", - "\n", - " ball\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.995000000 0.005000000\n", - "\n", - " ballard\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " ballot\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " ballots\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " balls\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " baltic\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " balustrade\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " bamako\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " bammel\n", - "trainSet$label F T\n", - " ham 0.98978897 0.01021103\n", - " spam 1.00000000 0.00000000\n", - "\n", - " bammelyoungfamilies\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " band\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " bandwidth\n", - "trainSet$label F T\n", - " ham 0.9976174268 0.0023825732\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " bane\n", - "trainSet$label F T\n", - " ham 0.9931926481 0.0068073519\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " bang\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " banister\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " bank\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.970000000 0.030000000\n", - "\n", - " banking\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.987500000 0.012500000\n", - "\n", - " bankrupt\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " bankruptcy\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.984166667 0.015833333\n", - "\n", - " banks\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.993333333 0.006666667\n", - "\n", - " banner\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " bar\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.995833333 0.004166667\n", - "\n", - " barbados\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " barbara\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 1.000000000 0.000000000\n", - "\n", - " barcelona\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " barclays\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " barge\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " barkowsky\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " barnes\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " barnett\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " baron\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " barreis\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " barrels\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " barrett\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 1.000000000 0.000000000\n", - "\n", - " barring\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " barry\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.997500000 0.002500000\n", - "\n", - " bart\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " base\n", - "trainSet$label F T\n", - " ham 0.98536419 0.01463581\n", - " spam 0.98500000 0.01500000\n", - "\n", - " baseboard\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " based\n", - "trainSet$label F T\n", - " ham 0.94894486 0.05105514\n", - " spam 0.94833333 0.05166667\n", - "\n", - " baseload\n", - "trainSet$label F T\n", - " ham 0.9894486 0.0105514\n", - " spam 1.0000000 0.0000000\n", - "\n", - " baseman\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " basetxt\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " basic\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.996666667 0.003333333\n", - "\n", - " basically\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " basin\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " basis\n", - "trainSet$label F T\n", - " ham 0.9758339 0.0241661\n", - " spam 0.9875000 0.0125000\n", - "\n", - " basket\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " basketball\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " bass\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.997500000 0.002500000\n", - "\n", - " bassinet\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " batch\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.990833333 0.009166667\n", - "\n", - " batchelder\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " bates\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " batteries\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " battery\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9925000000 0.0075000000\n", - "\n", - " battle\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " baumbach\n", - "trainSet$label F T\n", - " ham 0.98059905 0.01940095\n", - " spam 1.00000000 0.00000000\n", - "\n", - " bauxite\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " bav\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 1.000000000 0.000000000\n", - "\n", - " baxter\n", - "trainSet$label F T\n", - " ham 0.9925119129 0.0074880871\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " bay\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.994166667 0.005833333\n", - "\n", - " bayer\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " baylor\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " bayou\n", - "trainSet$label F T\n", - " ham 0.9972770592 0.0027229408\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " bayport\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.998333333 0.001666667\n", - "\n", - " baytown\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " bazaar\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " bcc\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " bci\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " bcp\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " beach\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.993333333 0.006666667\n", - "\n", - " beale\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " bean\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " bear\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.994166667 0.005833333\n", - "\n", - " beard\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.998333333 0.001666667\n", - "\n", - " beat\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.997500000 0.002500000\n", - "\n", - " beaty\n", - "trainSet$label F T\n", - " ham 0.98672566 0.01327434\n", - " spam 1.00000000 0.00000000\n", - "\n", - " beaumont\n", - "trainSet$label F T\n", - " ham 0.98025868 0.01974132\n", - " spam 0.99750000 0.00250000\n", - "\n", - " beautiful\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.991666667 0.008333333\n", - "\n", - " beauty\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9866666667 0.0133333333\n", - "\n", - " became\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99500000 0.00500000\n", - "\n", - " beck\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 0.998333333 0.001666667\n", - "\n", - " beckon\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " becky\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.998333333 0.001666667\n", - "\n", - " become\n", - "trainSet$label F T\n", - " ham 0.990810075 0.009189925\n", - " spam 0.970833333 0.029166667\n", - "\n", - " becomes\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.996666667 0.003333333\n", - "\n", - " becoming\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.994166667 0.005833333\n", - "\n", - " bed\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.989166667 0.010833333\n", - "\n", - " bedridden\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " bedroom\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " bedspread\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " beemer\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 1.000000000 0.000000000\n", - "\n", - " beer\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " began\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.994166667 0.005833333\n", - "\n", - " begin\n", - "trainSet$label F T\n", - " ham 0.98502383 0.01497617\n", - " spam 0.98000000 0.02000000\n", - "\n", - " beginning\n", - "trainSet$label F T\n", - " ham 0.965963240 0.034036760\n", - " spam 0.993333333 0.006666667\n", - "\n", - " begins\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.998333333 0.001666667\n", - "\n", - " beguile\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " begun\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.994166667 0.005833333\n", - "\n", - " behalf\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 0.993333333 0.006666667\n", - "\n", - " behave\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " behind\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.992500000 0.007500000\n", - "\n", - " beiieve\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " beiieves\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " bel\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " belch\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " belief\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995833333 0.004166667\n", - "\n", - " beliefs\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9816666667 0.0183333333\n", - "\n", - " believe\n", - "trainSet$label F T\n", - " ham 0.97004765 0.02995235\n", - " spam 0.95333333 0.04666667\n", - "\n", - " believed\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " believes\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.975833333 0.024166667\n", - "\n", - " belize\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9883333333 0.0116666667\n", - "\n", - " bell\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " bellamy\n", - "trainSet$label F T\n", - " ham 0.978216474 0.021783526\n", - " spam 0.998333333 0.001666667\n", - "\n", - " beloit\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " belong\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " belongs\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.998333333 0.001666667\n", - "\n", - " belt\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " beman\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " ben\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.997500000 0.002500000\n", - "\n", - " bender\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " beneath\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " benedict\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.997500000 0.002500000\n", - "\n", - " beneficial\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.998333333 0.001666667\n", - "\n", - " beneficiary\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.991666667 0.008333333\n", - "\n", - " benefit\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.991666667 0.008333333\n", - "\n", - " benefits\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.986666667 0.013333333\n", - "\n", - " benin\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " benjamin\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " bennett\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.996666667 0.003333333\n", - "\n", - " bennick\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " benoit\n", - "trainSet$label F T\n", - " ham 0.9911504425 0.0088495575\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " benson\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " bequest\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " bereave\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " berke\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " bernard\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " bernstein\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " berryman\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " bertram\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " best\n", - "trainSet$label F T\n", - " ham 0.97277059 0.02722941\n", - " spam 0.84916667 0.15083333\n", - "\n", - " bet\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " beth\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.998333333 0.001666667\n", - "\n", - " better\n", - "trainSet$label F T\n", - " ham 0.98025868 0.01974132\n", - " spam 0.94416667 0.05583333\n", - "\n", - " betty\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " bev\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 1.000000000 0.000000000\n", - "\n", - " beverage\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " beverly\n", - "trainSet$label F T\n", - " ham 0.98502383 0.01497617\n", - " spam 0.99750000 0.00250000\n", - "\n", - " beware\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " beyond\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.995000000 0.005000000\n", - "\n", - " bezel\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " bgcolor\n", - "trainSet$label F T\n", - " ham 1.00 0.00\n", - " spam 0.99 0.01\n", - "\n", - " bherod\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " bialystok\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " biank\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " bias\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98583333 0.01416667\n", - "\n", - " bibi\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " bible\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " bicameral\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " bid\n", - "trainSet$label F T\n", - " ham 0.990810075 0.009189925\n", - " spam 0.997500000 0.002500000\n", - "\n", - " bidirectional\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " bids\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " bidweek\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " biel\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " big\n", - "trainSet$label F T\n", - " ham 0.98468346 0.01531654\n", - " spam 0.97833333 0.02166667\n", - "\n", - " bigfoot\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " bigger\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9891666667 0.0108333333\n", - "\n", - " biggest\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.989166667 0.010833333\n", - "\n", - " biilion\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " bike\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " bilberry\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " bilharziasis\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " bilinear\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " bill\n", - "trainSet$label F T\n", - " ham 0.98808713 0.01191287\n", - " spam 0.96500000 0.03500000\n", - "\n", - " billed\n", - "trainSet$label F T\n", - " ham 0.9874064 0.0125936\n", - " spam 1.0000000 0.0000000\n", - "\n", - " billing\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.995000000 0.005000000\n", - "\n", - " billion\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.983333333 0.016666667\n", - "\n", - " billions\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " bills\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.995000000 0.005000000\n", - "\n", - " billy\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.998333333 0.001666667\n", - "\n", - " bin\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " binary\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " binder\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " binding\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.995833333 0.004166667\n", - "\n", - " bingham\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " binghamton\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " bingo\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " bingoline\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " bio\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " biochemic\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " bioelectronics\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " biosphere\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " biota\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " bird\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " birk\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " birth\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " birthday\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " birthright\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " bisque\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " bit\n", - "trainSet$label F T\n", - " ham 0.991150442 0.008849558\n", - " spam 0.980833333 0.019166667\n", - "\n", - " biz\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9525 0.0475\n", - "\n", - " bjd\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " black\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.985833333 0.014166667\n", - "\n", - " blackjack\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " blah\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " blake\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " blanca\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " blanchard\n", - "trainSet$label F T\n", - " ham 0.9976174268 0.0023825732\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " blancpain\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " bland\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " blank\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.978333333 0.021666667\n", - "\n", - " blast\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " blay\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " bleed\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " bless\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.996666667 0.003333333\n", - "\n", - " blest\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " blevins\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " blink\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " blk\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " block\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.997500000 0.002500000\n", - "\n", - " blockbuster\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " blocks\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " blocky\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " blood\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.989166667 0.010833333\n", - "\n", - " bloodbath\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " blow\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.996666667 0.003333333\n", - "\n", - " blown\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " blue\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.992500000 0.007500000\n", - "\n", - " bluedolphin\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " bluetooth\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " bluish\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " bluster\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " blustery\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " blvd\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.986666667 0.013333333\n", - "\n", - " bmar\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " bmw\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " bnp\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " board\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.990000000 0.010000000\n", - "\n", - " boas\n", - "trainSet$label F T\n", - " ham 0.98808713 0.01191287\n", - " spam 1.00000000 0.00000000\n", - "\n", - " boat\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " boatload\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " bob\n", - "trainSet$label F T\n", - " ham 0.899251191 0.100748809\n", - " spam 0.996666667 0.003333333\n", - "\n", - " bobbie\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " bobby\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.995833333 0.004166667\n", - "\n", - " boca\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " bod\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " bodies\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " body\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.959166667 0.040833333\n", - "\n", - " boeing\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " bold\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.994166667 0.005833333\n", - "\n", - " bolivia\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " bolt\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " bonded\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " bone\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " bonfire\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " bonus\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.991666667 0.008333333\n", - "\n", - " book\n", - "trainSet$label F T\n", - " ham 0.98093941 0.01906059\n", - " spam 0.98333333 0.01666667\n", - "\n", - " bookbind\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " booked\n", - "trainSet$label F T\n", - " ham 0.9863852961 0.0136147039\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " bookend\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " booking\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " books\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.991666667 0.008333333\n", - "\n", - " boom\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " boost\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9866666667 0.0133333333\n", - "\n", - " booth\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " border\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9825000000 0.0175000000\n", - "\n", - " boris\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " borland\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " born\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995000000 0.005000000\n", - "\n", - " borneo\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " borrow\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " bose\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " boss\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " boston\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " bottle\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.990833333 0.009166667\n", - "\n", - " bottles\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " bottom\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.984166667 0.015833333\n", - "\n", - " boudar\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " bought\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.984166667 0.015833333\n", - "\n", - " boule\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " boulevard\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " bounce\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995833333 0.004166667\n", - "\n", - " bound\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " boundary\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.995833333 0.004166667\n", - "\n", - " bow\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " bowen\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.997500000 0.002500000\n", - "\n", - " bowie\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " bowl\n", - "trainSet$label F T\n", - " ham 0.9972770592 0.0027229408\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " box\n", - "trainSet$label F T\n", - " ham 0.9894486 0.0105514\n", - " spam 0.9725000 0.0275000\n", - "\n", - " boxes\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " boy\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9891666667 0.0108333333\n", - "\n", - " boyce\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " boys\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " bpd\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " bpl\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " bra\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " braband\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 1.000000000 0.000000000\n", - "\n", - " brackett\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " bractive\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " brad\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 1.000000000 0.000000000\n", - "\n", - " braden\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " bradford\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " bradley\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " bradshaw\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " brady\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " brain\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.995833333 0.004166667\n", - "\n", - " bramble\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " branch\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " brand\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.95833333 0.04166667\n", - "\n", - " branded\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " brandee\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " brandon\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.998333333 0.001666667\n", - "\n", - " brands\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9883333333 0.0116666667\n", - "\n", - " brandywine\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.998333333 0.001666667\n", - "\n", - " brant\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " bravado\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " brazaitis\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " brazil\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " brazilian\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " brazoria\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " brazos\n", - "trainSet$label F T\n", - " ham 0.99149081 0.00850919\n", - " spam 1.00000000 0.00000000\n", - "\n", - " brbr\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " brcc\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 1.000000000 0.000000000\n", - "\n", - " breach\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " break\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.989166667 0.010833333\n", - "\n", - " breakdown\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " breakfast\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " breaking\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.985000000 0.015000000\n", - "\n", - " breakout\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.992500000 0.007500000\n", - "\n", - " breast\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " breastplate\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " brec\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " breguet\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " breitling\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " brenda\n", - "trainSet$label F T\n", - " ham 0.9775357386 0.0224642614\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " brendan\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " brennan\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 1.000000000 0.000000000\n", - "\n", - " brent\n", - "trainSet$label F T\n", - " ham 0.9908100749 0.0091899251\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " breslau\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " bretz\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 1.000000000 0.000000000\n", - "\n", - " brewer\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " brex\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " brfont\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " brian\n", - "trainSet$label F T\n", - " ham 0.96460177 0.03539823\n", - " spam 0.99750000 0.00250000\n", - "\n", - " bridegroom\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " bridge\n", - "trainSet$label F T\n", - " ham 0.98808713 0.01191287\n", - " spam 0.98916667 0.01083333\n", - "\n", - " bridgeback\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " bridged\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " bridgeline\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " bridges\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " bridgette\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " bridging\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " brief\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.996666667 0.003333333\n", - "\n", - " briefly\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " bright\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " briley\n", - "trainSet$label F T\n", - " ham 0.991150442 0.008849558\n", - " spam 1.000000000 0.000000000\n", - "\n", - " bring\n", - "trainSet$label F T\n", - " ham 0.98400272 0.01599728\n", - " spam 0.98250000 0.01750000\n", - "\n", - " bringing\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.993333333 0.006666667\n", - "\n", - " brings\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " britain\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " british\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " broad\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995000000 0.005000000\n", - "\n", - " broadband\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.991666667 0.008333333\n", - "\n", - " broadcast\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " broadcasting\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " broadway\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " brochure\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " brock\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " broke\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " broken\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.996666667 0.003333333\n", - "\n", - " broker\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.981666667 0.018333333\n", - "\n", - " brokerage\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " brokered\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 1.000000000 0.000000000\n", - "\n", - " bronco\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " broomcorn\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " broth\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " brother\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.990000000 0.010000000\n", - "\n", - " brought\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.995833333 0.004166667\n", - "\n", - " brown\n", - "trainSet$label F T\n", - " ham 0.989788972 0.010211028\n", - " spam 0.995833333 0.004166667\n", - "\n", - " browse\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " browser\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.950000000 0.050000000\n", - "\n", - " brrating\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " bruce\n", - "trainSet$label F T\n", - " ham 0.9853641933 0.0146358067\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " bryan\n", - "trainSet$label F T\n", - " ham 0.97957794 0.02042206\n", - " spam 1.00000000 0.00000000\n", - "\n", - " bryant\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " bryce\n", - "trainSet$label F T\n", - " ham 0.9931926481 0.0068073519\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " btu\n", - "trainSet$label F T\n", - " ham 0.9819605174 0.0180394826\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " bubba\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " bubert\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " buchanan\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " buck\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " buckley\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 1.000000000 0.000000000\n", - "\n", - " bucks\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " bucolic\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " bud\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " buddy\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.994166667 0.005833333\n", - "\n", - " budget\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.990833333 0.009166667\n", - "\n", - " budgets\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " buffet\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " buffett\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " bug\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " bugle\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " buhler\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " build\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.982500000 0.017500000\n", - "\n", - " builder\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " building\n", - "trainSet$label F T\n", - " ham 0.99149081 0.00850919\n", - " spam 0.99250000 0.00750000\n", - "\n", - " buildings\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " built\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.991666667 0.008333333\n", - "\n", - " bulk\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9900000000 0.0100000000\n", - "\n", - " bull\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " bulletin\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995833333 0.004166667\n", - "\n", - " bump\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " bundle\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " bundled\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " bunny\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " buoy\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " bupropion\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " burch\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " burchfield\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " burden\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " burdock\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " buried\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " burke\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " burn\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.995000000 0.005000000\n", - "\n", - " burning\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " burns\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " burp\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " burst\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " bus\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " busby\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " bush\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.998333333 0.001666667\n", - "\n", - " business\n", - "trainSet$label F T\n", - " ham 0.95473111 0.04526889\n", - " spam 0.92250000 0.07750000\n", - "\n", - " businesses\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.983333333 0.016666667\n", - "\n", - " buspar\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " buss\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " bussell\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 1.000000000 0.000000000\n", - "\n", - " busy\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.995833333 0.004166667\n", - "\n", - " butalbital\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " butane\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " butt\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " button\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.990833333 0.009166667\n", - "\n", - " buttons\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.996666667 0.003333333\n", - "\n", - " buy\n", - "trainSet$label F T\n", - " ham 0.97889721 0.02110279\n", - " spam 0.94333333 0.05666667\n", - "\n", - " buyback\n", - "trainSet$label F T\n", - " ham 0.97889721 0.02110279\n", - " spam 1.00000000 0.00000000\n", - "\n", - " buybacks\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 1.000000000 0.000000000\n", - "\n", - " buyer\n", - "trainSet$label F T\n", - " ham 0.9884275 0.0115725\n", - " spam 1.0000000 0.0000000\n", - "\n", - " buyers\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " buying\n", - "trainSet$label F T\n", - " ham 0.987066031 0.012933969\n", - " spam 0.996666667 0.003333333\n", - "\n", - " buys\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 1.000000000 0.000000000\n", - "\n", - " buzzing\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " bvjkiu\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " bvlgari\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " bye\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9916666667 0.0083333333\n", - "\n", - " bypass\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.996666667 0.003333333\n", - "\n", - " byroad\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " byron\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " byronellis\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " byte\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " byzantine\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " bze\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " cabinet\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " cable\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9833333333 0.0166666667\n", - "\n", - " cackle\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " cadenza\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " caffeine\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " caiifornia\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " cakewalk\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " cal\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.996666667 0.003333333\n", - "\n", - " calamity\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " calcagno\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " calcite\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " calculable\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " calculate\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " calculated\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " calculating\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " calculation\n", - "trainSet$label F T\n", - " ham 0.9965963240 0.0034036760\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " calendar\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.995000000 0.005000000\n", - "\n", - " calendars\n", - "trainSet$label F T\n", - " ham 0.9969366916 0.0030633084\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " calgary\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " california\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.992500000 0.007500000\n", - "\n", - " call\n", - "trainSet$label F T\n", - " ham 0.8665759 0.1334241\n", - " spam 0.9650000 0.0350000\n", - "\n", - " called\n", - "trainSet$label F T\n", - " ham 0.97515317 0.02484683\n", - " spam 0.97833333 0.02166667\n", - "\n", - " calling\n", - "trainSet$label F T\n", - " ham 0.989788972 0.010211028\n", - " spam 0.996666667 0.003333333\n", - "\n", - " calls\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 0.991666667 0.008333333\n", - "\n", - " calorized\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " calpine\n", - "trainSet$label F T\n", - " ham 0.98093941 0.01906059\n", - " spam 1.00000000 0.00000000\n", - "\n", - " calvert\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " calvin\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " cam\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " cambric\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " camcorder\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " camden\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.997500000 0.002500000\n", - "\n", - " came\n", - "trainSet$label F T\n", - " ham 0.98876787 0.01123213\n", - " spam 0.98583333 0.01416667\n", - "\n", - " camera\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.988333333 0.011666667\n", - "\n", - " cameras\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " cameron\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " camille\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " camlem\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " camp\n", - "trainSet$label F T\n", - " ham 0.970388019 0.029611981\n", - " spam 0.998333333 0.001666667\n", - "\n", - " campaign\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9858333333 0.0141666667\n", - "\n", - " campbell\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " campos\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " campus\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " can\n", - "trainSet$label F T\n", - " ham 0.7763785 0.2236215\n", - " spam 0.7391667 0.2608333\n", - "\n", - " canaan\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " canada\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.946666667 0.053333333\n", - "\n", - " canadian\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9925000000 0.0075000000\n", - "\n", - " canales\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " cancel\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.993333333 0.006666667\n", - "\n", - " cancelled\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.997500000 0.002500000\n", - "\n", - " cancer\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.994166667 0.005833333\n", - "\n", - " candace\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " candidate\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " candidates\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " candle\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " candy\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " canm\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " cannon\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.997500000 0.002500000\n", - "\n", - " canon\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.96666667 0.03333333\n", - "\n", - " canopy\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " cant\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " cantrell\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " canus\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " canvas\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " cap\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.982500000 0.017500000\n", - "\n", - " capabilities\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.990000000 0.010000000\n", - "\n", - " capability\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.998333333 0.001666667\n", - "\n", - " capable\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " capacity\n", - "trainSet$label F T\n", - " ham 0.990129340 0.009870660\n", - " spam 0.993333333 0.006666667\n", - "\n", - " capital\n", - "trainSet$label F T\n", - " ham 0.98298162 0.01701838\n", - " spam 0.98250000 0.01750000\n", - "\n", - " capitol\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " caps\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " capsule\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " captain\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " captaincy\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " capture\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.995833333 0.004166667\n", - "\n", - " captured\n", - "trainSet$label F T\n", - " ham 0.9972770592 0.0027229408\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " captures\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " car\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.984166667 0.015833333\n", - "\n", - " carbaugh\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " carbide\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.996666667 0.003333333\n", - "\n", - " card\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.980833333 0.019166667\n", - "\n", - " cards\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.991666667 0.008333333\n", - "\n", - " care\n", - "trainSet$label F T\n", - " ham 0.98604493 0.01395507\n", - " spam 0.97333333 0.02666667\n", - "\n", - " career\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " careful\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " carefully\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.996666667 0.003333333\n", - "\n", - " carey\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.998333333 0.001666667\n", - "\n", - " cargo\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " caribbean\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " carisoprodol\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " carl\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " carla\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " carlos\n", - "trainSet$label F T\n", - " ham 0.9656228727 0.0343771273\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " carol\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.998333333 0.001666667\n", - "\n", - " carolina\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " carolyn\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " carouse\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " carrie\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 1.000000000 0.000000000\n", - "\n", - " carried\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995000000 0.005000000\n", - "\n", - " carrier\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9916666667 0.0083333333\n", - "\n", - " carriere\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 1.000000000 0.000000000\n", - "\n", - " carriers\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " carries\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " carrizo\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " carry\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.985000000 0.015000000\n", - "\n", - " carrying\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " cars\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " carson\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " cart\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.995000000 0.005000000\n", - "\n", - " carter\n", - "trainSet$label F T\n", - " ham 0.9959155888 0.0040844112\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " carthage\n", - "trainSet$label F T\n", - " ham 0.980258679 0.019741321\n", - " spam 0.998333333 0.001666667\n", - "\n", - " cartier\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.991666667 0.008333333\n", - "\n", - " cartilage\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " carton\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " cartoon\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " cartoons\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " cartridge\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " cartridges\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " cartwheel\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 0.998333333 0.001666667\n", - "\n", - " case\n", - "trainSet$label F T\n", - " ham 0.98196052 0.01803948\n", - " spam 0.97500000 0.02500000\n", - "\n", - " cases\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.997500000 0.002500000\n", - "\n", - " casework\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " casey\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " cash\n", - "trainSet$label F T\n", - " ham 0.98944860 0.01055140\n", - " spam 0.96083333 0.03916667\n", - "\n", - " cashout\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " casing\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " casino\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " cass\n", - "trainSet$label F T\n", - " ham 0.98706603 0.01293397\n", - " spam 1.00000000 0.00000000\n", - "\n", - " cassette\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " cast\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " casual\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " casualties\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " cat\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9925000000 0.0075000000\n", - "\n", - " catalog\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " catalogue\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " catastrophic\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " catch\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.992500000 0.007500000\n", - "\n", - " catechism\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " categories\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " category\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.985833333 0.014166667\n", - "\n", - " cater\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " catherine\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.995833333 0.004166667\n", - "\n", - " cathy\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.997500000 0.002500000\n", - "\n", - " catkin\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " cats\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " cattle\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " caught\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " cause\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.958333333 0.041666667\n", - "\n", - " caused\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.996666667 0.003333333\n", - "\n", - " causes\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.997500000 0.002500000\n", - "\n", - " causey\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " causing\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.997500000 0.002500000\n", - "\n", - " caution\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " cautioned\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98833333 0.01166667\n", - "\n", - " cautious\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " cavern\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " cbs\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " ccffo\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " ccgm\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " cco\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " ccs\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 1.000000000 0.000000000\n", - "\n", - " cdnow\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " cdp\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " cdrw\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " cds\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995833333 0.004166667\n", - "\n", - " cdyv\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " cease\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " cec\n", - "trainSet$label F T\n", - " ham 0.991150442 0.008849558\n", - " spam 1.000000000 0.000000000\n", - "\n", - " cecilia\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " celanese\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " celebrate\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99500000 0.00500000\n", - "\n", - " celebration\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " celebrex\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " cell\n", - "trainSet$label F T\n", - " ham 0.989788972 0.010211028\n", - " spam 0.996666667 0.003333333\n", - "\n", - " cellpadding\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.990833333 0.009166667\n", - "\n", - " cells\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " cellspacing\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " cellular\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.995833333 0.004166667\n", - "\n", - " census\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " cent\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.996666667 0.003333333\n", - "\n", - " centana\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 1.000000000 0.000000000\n", - "\n", - " center\n", - "trainSet$label F T\n", - " ham 0.98366236 0.01633764\n", - " spam 0.97833333 0.02166667\n", - "\n", - " centera\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " centerfont\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " centers\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.995000000 0.005000000\n", - "\n", - " central\n", - "trainSet$label F T\n", - " ham 0.98400272 0.01599728\n", - " spam 0.99000000 0.01000000\n", - "\n", - " centre\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " cents\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.994166667 0.005833333\n", - "\n", - " ceo\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.985000000 0.015000000\n", - "\n", - " ceos\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " cernosek\n", - "trainSet$label F T\n", - " ham 0.97957794 0.02042206\n", - " spam 1.00000000 0.00000000\n", - "\n", - " certain\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.961666667 0.038333333\n", - "\n", - " certainly\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " certificate\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.994166667 0.005833333\n", - "\n", - " certificates\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " certified\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9900000000 0.0100000000\n", - "\n", - " ces\n", - "trainSet$label F T\n", - " ham 0.9894486 0.0105514\n", - " spam 0.9950000 0.0050000\n", - "\n", - " cfp\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " cfr\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " cgi\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " chad\n", - "trainSet$label F T\n", - " ham 0.985704561 0.014295439\n", - " spam 0.998333333 0.001666667\n", - "\n", - " chain\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " chains\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " chair\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.995000000 0.005000000\n", - "\n", - " chairman\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.994166667 0.005833333\n", - "\n", - " chalcedony\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " chalcocite\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " challenge\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " challenged\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " challenges\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " chamber\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " chambers\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.998333333 0.001666667\n", - "\n", - " champion\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " chan\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " chance\n", - "trainSet$label F T\n", - " ham 0.98434309 0.01565691\n", - " spam 0.98666667 0.01333333\n", - "\n", - " chances\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.996666667 0.003333333\n", - "\n", - " chandelier\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " chanel\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " change\n", - "trainSet$label F T\n", - " ham 0.89754935 0.10245065\n", - " spam 0.93916667 0.06083333\n", - "\n", - " changed\n", - "trainSet$label F T\n", - " ham 0.96596324 0.03403676\n", - " spam 0.99500000 0.00500000\n", - "\n", - " changes\n", - "trainSet$label F T\n", - " ham 0.939754935 0.060245065\n", - " spam 0.994166667 0.005833333\n", - "\n", - " changing\n", - "trainSet$label F T\n", - " ham 0.989448604 0.010551396\n", - " spam 0.996666667 0.003333333\n", - "\n", - " channel\n", - "trainSet$label F T\n", - " ham 0.98808713 0.01191287\n", - " spam 0.98666667 0.01333333\n", - "\n", - " channels\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9916666667 0.0083333333\n", - "\n", - " channelview\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " chantelle\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " chaplaincy\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " chapman\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " chapter\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " charge\n", - "trainSet$label F T\n", - " ham 0.98944860 0.01055140\n", - " spam 0.96916667 0.03083333\n", - "\n", - " charged\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.998333333 0.001666667\n", - "\n", - " charges\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.995000000 0.005000000\n", - "\n", - " charging\n", - "trainSet$label F T\n", - " ham 0.9976174268 0.0023825732\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " charity\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " charlene\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 1.000000000 0.000000000\n", - "\n", - " charles\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 0.995833333 0.004166667\n", - "\n", - " charlie\n", - "trainSet$label F T\n", - " ham 0.970388019 0.029611981\n", - " spam 0.995833333 0.004166667\n", - "\n", - " charlotte\n", - "trainSet$label F T\n", - " ham 0.99012934 0.00987066\n", - " spam 0.99750000 0.00250000\n", - "\n", - " charset\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.978333333 0.021666667\n", - "\n", - " chart\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.998333333 0.001666667\n", - "\n", - " charts\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " charybdis\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " chase\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " chat\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.994166667 0.005833333\n", - "\n", - " che\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " cheap\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9566666667 0.0433333333\n", - "\n", - " cheaper\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " cheapest\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98333333 0.01666667\n", - "\n", - " cheat\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " cheating\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " check\n", - "trainSet$label F T\n", - " ham 0.95473111 0.04526889\n", - " spam 0.93833333 0.06166667\n", - "\n", - " checked\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.998333333 0.001666667\n", - "\n", - " checking\n", - "trainSet$label F T\n", - " ham 0.9955752212 0.0044247788\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " checkout\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.995833333 0.004166667\n", - "\n", - " checks\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " cheeap\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " cheesy\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " chemical\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 1.000000000 0.000000000\n", - "\n", - " chemicals\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " cherry\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 0.997500000 0.002500000\n", - "\n", - " cheryl\n", - "trainSet$label F T\n", - " ham 0.9823008850 0.0176991150\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " cheshire\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " chest\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " chevron\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.996666667 0.003333333\n", - "\n", - " chfc\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " chicago\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " chief\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.995000000 0.005000000\n", - "\n", - " child\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.994166667 0.005833333\n", - "\n", - " childers\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " children\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.984166667 0.015833333\n", - "\n", - " childrens\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " chimney\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " china\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9908333333 0.0091666667\n", - "\n", - " chinese\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " chip\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " choate\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 1.000000000 0.000000000\n", - "\n", - " chocolate\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " choice\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.987500000 0.012500000\n", - "\n", - " choices\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " chokshi\n", - "trainSet$label F T\n", - " ham 0.95132743 0.04867257\n", - " spam 1.00000000 0.00000000\n", - "\n", - " cholesterol\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9875 0.0125\n", - "\n", - " cholinesterase\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " choose\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.975000000 0.025000000\n", - "\n", - " chopard\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " choral\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " chose\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " chosen\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " chris\n", - "trainSet$label F T\n", - " ham 0.9891082369 0.0108917631\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " christ\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " christensen\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " christi\n", - "trainSet$label F T\n", - " ham 0.9969366916 0.0030633084\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " christian\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.994166667 0.005833333\n", - "\n", - " christiansen\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " christina\n", - "trainSet$label F T\n", - " ham 0.9972770592 0.0027229408\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " christine\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.998333333 0.001666667\n", - "\n", - " christmas\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.991666667 0.008333333\n", - "\n", - " christopher\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.997500000 0.002500000\n", - "\n", - " christy\n", - "trainSet$label F T\n", - " ham 0.98978897 0.01021103\n", - " spam 1.00000000 0.00000000\n", - "\n", - " chromium\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " chronic\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " chuck\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 1.000000000 0.000000000\n", - "\n", - " chuckle\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " chummy\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " chun\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " church\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.995000000 0.005000000\n", - "\n", - " chutney\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " chyral\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " cia\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98583333 0.01416667\n", - "\n", - " cial\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " cialiis\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " cialis\n", - "trainSet$label F T\n", - " ham 1.00 0.00\n", - " spam 0.95 0.05\n", - "\n", - " cialls\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " cico\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " cigarette\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " ciilck\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " cilco\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " cindy\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.998333333 0.001666667\n", - "\n", - " cinergy\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " cingular\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " cinm\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " cipco\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " circle\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " circulating\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " circulation\n", - "trainSet$label F T\n", - " ham 1.00 0.00\n", - " spam 0.99 0.01\n", - "\n", - " circumstances\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " cisco\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9716666667 0.0283333333\n", - "\n", - " citce\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " citgo\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " citibank\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " cities\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.995833333 0.004166667\n", - "\n", - " citizen\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " citizensr\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " citrate\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " city\n", - "trainSet$label F T\n", - " ham 0.98434309 0.01565691\n", - " spam 0.96166667 0.03833333\n", - "\n", - " civil\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " claim\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.982500000 0.017500000\n", - "\n", - " claimed\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " claiming\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9925000000 0.0075000000\n", - "\n", - " claims\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99000000 0.01000000\n", - "\n", - " clal\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " clalis\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " clalls\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " clara\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " claremont\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " clarification\n", - "trainSet$label F T\n", - " ham 0.9945541184 0.0054458816\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " clarify\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.998333333 0.001666667\n", - "\n", - " clarissa\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 1.000000000 0.000000000\n", - "\n", - " clark\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " clarke\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " clarkston\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 1.000000000 0.000000000\n", - "\n", - " class\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.993333333 0.006666667\n", - "\n", - " classes\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.997500000 0.002500000\n", - "\n", - " classic\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " claudio\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " clay\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.997500000 0.002500000\n", - "\n", - " clean\n", - "trainSet$label F T\n", - " ham 0.99012934 0.00987066\n", - " spam 0.99500000 0.00500000\n", - "\n", - " cleaned\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " cleaner\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " cleaning\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " cleanup\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.995833333 0.004166667\n", - "\n", - " clear\n", - "trainSet$label F T\n", - " ham 0.97753574 0.02246426\n", - " spam 0.98666667 0.01333333\n", - "\n", - " clearance\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.968333333 0.031666667\n", - "\n", - " cleared\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 1.000000000 0.000000000\n", - "\n", - " clearing\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.998333333 0.001666667\n", - "\n", - " clearly\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.996666667 0.003333333\n", - "\n", - " cleburne\n", - "trainSet$label F T\n", - " ham 0.98468346 0.01531654\n", - " spam 1.00000000 0.00000000\n", - "\n", - " cleco\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " clem\n", - "trainSet$label F T\n", - " ham 0.97413206 0.02586794\n", - " spam 1.00000000 0.00000000\n", - "\n", - " clerk\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " cli\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " click\n", - "trainSet$label F T\n", - " ham 0.9737917 0.0262083\n", - " spam 0.8600000 0.1400000\n", - "\n", - " clickathome\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " clickathomepilot\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " clicking\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.998333333 0.001666667\n", - "\n", - " client\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.992500000 0.007500000\n", - "\n", - " clients\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.993333333 0.006666667\n", - "\n", - " cliff\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " clinch\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " clint\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " clinton\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " cllick\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " clmp\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " cloak\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " clobber\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " clock\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9900000000 0.0100000000\n", - "\n", - " close\n", - "trainSet$label F T\n", - " ham 0.97787611 0.02212389\n", - " spam 0.98583333 0.01416667\n", - "\n", - " closed\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.994166667 0.005833333\n", - "\n", - " closely\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.998333333 0.001666667\n", - "\n", - " closer\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " closes\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " closing\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.996666667 0.003333333\n", - "\n", - " closure\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " clothes\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.996666667 0.003333333\n", - "\n", - " cloud\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " cloudburst\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " clu\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " club\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.995000000 0.005000000\n", - "\n", - " clubs\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " clue\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " clynes\n", - "trainSet$label F T\n", - " ham 0.95098707 0.04901293\n", - " spam 1.00000000 0.00000000\n", - "\n", - " cma\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " cmltrochta\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " cnn\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " coach\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.997500000 0.002500000\n", - "\n", - " coaching\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " coachwork\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " coal\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.997500000 0.002500000\n", - "\n", - " coast\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.995000000 0.005000000\n", - "\n", - " coastal\n", - "trainSet$label F T\n", - " ham 0.9918311777 0.0081688223\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " cob\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " cobra\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " coc\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " coca\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " cocavessis\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " cochrane\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " cock\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " cockcrow\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " cocks\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " coco\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " coconut\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " coconutmodem\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " code\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.985833333 0.014166667\n", - "\n", - " codes\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " codin\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " cody\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.998333333 0.001666667\n", - "\n", - " coffee\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " coffer\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " coffey\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.997500000 0.002500000\n", - "\n", - " cogen\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " cogent\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " cognate\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " cognitive\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " coherent\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " coin\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " cokinos\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 1.000000000 0.000000000\n", - "\n", - " cola\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " colander\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " colbert\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " cold\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.993333333 0.006666667\n", - "\n", - " cole\n", - "trainSet$label F T\n", - " ham 0.9962559564 0.0037440436\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " coleman\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " colgate\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " collateral\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " colleague\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " collect\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.997500000 0.002500000\n", - "\n", - " collecting\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " collection\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.989166667 0.010833333\n", - "\n", - " collections\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " college\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.993333333 0.006666667\n", - "\n", - " collins\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " colloquy\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " cologne\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " color\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.979166667 0.020833333\n", - "\n", - " colorado\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.996666667 0.003333333\n", - "\n", - " colspan\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " columbia\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " columbiagas\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " columbus\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " column\n", - "trainSet$label F T\n", - " ham 0.989448604 0.010551396\n", - " spam 0.996666667 0.003333333\n", - "\n", - " columns\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " com\n", - "trainSet$label F T\n", - " ham 0.8369639 0.1630361\n", - " spam 0.7075000 0.2925000\n", - "\n", - " combination\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.994166667 0.005833333\n", - "\n", - " combine\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " combined\n", - "trainSet$label F T\n", - " ham 0.9962559564 0.0037440436\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " combines\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " come\n", - "trainSet$label F T\n", - " ham 0.96868618 0.03131382\n", - " spam 0.94750000 0.05250000\n", - "\n", - " comello\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " comes\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.977500000 0.022500000\n", - "\n", - " comfort\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9833333333 0.0166666667\n", - "\n", - " comfortable\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.995000000 0.005000000\n", - "\n", - " comic\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " coming\n", - "trainSet$label F T\n", - " ham 0.974472430 0.025527570\n", - " spam 0.995833333 0.004166667\n", - "\n", - " comitas\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " command\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " commence\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.998333333 0.001666667\n", - "\n", - " commenced\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " commences\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " commencing\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " comment\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " comments\n", - "trainSet$label F T\n", - " ham 0.98093941 0.01906059\n", - " spam 1.00000000 0.00000000\n", - "\n", - " commerce\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.993333333 0.006666667\n", - "\n", - " commercial\n", - "trainSet$label F T\n", - " ham 0.98876787 0.01123213\n", - " spam 0.96250000 0.03750000\n", - "\n", - " commercialization\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " commercials\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " commissariat\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " commission\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.990833333 0.009166667\n", - "\n", - " commissioner\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " commitment\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.993333333 0.006666667\n", - "\n", - " committed\n", - "trainSet$label F T\n", - " ham 0.984343091 0.015656909\n", - " spam 0.993333333 0.006666667\n", - "\n", - " committee\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.996666667 0.003333333\n", - "\n", - " committeemen\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " commodities\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " commodity\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.997500000 0.002500000\n", - "\n", - " common\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.986666667 0.013333333\n", - "\n", - " commonwealth\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " communicate\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.993333333 0.006666667\n", - "\n", - " communicated\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 1.000000000 0.000000000\n", - "\n", - " communicating\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " communication\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.980833333 0.019166667\n", - "\n", - " communications\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.989166667 0.010833333\n", - "\n", - " community\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.990833333 0.009166667\n", - "\n", - " comp\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " compact\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " compagnie\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " companies\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.950000000 0.050000000\n", - "\n", - " company\n", - "trainSet$label F T\n", - " ham 0.94656229 0.05343771\n", - " spam 0.91583333 0.08416667\n", - "\n", - " companys\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " compaq\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.971666667 0.028333333\n", - "\n", - " compare\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.98416667 0.01583333\n", - "\n", - " compared\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9866666667 0.0133333333\n", - "\n", - " comparing\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " comparison\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.995000000 0.005000000\n", - "\n", - " compartment\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " compartments\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " compass\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " compatible\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9925000000 0.0075000000\n", - "\n", - " compendia\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " compensate\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " compensated\n", - "trainSet$label F T\n", - " ham 1.00 0.00\n", - " spam 0.99 0.01\n", - "\n", - " compensation\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.98083333 0.01916667\n", - "\n", - " compete\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995000000 0.005000000\n", - "\n", - " competing\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995000000 0.005000000\n", - "\n", - " competition\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.98416667 0.01583333\n", - "\n", - " competitive\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.990833333 0.009166667\n", - "\n", - " competitors\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " compieted\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " compieteness\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " compilation\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " compile\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " compiled\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " compiling\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " complaints\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9708333333 0.0291666667\n", - "\n", - " complementary\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " complete\n", - "trainSet$label F T\n", - " ham 0.97753574 0.02246426\n", - " spam 0.97166667 0.02833333\n", - "\n", - " completed\n", - "trainSet$label F T\n", - " ham 0.98400272 0.01599728\n", - " spam 0.98333333 0.01666667\n", - "\n", - " completely\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.986666667 0.013333333\n", - "\n", - " completeness\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9875 0.0125\n", - "\n", - " completes\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " completing\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 1.000000000 0.000000000\n", - "\n", - " completion\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.994166667 0.005833333\n", - "\n", - " complex\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.994166667 0.005833333\n", - "\n", - " compliance\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.950000000 0.050000000\n", - "\n", - " compliant\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " complications\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " compliment\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " complimentary\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " comply\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " components\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995833333 0.004166667\n", - "\n", - " composition\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " comprehension\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " comprehensive\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.992500000 0.007500000\n", - "\n", - " compression\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " compressor\n", - "trainSet$label F T\n", - " ham 0.9945541184 0.0054458816\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " comprise\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " comprises\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " compromised\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " compuserve\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " computer\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.965833333 0.034166667\n", - "\n", - " computers\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.993333333 0.006666667\n", - "\n", - " computing\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " computron\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.97166667 0.02833333\n", - "\n", - " comstock\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 1.000000000 0.000000000\n", - "\n", - " comtex\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " con\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " conant\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " concentration\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " concentric\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " concept\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.995833333 0.004166667\n", - "\n", - " concern\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.982500000 0.017500000\n", - "\n", - " concerned\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 0.998333333 0.001666667\n", - "\n", - " concerning\n", - "trainSet$label F T\n", - " ham 0.99012934 0.00987066\n", - " spam 0.99750000 0.00250000\n", - "\n", - " concerns\n", - "trainSet$label F T\n", - " ham 0.985364193 0.014635807\n", - " spam 0.996666667 0.003333333\n", - "\n", - " concert\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " conciliatory\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " conciusion\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " conclude\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995833333 0.004166667\n", - "\n", - " concluded\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " conclusion\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9891666667 0.0108333333\n", - "\n", - " concord\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " concrete\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " condition\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9925000000 0.0075000000\n", - "\n", - " conditional\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " conditioning\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " conditions\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.983333333 0.016666667\n", - "\n", - " conduct\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.998333333 0.001666667\n", - "\n", - " conducted\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.995833333 0.004166667\n", - "\n", - " conducting\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.996666667 0.003333333\n", - "\n", - " conf\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " conference\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.995000000 0.005000000\n", - "\n", - " conferred\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " confess\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.997500000 0.002500000\n", - "\n", - " confession\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " confidence\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.989166667 0.010833333\n", - "\n", - " confident\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.997500000 0.002500000\n", - "\n", - " confidential\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 0.981666667 0.018333333\n", - "\n", - " confidentiality\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.984166667 0.015833333\n", - "\n", - " confiict\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " confirm\n", - "trainSet$label F T\n", - " ham 0.97413206 0.02586794\n", - " spam 0.97583333 0.02416667\n", - "\n", - " confirmation\n", - "trainSet$label F T\n", - " ham 0.98604493 0.01395507\n", - " spam 0.98833333 0.01166667\n", - "\n", - " confirmations\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 1.000000000 0.000000000\n", - "\n", - " confirmed\n", - "trainSet$label F T\n", - " ham 0.980258679 0.019741321\n", - " spam 0.994166667 0.005833333\n", - "\n", - " confirming\n", - "trainSet$label F T\n", - " ham 0.9965963240 0.0034036760\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " confirms\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " confiscate\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " conflict\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9741666667 0.0258333333\n", - "\n", - " conflicts\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " confrere\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " confront\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " confused\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " confusing\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " confusion\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 1.000000000 0.000000000\n", - "\n", - " congratulate\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " congratulating\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 1.000000000 0.000000000\n", - "\n", - " congratulations\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.993333333 0.006666667\n", - "\n", - " congratulatory\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " congress\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9708333333 0.0291666667\n", - "\n", - " conjunction\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " conjuncture\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " connect\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.996666667 0.003333333\n", - "\n", - " connected\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.993333333 0.006666667\n", - "\n", - " connection\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.985000000 0.015000000\n", - "\n", - " connectivity\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " conner\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.998333333 0.001666667\n", - "\n", - " connevey\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 1.000000000 0.000000000\n", - "\n", - " connie\n", - "trainSet$label F T\n", - " ham 0.9908100749 0.0091899251\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " connor\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " conoco\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 1.000000000 0.000000000\n", - "\n", - " conquer\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " consemiu\n", - "trainSet$label F T\n", - " ham 0.990810075 0.009189925\n", - " spam 1.000000000 0.000000000\n", - "\n", - " consensus\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " consent\n", - "trainSet$label F T\n", - " ham 0.9962559564 0.0037440436\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " consequently\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.991666667 0.008333333\n", - "\n", - " conservative\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995833333 0.004166667\n", - "\n", - " consider\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.989166667 0.010833333\n", - "\n", - " considerable\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " consideration\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.995833333 0.004166667\n", - "\n", - " considerations\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " considered\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.958333333 0.041666667\n", - "\n", - " considering\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " consignment\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " consist\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " consistent\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.994166667 0.005833333\n", - "\n", - " consistently\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " consisting\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " consolidate\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.997500000 0.002500000\n", - "\n", - " consolidated\n", - "trainSet$label F T\n", - " ham 0.9972770592 0.0027229408\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " consolidation\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " constant\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " constantly\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " constitute\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9900000000 0.0100000000\n", - "\n", - " constitutes\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98416667 0.01583333\n", - "\n", - " construction\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.994166667 0.005833333\n", - "\n", - " constructive\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " construed\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.97416667 0.02583333\n", - "\n", - " consult\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " consultant\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " consultants\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " consultation\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9858333333 0.0141666667\n", - "\n", - " consulting\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.993333333 0.006666667\n", - "\n", - " consumer\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.991666667 0.008333333\n", - "\n", - " consumers\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.983333333 0.016666667\n", - "\n", - " consummated\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " consumption\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.994166667 0.005833333\n", - "\n", - " contact\n", - "trainSet$label F T\n", - " ham 0.9285228 0.0714772\n", - " spam 0.9375000 0.0625000\n", - "\n", - " contacted\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.993333333 0.006666667\n", - "\n", - " contacting\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.995000000 0.005000000\n", - "\n", - " contacts\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 0.996666667 0.003333333\n", - "\n", - " contain\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.991666667 0.008333333\n", - "\n", - " contained\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.979166667 0.020833333\n", - "\n", - " containing\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.994166667 0.005833333\n", - "\n", - " contains\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.965833333 0.034166667\n", - "\n", - " contemporary\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " content\n", - "trainSet$label F T\n", - " ham 0.98910824 0.01089176\n", - " spam 0.97500000 0.02500000\n", - "\n", - " contents\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.980000000 0.020000000\n", - "\n", - " context\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " continent\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " continue\n", - "trainSet$label F T\n", - " ham 0.96800545 0.03199455\n", - " spam 0.97250000 0.02750000\n", - "\n", - " continued\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 0.992500000 0.007500000\n", - "\n", - " continues\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.992500000 0.007500000\n", - "\n", - " continuing\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.990833333 0.009166667\n", - "\n", - " continuity\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " continuo\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " continuous\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.991666667 0.008333333\n", - "\n", - " continuously\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " contr\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " contract\n", - "trainSet$label F T\n", - " ham 0.87916950 0.12083050\n", - " spam 0.98666667 0.01333333\n", - "\n", - " contracted\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " contracting\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " contractor\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " contracts\n", - "trainSet$label F T\n", - " ham 0.962899932 0.037100068\n", - " spam 0.993333333 0.006666667\n", - "\n", - " contractual\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.993333333 0.006666667\n", - "\n", - " contradistinction\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " contrary\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995833333 0.004166667\n", - "\n", - " contrast\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " contribute\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.996666667 0.003333333\n", - "\n", - " contribution\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.996666667 0.003333333\n", - "\n", - " contributions\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.998333333 0.001666667\n", - "\n", - " contro\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " control\n", - "trainSet$label F T\n", - " ham 0.97106875 0.02893125\n", - " spam 0.97000000 0.03000000\n", - "\n", - " controlled\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " controller\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " controls\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.996666667 0.003333333\n", - "\n", - " controversial\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " convenience\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.993333333 0.006666667\n", - "\n", - " convenient\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.988333333 0.011666667\n", - "\n", - " conversation\n", - "trainSet$label F T\n", - " ham 0.9874063989 0.0125936011\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " conversion\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995000000 0.005000000\n", - "\n", - " convert\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995000000 0.005000000\n", - "\n", - " converted\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " converts\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " convivial\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " convoy\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " cony\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " coo\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " cook\n", - "trainSet$label F T\n", - " ham 0.991150442 0.008849558\n", - " spam 1.000000000 0.000000000\n", - "\n", - " cookbook\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " cooke\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " cool\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.995000000 0.005000000\n", - "\n", - " cooper\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " cooperation\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.995833333 0.004166667\n", - "\n", - " coordinate\n", - "trainSet$label F T\n", - " ham 0.99285228 0.00714772\n", - " spam 0.99750000 0.00250000\n", - "\n", - " coordinated\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " coordinating\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " coordination\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 1.000000000 0.000000000\n", - "\n", - " coordinator\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.997500000 0.002500000\n", - "\n", - " copano\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 1.000000000 0.000000000\n", - "\n", - " copanos\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " copied\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.998333333 0.001666667\n", - "\n", - " copier\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " copies\n", - "trainSet$label F T\n", - " ham 0.991150442 0.008849558\n", - " spam 0.997500000 0.002500000\n", - "\n", - " copper\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " copy\n", - "trainSet$label F T\n", - " ham 0.96970728 0.03029272\n", - " spam 0.94166667 0.05833333\n", - "\n", - " copying\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.996666667 0.003333333\n", - "\n", - " copyright\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99500000 0.00500000\n", - "\n", - " copyrighted\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " cora\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " coral\n", - "trainSet$label F T\n", - " ham 0.9952348536 0.0047651464\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " cordes\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " core\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.992500000 0.007500000\n", - "\n", - " corel\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.97666667 0.02333333\n", - "\n", - " corn\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " cornelius\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " corner\n", - "trainSet$label F T\n", - " ham 0.9972770592 0.0027229408\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " cornhusker\n", - "trainSet$label F T\n", - " ham 0.98264125 0.01735875\n", - " spam 1.00000000 0.00000000\n", - "\n", - " corp\n", - "trainSet$label F T\n", - " ham 0.7920354 0.2079646\n", - " spam 0.9825000 0.0175000\n", - "\n", - " corporate\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.982500000 0.017500000\n", - "\n", - " corporation\n", - "trainSet$label F T\n", - " ham 0.98230088 0.01769912\n", - " spam 0.98416667 0.01583333\n", - "\n", - " corporations\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.992500000 0.007500000\n", - "\n", - " corpus\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.997500000 0.002500000\n", - "\n", - " correct\n", - "trainSet$label F T\n", - " ham 0.95643295 0.04356705\n", - " spam 0.98916667 0.01083333\n", - "\n", - " corrected\n", - "trainSet$label F T\n", - " ham 0.9894486045 0.0105513955\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " correction\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 1.000000000 0.000000000\n", - "\n", - " corrections\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " correctly\n", - "trainSet$label F T\n", - " ham 0.9843430905 0.0156569095\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " correspond\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " correspondence\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.994166667 0.005833333\n", - "\n", - " correspondences\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " corresponding\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.998333333 0.001666667\n", - "\n", - " corridor\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " cory\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " cosby\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " cosmic\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " cost\n", - "trainSet$label F T\n", - " ham 0.98536419 0.01463581\n", - " spam 0.95083333 0.04916667\n", - "\n", - " costa\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " costilla\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " costing\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " costs\n", - "trainSet$label F T\n", - " ham 0.99285228 0.00714772\n", - " spam 0.98000000 0.02000000\n", - "\n", - " cote\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " cotten\n", - "trainSet$label F T\n", - " ham 0.95643295 0.04356705\n", - " spam 1.00000000 0.00000000\n", - "\n", - " cotton\n", - "trainSet$label F T\n", - " ham 0.97311096 0.02688904\n", - " spam 0.99750000 0.00250000\n", - "\n", - " cottonwood\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " cough\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " couid\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98833333 0.01166667\n", - "\n", - " couldn\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.990833333 0.009166667\n", - "\n", - " council\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " counsel\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " counselor\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " count\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.995000000 0.005000000\n", - "\n", - " counter\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.996666667 0.003333333\n", - "\n", - " counterfeit\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " counterpart\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " counterparties\n", - "trainSet$label F T\n", - " ham 0.99149081 0.00850919\n", - " spam 1.00000000 0.00000000\n", - "\n", - " counterparty\n", - "trainSet$label F T\n", - " ham 0.95336964 0.04663036\n", - " spam 1.00000000 0.00000000\n", - "\n", - " counties\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " counting\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " countries\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.990000000 0.010000000\n", - "\n", - " country\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.964166667 0.035833333\n", - "\n", - " counts\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " county\n", - "trainSet$label F T\n", - " ham 0.99149081 0.00850919\n", - " spam 0.99500000 0.00500000\n", - "\n", - " couple\n", - "trainSet$label F T\n", - " ham 0.982981620 0.017018380\n", - " spam 0.993333333 0.006666667\n", - "\n", - " coupon\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " course\n", - "trainSet$label F T\n", - " ham 0.991150442 0.008849558\n", - " spam 0.982500000 0.017500000\n", - "\n", - " courses\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " court\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.995833333 0.004166667\n", - "\n", - " courtesy\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " courtney\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " cousin\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " cousino\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 1.000000000 0.000000000\n", - "\n", - " couvillon\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " cove\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.998333333 0.001666667\n", - "\n", - " covenants\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " cover\n", - "trainSet$label F T\n", - " ham 0.9748128 0.0251872\n", - " spam 0.9850000 0.0150000\n", - "\n", - " coverage\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.994166667 0.005833333\n", - "\n", - " covered\n", - "trainSet$label F T\n", - " ham 0.9935330157 0.0064669843\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " covering\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.996666667 0.003333333\n", - "\n", - " covers\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.998333333 0.001666667\n", - "\n", - " coveted\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " covington\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " cow\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " cowboy\n", - "trainSet$label F T\n", - " ham 0.9959155888 0.0040844112\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " coworker\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " cowtrap\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " cox\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.998333333 0.001666667\n", - "\n", - " cpi\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " cpr\n", - "trainSet$label F T\n", - " ham 0.99012934 0.00987066\n", - " spam 1.00000000 0.00000000\n", - "\n", - " cps\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " cqo\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " crack\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " cradle\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " craft\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " crafted\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " crag\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " craig\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.998333333 0.001666667\n", - "\n", - " crania\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " crankcase\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " crap\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " crash\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " cravings\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " crazy\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " cream\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " create\n", - "trainSet$label F T\n", - " ham 0.96392103 0.03607897\n", - " spam 0.98666667 0.01333333\n", - "\n", - " created\n", - "trainSet$label F T\n", - " ham 0.95847515 0.04152485\n", - " spam 0.98916667 0.01083333\n", - "\n", - " creates\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " creating\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.995000000 0.005000000\n", - "\n", - " creation\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.998333333 0.001666667\n", - "\n", - " creative\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9641666667 0.0358333333\n", - "\n", - " credential\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " credit\n", - "trainSet$label F T\n", - " ham 0.991150442 0.008849558\n", - " spam 0.963333333 0.036666667\n", - "\n", - " credited\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.995833333 0.004166667\n", - "\n", - " creditors\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " credits\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " creek\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.995833333 0.004166667\n", - "\n", - " crew\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " crib\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " cried\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " cringe\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " crisis\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " critical\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 0.996666667 0.003333333\n", - "\n", - " crm\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " croatia\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " crodrig\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " crook\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " cross\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.993333333 0.006666667\n", - "\n", - " crossing\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " crosstex\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 1.000000000 0.000000000\n", - "\n", - " crow\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " crowd\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " crown\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " crt\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " crude\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.995833333 0.004166667\n", - "\n", - " cruise\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " cry\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " cryptogram\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " crystal\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " csgt\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " csgu\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " csikos\n", - "trainSet$label F T\n", - " ham 0.9874064 0.0125936\n", - " spam 1.0000000 0.0000000\n", - "\n", - " cst\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " ctprty\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " ctr\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " cuba\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " cubic\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " cuccia\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " cum\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " cummings\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " cummins\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " cumulative\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " cup\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " cure\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " curious\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " curran\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " currency\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " current\n", - "trainSet$label F T\n", - " ham 0.96221920 0.03778080\n", - " spam 0.95166667 0.04833333\n", - "\n", - " currentiy\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " currently\n", - "trainSet$label F T\n", - " ham 0.94417971 0.05582029\n", - " spam 0.96833333 0.03166667\n", - "\n", - " curricular\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " curry\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " curt\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " curtailment\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " curve\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.995833333 0.004166667\n", - "\n", - " custody\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " custom\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " customer\n", - "trainSet$label F T\n", - " ham 0.97004765 0.02995235\n", - " spam 0.97166667 0.02833333\n", - "\n", - " customers\n", - "trainSet$label F T\n", - " ham 0.98298162 0.01701838\n", - " spam 0.95666667 0.04333333\n", - "\n", - " customerservice\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.97166667 0.02833333\n", - "\n", - " customized\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " cut\n", - "trainSet$label F T\n", - " ham 0.986725664 0.013274336\n", - " spam 0.991666667 0.008333333\n", - "\n", - " cute\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " cuts\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " cutting\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.994166667 0.005833333\n", - "\n", - " cwtd\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " cyber\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " cycle\n", - "trainSet$label F T\n", - " ham 0.9976174268 0.0023825732\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " cyclen\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " cyclist\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " cyclobenzaprine\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " cyndie\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " cynergy\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " cynthia\n", - "trainSet$label F T\n", - " ham 0.976514636 0.023485364\n", - " spam 0.998333333 0.001666667\n", - "\n", - " dad\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " daddy\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995833333 0.004166667\n", - "\n", - " dagger\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " daigle\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " dailies\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " daily\n", - "trainSet$label F T\n", - " ham 0.90878148 0.09121852\n", - " spam 0.98666667 0.01333333\n", - "\n", - " dainty\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " dale\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 1.000000000 0.000000000\n", - "\n", - " dallas\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.997500000 0.002500000\n", - "\n", - " damage\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " damn\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " dan\n", - "trainSet$label F T\n", - " ham 0.9853641933 0.0146358067\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " dana\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.996666667 0.003333333\n", - "\n", - " dance\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " dandy\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " dang\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " danger\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " dangerous\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " daniel\n", - "trainSet$label F T\n", - " ham 0.9897889721 0.0102110279\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " daniels\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " danny\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.998333333 0.001666667\n", - "\n", - " dans\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " daren\n", - "trainSet$label F T\n", - " ham 0.7236215 0.2763785\n", - " spam 1.0000000 0.0000000\n", - "\n", - " darial\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " darialbr\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " darialfont\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " dark\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " darken\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " darpa\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " darrel\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 1.000000000 0.000000000\n", - "\n", - " darren\n", - "trainSet$label F T\n", - " ham 0.96085773 0.03914227\n", - " spam 1.00000000 0.00000000\n", - "\n", - " darrin\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " darron\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 1.000000000 0.000000000\n", - "\n", - " das\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " dashboard\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " dat\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.998333333 0.001666667\n", - "\n", - " data\n", - "trainSet$label F T\n", - " ham 0.97243022 0.02756978\n", - " spam 0.97500000 0.02500000\n", - "\n", - " database\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 0.985000000 0.015000000\n", - "\n", - " databases\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " datacenter\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " datasets\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " date\n", - "trainSet$label F T\n", - " ham 0.94588155 0.05411845\n", - " spam 0.96250000 0.03750000\n", - "\n", - " dated\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.996666667 0.003333333\n", - "\n", - " dates\n", - "trainSet$label F T\n", - " ham 0.9894486 0.0105514\n", - " spam 0.9975000 0.0025000\n", - "\n", - " dating\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.987500000 0.012500000\n", - "\n", - " daugherty\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " daughter\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.994166667 0.005833333\n", - "\n", - " dave\n", - "trainSet$label F T\n", - " ham 0.974472430 0.025527570\n", - " spam 0.998333333 0.001666667\n", - "\n", - " david\n", - "trainSet$label F T\n", - " ham 0.94349898 0.05650102\n", - " spam 0.99500000 0.00500000\n", - "\n", - " davidson\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " davies\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " davis\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.995000000 0.005000000\n", - "\n", - " dawes\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " dawn\n", - "trainSet$label F T\n", - " ham 0.9928522805 0.0071477195\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " day\n", - "trainSet$label F T\n", - " ham 0.85091899 0.14908101\n", - " spam 0.93583333 0.06416667\n", - "\n", - " daydream\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " days\n", - "trainSet$label F T\n", - " ham 0.93294758 0.06705242\n", - " spam 0.95416667 0.04583333\n", - "\n", - " daze\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " dba\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " dcent\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " dcenter\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " dcenterfont\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " dcenterstrongfont\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " dcl\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " ddsr\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " dead\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.995000000 0.005000000\n", - "\n", - " deadline\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.998333333 0.001666667\n", - "\n", - " deadlines\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " deadlock\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " deal\n", - "trainSet$label F T\n", - " ham 0.74948945 0.25051055\n", - " spam 0.98083333 0.01916667\n", - "\n", - " dealer\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.95916667 0.04083333\n", - "\n", - " dealers\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9733333333 0.0266666667\n", - "\n", - " dealing\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.997500000 0.002500000\n", - "\n", - " dealmaker\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " deals\n", - "trainSet$label F T\n", - " ham 0.90776038 0.09223962\n", - " spam 0.95750000 0.04250000\n", - "\n", - " dean\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " deanna\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " dear\n", - "trainSet$label F T\n", - " ham 0.99012934 0.00987066\n", - " spam 0.96833333 0.03166667\n", - "\n", - " death\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.986666667 0.013333333\n", - "\n", - " deaton\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " debacle\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " debate\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " debbie\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.997500000 0.002500000\n", - "\n", - " debenture\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " debit\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " deboisblanc\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " deborah\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " debra\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " debt\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.990000000 0.010000000\n", - "\n", - " debug\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " debussy\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " dec\n", - "trainSet$label F T\n", - " ham 0.96970728 0.03029272\n", - " spam 0.98250000 0.01750000\n", - "\n", - " decade\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " decades\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " decatherms\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " deceased\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " december\n", - "trainSet$label F T\n", - " ham 0.953029272 0.046970728\n", - " spam 0.991666667 0.008333333\n", - "\n", - " decertify\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " decide\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.998333333 0.001666667\n", - "\n", - " decided\n", - "trainSet$label F T\n", - " ham 0.989448604 0.010551396\n", - " spam 0.991666667 0.008333333\n", - "\n", - " deciding\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9750000000 0.0250000000\n", - "\n", - " decimal\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " decision\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.989166667 0.010833333\n", - "\n", - " decisions\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.995000000 0.005000000\n", - "\n", - " decisive\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " deck\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " declare\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " declined\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " decoration\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " decrease\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 0.997500000 0.002500000\n", - "\n", - " decreased\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " dedicate\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " dedicated\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.995000000 0.005000000\n", - "\n", - " deduct\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " deducted\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " deduction\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " deductions\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " deem\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " deemed\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " deep\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995833333 0.004166667\n", - "\n", - " deer\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.997500000 0.002500000\n", - "\n", - " default\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.995833333 0.004166667\n", - "\n", - " defeat\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " defense\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " defensive\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " deficiency\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " deficit\n", - "trainSet$label F T\n", - " ham 1.00 0.00\n", - " spam 0.99 0.01\n", - "\n", - " define\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " defined\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.995833333 0.004166667\n", - "\n", - " definite\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " definitely\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.998333333 0.001666667\n", - "\n", - " definition\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " definitive\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " defs\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " degeneracy\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " degradation\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " degree\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.990833333 0.009166667\n", - "\n", - " degrees\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.995833333 0.004166667\n", - "\n", - " del\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.997500000 0.002500000\n", - "\n", - " delainey\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " delay\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.993333333 0.006666667\n", - "\n", - " delays\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.993333333 0.006666667\n", - "\n", - " delete\n", - "trainSet$label F T\n", - " ham 0.991490810 0.008509190\n", - " spam 0.995833333 0.004166667\n", - "\n", - " deleted\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " deletion\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " delhi\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " delighted\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " delinvest\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " deliquescent\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " deliver\n", - "trainSet$label F T\n", - " ham 0.990810075 0.009189925\n", - " spam 0.990000000 0.010000000\n", - "\n", - " delivered\n", - "trainSet$label F T\n", - " ham 0.98230088 0.01769912\n", - " spam 0.98500000 0.01500000\n", - "\n", - " deliveries\n", - "trainSet$label F T\n", - " ham 0.9622191967 0.0377808033\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " delivering\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.998333333 0.001666667\n", - "\n", - " delivers\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.994166667 0.005833333\n", - "\n", - " delivery\n", - "trainSet$label F T\n", - " ham 0.95268890 0.04731110\n", - " spam 0.96833333 0.03166667\n", - "\n", - " dell\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.968333333 0.031666667\n", - "\n", - " delma\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " delphi\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.991666667 0.008333333\n", - "\n", - " delta\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " delux\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " deluxe\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " demagnify\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " demagogue\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " demand\n", - "trainSet$label F T\n", - " ham 0.97413206 0.02586794\n", - " spam 0.98583333 0.01416667\n", - "\n", - " demanding\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.997500000 0.002500000\n", - "\n", - " demands\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " demokritos\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.97333333 0.02666667\n", - "\n", - " demonstrate\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995000000 0.005000000\n", - "\n", - " demountable\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " den\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " denise\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " dennis\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.997500000 0.002500000\n", - "\n", - " denny\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " denoted\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " density\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " dent\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " dental\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " denton\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " denture\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " denver\n", - "trainSet$label F T\n", - " ham 0.9965963240 0.0034036760\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " department\n", - "trainSet$label F T\n", - " ham 0.99149081 0.00850919\n", - " spam 0.95500000 0.04500000\n", - "\n", - " departure\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.998333333 0.001666667\n", - "\n", - " depend\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " dependent\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " depending\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " deposit\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.990833333 0.009166667\n", - "\n", - " deposited\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9925000000 0.0075000000\n", - "\n", - " deposits\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " depressant\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " depressants\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " depression\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " dept\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.996666667 0.003333333\n", - "\n", - " depth\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99500000 0.00500000\n", - "\n", - " der\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.990833333 0.009166667\n", - "\n", - " deregulated\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " deregulation\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " derivatives\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " derive\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " derm\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " des\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " describe\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " described\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.994166667 0.005833333\n", - "\n", - " description\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.988333333 0.011666667\n", - "\n", - " deserve\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9916666667 0.0083333333\n", - "\n", - " design\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.985833333 0.014166667\n", - "\n", - " designated\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.995000000 0.005000000\n", - "\n", - " designed\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.977500000 0.022500000\n", - "\n", - " desire\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.992500000 0.007500000\n", - "\n", - " desired\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.996666667 0.003333333\n", - "\n", - " desires\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " desk\n", - "trainSet$label F T\n", - " ham 0.94962560 0.05037440\n", - " spam 0.98833333 0.01166667\n", - "\n", - " desks\n", - "trainSet$label F T\n", - " ham 0.99285228 0.00714772\n", - " spam 1.00000000 0.00000000\n", - "\n", - " desktop\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.993333333 0.006666667\n", - "\n", - " desmond\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " desperate\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " despite\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " destination\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.995833333 0.004166667\n", - "\n", - " detail\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 0.995000000 0.005000000\n", - "\n", - " detailed\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.989166667 0.010833333\n", - "\n", - " detailing\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " details\n", - "trainSet$label F T\n", - " ham 0.98162015 0.01837985\n", - " spam 0.93166667 0.06833333\n", - "\n", - " detect\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " determination\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " determine\n", - "trainSet$label F T\n", - " ham 0.98536419 0.01463581\n", - " spam 0.99500000 0.00500000\n", - "\n", - " determined\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.995000000 0.005000000\n", - "\n", - " determines\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " determining\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " detm\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " detonated\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " deveioped\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " deveioping\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " deveiopment\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " develop\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.992500000 0.007500000\n", - "\n", - " developed\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.987500000 0.012500000\n", - "\n", - " developer\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " developing\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.995000000 0.005000000\n", - "\n", - " development\n", - "trainSet$label F T\n", - " ham 0.98502383 0.01497617\n", - " spam 0.98000000 0.02000000\n", - "\n", - " developmental\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " developments\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.993333333 0.006666667\n", - "\n", - " develops\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " device\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9891666667 0.0108333333\n", - "\n", - " devices\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " devon\n", - "trainSet$label F T\n", - " ham 0.9870660313 0.0129339687\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " dew\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " dewbre\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " dewey\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " dewpoint\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " dfarmer\n", - "trainSet$label F T\n", - " ham 0.9748128 0.0251872\n", - " spam 1.0000000 0.0000000\n", - "\n", - " dfs\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " dheineke\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " dhttp\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " dia\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " diabetes\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " dial\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.989166667 0.010833333\n", - "\n", - " diamond\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.991666667 0.008333333\n", - "\n", - " diamonds\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " diana\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " diane\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.997500000 0.002500000\n", - "\n", - " dianne\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " dick\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.998333333 0.001666667\n", - "\n", - " dickinson\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " dickson\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " dictionary\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " didn\n", - "trainSet$label F T\n", - " ham 0.98502383 0.01497617\n", - " spam 0.98666667 0.01333333\n", - "\n", - " didnt\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " die\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " died\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.986666667 0.013333333\n", - "\n", - " diedrich\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " diet\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " dieting\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.990833333 0.009166667\n", - "\n", - " dietrich\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.997500000 0.002500000\n", - "\n", - " dietz\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " differ\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9633333333 0.0366666667\n", - "\n", - " difference\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 0.990833333 0.009166667\n", - "\n", - " differences\n", - "trainSet$label F T\n", - " ham 0.9969366916 0.0030633084\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " different\n", - "trainSet$label F T\n", - " ham 0.97515317 0.02484683\n", - " spam 0.98083333 0.01916667\n", - "\n", - " differential\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " differently\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 1.000000000 0.000000000\n", - "\n", - " difficult\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.994166667 0.005833333\n", - "\n", - " difficulties\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " difficulty\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " diffuse\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " diflucan\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " dig\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " digging\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " digital\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.98166667 0.01833333\n", - "\n", - " diiigence\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " diligence\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.980833333 0.019166667\n", - "\n", - " diligent\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " dilute\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " dimension\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " dimetapp\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " din\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " dinari\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " dinner\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 1.000000000 0.000000000\n", - "\n", - " dior\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " diploma\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " diplomatic\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " dir\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " direct\n", - "trainSet$label F T\n", - " ham 0.97651464 0.02348536\n", - " spam 0.97583333 0.02416667\n", - "\n", - " directed\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 1.000000000 0.000000000\n", - "\n", - " direction\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.997500000 0.002500000\n", - "\n", - " directions\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " directly\n", - "trainSet$label F T\n", - " ham 0.98332199 0.01667801\n", - " spam 0.98333333 0.01666667\n", - "\n", - " director\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.973333333 0.026666667\n", - "\n", - " directors\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.993333333 0.006666667\n", - "\n", - " directory\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " dirty\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " dis\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " disappear\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " disappointed\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " disaster\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " discioses\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " discipline\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " disclaimer\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " disclose\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.991666667 0.008333333\n", - "\n", - " discloses\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.990833333 0.009166667\n", - "\n", - " disclosure\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.998333333 0.001666667\n", - "\n", - " discontinue\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " discount\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.976666667 0.023333333\n", - "\n", - " discounted\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " discounts\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.990000000 0.010000000\n", - "\n", - " discover\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9925000000 0.0075000000\n", - "\n", - " discovered\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.988333333 0.011666667\n", - "\n", - " discovery\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " discreet\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98333333 0.01666667\n", - "\n", - " discreetly\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " discrepancies\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 1.000000000 0.000000000\n", - "\n", - " discrepancy\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 1.000000000 0.000000000\n", - "\n", - " discrete\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98833333 0.01166667\n", - "\n", - " discretion\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " discuss\n", - "trainSet$label F T\n", - " ham 0.97651464 0.02348536\n", - " spam 0.99750000 0.00250000\n", - "\n", - " discussed\n", - "trainSet$label F T\n", - " ham 0.987746767 0.012253233\n", - " spam 0.998333333 0.001666667\n", - "\n", - " discussing\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " discussion\n", - "trainSet$label F T\n", - " ham 0.987406399 0.012593601\n", - " spam 0.995833333 0.004166667\n", - "\n", - " discussions\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 0.978333333 0.021666667\n", - "\n", - " disease\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9925000000 0.0075000000\n", - "\n", - " dishwasher\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " disk\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " dislike\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " dismantle\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " disolve\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " disorders\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " dispatch\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " display\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " displayed\n", - "trainSet$label F T\n", - " ham 0.9969366916 0.0030633084\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " disposal\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " disposition\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " dispute\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " disregard\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 1.000000000 0.000000000\n", - "\n", - " dissemination\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " dissolve\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " distance\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.995833333 0.004166667\n", - "\n", - " distribute\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.991666667 0.008333333\n", - "\n", - " distributed\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.996666667 0.003333333\n", - "\n", - " distribution\n", - "trainSet$label F T\n", - " ham 0.98740640 0.01259360\n", - " spam 0.98666667 0.01333333\n", - "\n", - " distributor\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " distributorjebel\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9825 0.0175\n", - "\n", - " distributors\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " district\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " ditch\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " div\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " diverse\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.991666667 0.008333333\n", - "\n", - " diversified\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " divert\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " divide\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " divided\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " dividend\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " division\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.993333333 0.006666667\n", - "\n", - " dixie\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " dizzy\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " dleftfont\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " dleftstrongemfont\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " dobb\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " dobbin\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " dobson\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " doc\n", - "trainSet$label F T\n", - " ham 0.964601770 0.035398230\n", - " spam 0.995833333 0.004166667\n", - "\n", - " dock\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " doctor\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.962500000 0.037500000\n", - "\n", - " doctors\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9758333333 0.0241666667\n", - "\n", - " document\n", - "trainSet$label F T\n", - " ham 0.985704561 0.014295439\n", - " spam 0.995833333 0.004166667\n", - "\n", - " documentation\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.997500000 0.002500000\n", - "\n", - " documented\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " documents\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.986666667 0.013333333\n", - "\n", - " dodge\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " doehrman\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " doesn\n", - "trainSet$label F T\n", - " ham 0.98944860 0.01055140\n", - " spam 0.98333333 0.01666667\n", - "\n", - " doesnt\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " dog\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9908333333 0.0091666667\n", - "\n", - " doilars\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " dol\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " doldrums\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " doll\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " dollar\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.986666667 0.013333333\n", - "\n", - " dollars\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.925000000 0.075000000\n", - "\n", - " dolphin\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.998333333 0.001666667\n", - "\n", - " domestic\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.992500000 0.007500000\n", - "\n", - " dominant\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " don\n", - "trainSet$label F T\n", - " ham 0.92545950 0.07454050\n", - " spam 0.91916667 0.08083333\n", - "\n", - " donald\n", - "trainSet$label F T\n", - " ham 0.972430225 0.027569775\n", - " spam 0.998333333 0.001666667\n", - "\n", - " donate\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " donation\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " donations\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " done\n", - "trainSet$label F T\n", - " ham 0.95439074 0.04560926\n", - " spam 0.98500000 0.01500000\n", - "\n", - " donna\n", - "trainSet$label F T\n", - " ham 0.9741320626 0.0258679374\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " donnie\n", - "trainSet$label F T\n", - " ham 0.9972770592 0.0027229408\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " donor\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " dont\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9891666667 0.0108333333\n", - "\n", - " doodle\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " door\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.970833333 0.029166667\n", - "\n", - " doorstep\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " dora\n", - "trainSet$label F T\n", - " ham 0.9976174268 0.0023825732\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " dorcheus\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 1.000000000 0.000000000\n", - "\n", - " dormant\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " dosage\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " dose\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98916667 0.01083333\n", - "\n", - " dot\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " double\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.988333333 0.011666667\n", - "\n", - " doubt\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.989166667 0.010833333\n", - "\n", - " doug\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.997500000 0.002500000\n", - "\n", - " douglas\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.998333333 0.001666667\n", - "\n", - " douse\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " dovekie\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " dow\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 0.992500000 0.007500000\n", - "\n", - " download\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.975833333 0.024166667\n", - "\n", - " downloadable\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " downloaded\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " downloading\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " downloads\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9916666667 0.0083333333\n", - "\n", - " downstream\n", - "trainSet$label F T\n", - " ham 0.9962559564 0.0037440436\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " downtime\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " downtown\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.996666667 0.003333333\n", - "\n", - " doyle\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " dozen\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " draft\n", - "trainSet$label F T\n", - " ham 0.98672566 0.01327434\n", - " spam 0.99750000 0.00250000\n", - "\n", - " drafted\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " drafts\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " draftsman\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " dragica\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " dragon\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " dramatic\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " dramatically\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " draw\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9775000000 0.0225000000\n", - "\n", - " drawing\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " drawn\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9925000000 0.0075000000\n", - "\n", - " draws\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " dream\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " dreams\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " dreamwaver\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.990833333 0.009166667\n", - "\n", - " dreamweaver\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " dress\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " drew\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " dreyfus\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " dreyfuss\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " drill\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.996666667 0.003333333\n", - "\n", - " drilled\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " drilling\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.995000000 0.005000000\n", - "\n", - " drink\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9916666667 0.0083333333\n", - "\n", - " drinks\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9866666667 0.0133333333\n", - "\n", - " driscoll\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " drive\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.968333333 0.031666667\n", - "\n", - " driven\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " driver\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.997500000 0.002500000\n", - "\n", - " drivers\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " drives\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " driving\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.995833333 0.004166667\n", - "\n", - " drn\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " drop\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.995000000 0.005000000\n", - "\n", - " dropped\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.993333333 0.006666667\n", - "\n", - " drops\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " drug\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9775 0.0225\n", - "\n", - " drugs\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9525 0.0475\n", - "\n", - " dry\n", - "trainSet$label F T\n", - " ham 0.9952348536 0.0047651464\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " dsco\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " dscottl\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " dsl\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " dtd\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " dth\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 1.000000000 0.000000000\n", - "\n", - " dtomi\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " dual\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " duane\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " duck\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " ducote\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " dudley\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.998333333 0.001666667\n", - "\n", - " due\n", - "trainSet$label F T\n", - " ham 0.95302927 0.04697073\n", - " spam 0.94833333 0.05166667\n", - "\n", - " duke\n", - "trainSet$label F T\n", - " ham 0.962899932 0.037100068\n", - " spam 0.998333333 0.001666667\n", - "\n", - " dulce\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 1.000000000 0.000000000\n", - "\n", - " dump\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " dune\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " dunn\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " duns\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " dupe\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " duplicate\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.995000000 0.005000000\n", - "\n", - " dupont\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.997500000 0.002500000\n", - "\n", - " durable\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " durango\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " duration\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " durham\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " durrell\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " dustin\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " dutch\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.995833333 0.004166667\n", - "\n", - " duties\n", - "trainSet$label F T\n", - " ham 0.9976174268 0.0023825732\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " duty\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.96916667 0.03083333\n", - "\n", - " dvd\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.987500000 0.012500000\n", - "\n", - " dvds\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " dvn\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 1.000000000 0.000000000\n", - "\n", - " dwight\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " dwl\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " dyersdale\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " dying\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " dynamic\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " dynegy\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 1.000000000 0.000000000\n", - "\n", - " dysfunction\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.990833333 0.009166667\n", - "\n", - " dystrophy\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " eading\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " eagle\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " ear\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " earl\n", - "trainSet$label F T\n", - " ham 0.98162015 0.01837985\n", - " spam 0.99750000 0.00250000\n", - "\n", - " earlier\n", - "trainSet$label F T\n", - " ham 0.988427502 0.011572498\n", - " spam 0.995833333 0.004166667\n", - "\n", - " earliest\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.998333333 0.001666667\n", - "\n", - " early\n", - "trainSet$label F T\n", - " ham 0.98366236 0.01633764\n", - " spam 0.98916667 0.01083333\n", - "\n", - " earn\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9925000000 0.0075000000\n", - "\n", - " earned\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.995000000 0.005000000\n", - "\n", - " earnest\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " earning\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9900000000 0.0100000000\n", - "\n", - " earnings\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.995000000 0.005000000\n", - "\n", - " earth\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.995833333 0.004166667\n", - "\n", - " earthlink\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " earthquake\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " ease\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9925000000 0.0075000000\n", - "\n", - " easement\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " eases\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " easier\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.996666667 0.003333333\n", - "\n", - " easily\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.984166667 0.015833333\n", - "\n", - " east\n", - "trainSet$label F T\n", - " ham 0.98366236 0.01633764\n", - " spam 0.98416667 0.01583333\n", - "\n", - " easter\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.997500000 0.002500000\n", - "\n", - " eastern\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " eastrans\n", - "trainSet$label F T\n", - " ham 0.96528251 0.03471749\n", - " spam 1.00000000 0.00000000\n", - "\n", - " easttexas\n", - "trainSet$label F T\n", - " ham 0.99149081 0.00850919\n", - " spam 1.00000000 0.00000000\n", - "\n", - " easy\n", - "trainSet$label F T\n", - " ham 0.99149081 0.00850919\n", - " spam 0.94500000 0.05500000\n", - "\n", - " eat\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.991666667 0.008333333\n", - "\n", - " ebay\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " ebb\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.996666667 0.003333333\n", - "\n", - " ebs\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ecf\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " echterhoff\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ecom\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ecommerce\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " econnect\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " economic\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.993333333 0.006666667\n", - "\n", - " economical\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " economics\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.998333333 0.001666667\n", - "\n", - " economy\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.996666667 0.003333333\n", - "\n", - " ecourse\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " ecs\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " ect\n", - "trainSet$label F T\n", - " ham 0.7549353 0.2450647\n", - " spam 0.9975000 0.0025000\n", - "\n", - " ects\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " eddie\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.996666667 0.003333333\n", - "\n", - " eddy\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " edgar\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " edge\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.991666667 0.008333333\n", - "\n", - " edi\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 1.000000000 0.000000000\n", - "\n", - " edinburgh\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " edison\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " edit\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.994166667 0.005833333\n", - "\n", - " edited\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " edith\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " edition\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.983333333 0.016666667\n", - "\n", - " editor\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " editorial\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " edmondson\n", - "trainSet$label F T\n", - " ham 0.98978897 0.01021103\n", - " spam 1.00000000 0.00000000\n", - "\n", - " edmund\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " edna\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " eds\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " edu\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " educated\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " education\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.990000000 0.010000000\n", - "\n", - " educational\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " edward\n", - "trainSet$label F T\n", - " ham 0.978897209 0.021102791\n", - " spam 0.996666667 0.003333333\n", - "\n", - " edwards\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " eecc\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " eel\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " ees\n", - "trainSet$label F T\n", - " ham 0.99012934 0.00987066\n", - " spam 1.00000000 0.00000000\n", - "\n", - " eex\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 1.000000000 0.000000000\n", - "\n", - " eff\n", - "trainSet$label F T\n", - " ham 0.9945541184 0.0054458816\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " efface\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " effect\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 0.988333333 0.011666667\n", - "\n", - " effected\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " effective\n", - "trainSet$label F T\n", - " ham 0.91865214 0.08134786\n", - " spam 0.96333333 0.03666667\n", - "\n", - " effectively\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.995833333 0.004166667\n", - "\n", - " effectiveness\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " effects\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9816666667 0.0183333333\n", - "\n", - " effervescent\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " efficiency\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " efficient\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.992500000 0.007500000\n", - "\n", - " efficiently\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " effloresce\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " effort\n", - "trainSet$label F T\n", - " ham 0.98978897 0.01021103\n", - " spam 0.97166667 0.02833333\n", - "\n", - " efforts\n", - "trainSet$label F T\n", - " ham 0.98978897 0.01021103\n", - " spam 0.99000000 0.01000000\n", - "\n", - " egal\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " egf\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " egg\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " egm\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " egmnom\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 1.000000000 0.000000000\n", - "\n", - " egpfc\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 1.000000000 0.000000000\n", - "\n", - " egypt\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " ehronline\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " eiben\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 1.000000000 0.000000000\n", - "\n", - " eight\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9866666667 0.0133333333\n", - "\n", - " eighteen\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " eileen\n", - "trainSet$label F T\n", - " ham 0.98264125 0.01735875\n", - " spam 1.00000000 0.00000000\n", - "\n", - " ein\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " either\n", - "trainSet$label F T\n", - " ham 0.96085773 0.03914227\n", - " spam 0.98000000 0.02000000\n", - "\n", - " ejaculation\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " ejrhxw\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " elaine\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " elastic\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " elder\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " elected\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 1.000000000 0.000000000\n", - "\n", - " election\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.998333333 0.001666667\n", - "\n", - " elections\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " electric\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.996666667 0.003333333\n", - "\n", - " electrical\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.992500000 0.007500000\n", - "\n", - " electricity\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.995000000 0.005000000\n", - "\n", - " electrolytic\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " electronic\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.994166667 0.005833333\n", - "\n", - " electronically\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " electronics\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " element\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " elements\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " elena\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " elgin\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " elide\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " elifrits\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " eligibility\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " eligible\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " eliminate\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.996666667 0.003333333\n", - "\n", - " eliminating\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " elimination\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " elisabeth\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " elite\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " elizabeth\n", - "trainSet$label F T\n", - " ham 0.9894486 0.0105514\n", - " spam 0.9975000 0.0025000\n", - "\n", - " ellen\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " ellenberger\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " elliott\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ellipsoid\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " ellis\n", - "trainSet$label F T\n", - " ham 0.9965963240 0.0034036760\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " ellison\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " eloise\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " elpaso\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " elsa\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 1.000000000 0.000000000\n", - "\n", - " else\n", - "trainSet$label F T\n", - " ham 0.97345133 0.02654867\n", - " spam 0.98666667 0.01333333\n", - "\n", - " elsewhere\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " elsie\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " elwood\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ema\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " emai\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " email\n", - "trainSet$label F T\n", - " ham 0.9390742 0.0609258\n", - " spam 0.8183333 0.1816667\n", - "\n", - " emails\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.978333333 0.021666667\n", - "\n", - " embargoes\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " embarrassment\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " embassy\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.996666667 0.003333333\n", - "\n", - " embedded\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " emerald\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " emergency\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.998333333 0.001666667\n", - "\n", - " emerging\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9883333333 0.0116666667\n", - "\n", - " emerson\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " emile\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " emily\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " emirates\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.97416667 0.02583333\n", - "\n", - " emission\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " emma\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " emory\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " emotional\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " emphasis\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " empire\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " employee\n", - "trainSet$label F T\n", - " ham 0.9863853 0.0136147\n", - " spam 1.0000000 0.0000000\n", - "\n", - " employees\n", - "trainSet$label F T\n", - " ham 0.979237577 0.020762423\n", - " spam 0.995833333 0.004166667\n", - "\n", - " employer\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " employers\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " employment\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " empty\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.995833333 0.004166667\n", - "\n", - " emv\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ena\n", - "trainSet$label F T\n", - " ham 0.94383935 0.05616065\n", - " spam 1.00000000 0.00000000\n", - "\n", - " enabied\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " enable\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.994166667 0.005833333\n", - "\n", - " enabled\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " enables\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " enabling\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " enbridge\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " encarta\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " encina\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " encoding\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9883333333 0.0116666667\n", - "\n", - " encounter\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " encourage\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.995833333 0.004166667\n", - "\n", - " encouraged\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " encryption\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " encyclopedia\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " end\n", - "trainSet$label F T\n", - " ham 0.95677332 0.04322668\n", - " spam 0.97166667 0.02833333\n", - "\n", - " ended\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 1.000000000 0.000000000\n", - "\n", - " endgame\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " ending\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.998333333 0.001666667\n", - "\n", - " ends\n", - "trainSet$label F T\n", - " ham 0.9969366916 0.0030633084\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " ene\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " enerfin\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 1.000000000 0.000000000\n", - "\n", - " energy\n", - "trainSet$label F T\n", - " ham 0.91558884 0.08441116\n", - " spam 0.96166667 0.03833333\n", - "\n", - " enfant\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " enforceable\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " engage\n", - "trainSet$label F T\n", - " ham 0.9938733833 0.0061266167\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " engaged\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " engel\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.998333333 0.001666667\n", - "\n", - " engine\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " engineer\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.995833333 0.004166667\n", - "\n", - " engineering\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " england\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.997500000 0.002500000\n", - "\n", - " english\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.990833333 0.009166667\n", - "\n", - " enhance\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.991666667 0.008333333\n", - "\n", - " enhanced\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.990833333 0.009166667\n", - "\n", - " enhancement\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.992500000 0.007500000\n", - "\n", - " enhancements\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.998333333 0.001666667\n", - "\n", - " enhancing\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995833333 0.004166667\n", - "\n", - " enjoy\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.978333333 0.021666667\n", - "\n", - " enjoyed\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " enjoying\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " enlarge\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " enlargement\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.990833333 0.009166667\n", - "\n", - " ennium\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " enom\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " enormous\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " enough\n", - "trainSet$label F T\n", - " ham 0.98944860 0.01055140\n", - " spam 0.97916667 0.02083333\n", - "\n", - " enquiries\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9725 0.0275\n", - "\n", - " enroll\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " enrolled\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " enrollment\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " enron\n", - "trainSet$label F T\n", - " ham 0.602791 0.397209\n", - " spam 1.000000 0.000000\n", - "\n", - " enronavailsl\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " enronavailso\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 1.000000000 0.000000000\n", - "\n", - " enrononline\n", - "trainSet$label F T\n", - " ham 0.991150442 0.008849558\n", - " spam 1.000000000 0.000000000\n", - "\n", - " enronoptions\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " enronxgate\n", - "trainSet$label F T\n", - " ham 0.98093941 0.01906059\n", - " spam 1.00000000 0.00000000\n", - "\n", - " enserch\n", - "trainSet$label F T\n", - " ham 0.976855 0.023145\n", - " spam 1.000000 0.000000\n", - "\n", - " ensure\n", - "trainSet$label F T\n", - " ham 0.98196052 0.01803948\n", - " spam 0.98916667 0.01083333\n", - "\n", - " ent\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " enter\n", - "trainSet$label F T\n", - " ham 0.97991831 0.02008169\n", - " spam 0.97666667 0.02333333\n", - "\n", - " entered\n", - "trainSet$label F T\n", - " ham 0.96119809 0.03880191\n", - " spam 0.98333333 0.01666667\n", - "\n", - " entergy\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " entering\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.997500000 0.002500000\n", - "\n", - " enterprise\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.982500000 0.017500000\n", - "\n", - " enterprises\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99500000 0.00500000\n", - "\n", - " enters\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " entertainment\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.984166667 0.015833333\n", - "\n", - " entex\n", - "trainSet$label F T\n", - " ham 0.98196052 0.01803948\n", - " spam 1.00000000 0.00000000\n", - "\n", - " entire\n", - "trainSet$label F T\n", - " ham 0.98672566 0.01327434\n", - " spam 0.98416667 0.01583333\n", - "\n", - " entirely\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " entities\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.994166667 0.005833333\n", - "\n", - " entitled\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " entity\n", - "trainSet$label F T\n", - " ham 0.98978897 0.01021103\n", - " spam 0.99750000 0.00250000\n", - "\n", - " entrance\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " entries\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.998333333 0.001666667\n", - "\n", - " entry\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 0.993333333 0.006666667\n", - "\n", - " envelope\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " environment\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.989166667 0.010833333\n", - "\n", - " environmental\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.992500000 0.007500000\n", - "\n", - " environmentally\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " environments\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " enw\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " eog\n", - "trainSet$label F T\n", - " ham 0.99285228 0.00714772\n", - " spam 1.00000000 0.00000000\n", - "\n", - " eogi\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " eogresources\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " eol\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 1.000000000 0.000000000\n", - "\n", - " eops\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " eott\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " epa\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " epgt\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 1.000000000 0.000000000\n", - "\n", - " epowered\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " epson\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9700000000 0.0300000000\n", - "\n", - " equal\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.995833333 0.004166667\n", - "\n", - " equally\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.995833333 0.004166667\n", - "\n", - " equipment\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.992500000 0.007500000\n", - "\n", - " equistar\n", - "trainSet$label F T\n", - " ham 0.98502383 0.01497617\n", - " spam 1.00000000 0.00000000\n", - "\n", - " equity\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.985833333 0.014166667\n", - "\n", - " equiv\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " equiva\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " equivalent\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995833333 0.004166667\n", - "\n", - " equivalents\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.990833333 0.009166667\n", - "\n", - " era\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " ercot\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " erect\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " erectile\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " erection\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.985 0.015\n", - "\n", - " erections\n", - "trainSet$label F T\n", - " ham 1.00 0.00\n", - " spam 0.98 0.02\n", - "\n", - " erhc\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " eric\n", - "trainSet$label F T\n", - " ham 0.987066031 0.012933969\n", - " spam 0.996666667 0.003333333\n", - "\n", - " erich\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " ericsson\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " erik\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " erms\n", - "trainSet$label F T\n", - " ham 0.9976174268 0.0023825732\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " ernest\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " ernie\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " error\n", - "trainSet$label F T\n", - " ham 0.98162015 0.01837985\n", - " spam 0.96333333 0.03666667\n", - "\n", - " erroring\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " errors\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 1.000000000 0.000000000\n", - "\n", - " esgic\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " eshopkey\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " especially\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.993333333 0.006666667\n", - "\n", - " espinoza\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " espn\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " ess\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995833333 0.004166667\n", - "\n", - " essential\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99500000 0.00500000\n", - "\n", - " essentially\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " est\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.986666667 0.013333333\n", - "\n", - " establish\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.995000000 0.005000000\n", - "\n", - " established\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.993333333 0.006666667\n", - "\n", - " establishing\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " establishment\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " estate\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.993333333 0.006666667\n", - "\n", - " esteem\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " esther\n", - "trainSet$label F T\n", - " ham 0.99285228 0.00714772\n", - " spam 1.00000000 0.00000000\n", - "\n", - " estimate\n", - "trainSet$label F T\n", - " ham 0.98570456 0.01429544\n", - " spam 0.99500000 0.00500000\n", - "\n", - " estimated\n", - "trainSet$label F T\n", - " ham 0.987066031 0.012933969\n", - " spam 0.991666667 0.008333333\n", - "\n", - " estimates\n", - "trainSet$label F T\n", - " ham 0.98706603 0.01293397\n", - " spam 0.97666667 0.02333333\n", - "\n", - " estimating\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " estoppel\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " etc\n", - "trainSet$label F T\n", - " ham 0.98025868 0.01974132\n", - " spam 0.98250000 0.01750000\n", - "\n", - " etgs\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ethane\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " ethernet\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " etoco\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ets\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " etter\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " eugene\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.995833333 0.004166667\n", - "\n", - " eugenio\n", - "trainSet$label F T\n", - " ham 0.9962559564 0.0037440436\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " eur\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " euridyce\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " euro\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " europe\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.987500000 0.012500000\n", - "\n", - " european\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.985833333 0.014166667\n", - "\n", - " euros\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " evaluate\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " evaluated\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " evaluation\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " evans\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " eve\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " evelyn\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " even\n", - "trainSet$label F T\n", - " ham 0.97787611 0.02212389\n", - " spam 0.91750000 0.08250000\n", - "\n", - " evening\n", - "trainSet$label F T\n", - " ham 0.989448604 0.010551396\n", - " spam 0.996666667 0.003333333\n", - "\n", - " event\n", - "trainSet$label F T\n", - " ham 0.99285228 0.00714772\n", - " spam 0.99250000 0.00750000\n", - "\n", - " events\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.965833333 0.034166667\n", - "\n", - " eventually\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.996666667 0.003333333\n", - "\n", - " ever\n", - "trainSet$label F T\n", - " ham 0.98910824 0.01089176\n", - " spam 0.95333333 0.04666667\n", - "\n", - " evergreen\n", - "trainSet$label F T\n", - " ham 0.990810075 0.009189925\n", - " spam 0.997500000 0.002500000\n", - "\n", - " everthything\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " every\n", - "trainSet$label F T\n", - " ham 0.97583390 0.02416610\n", - " spam 0.93583333 0.06416667\n", - "\n", - " everybody\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.995833333 0.004166667\n", - "\n", - " everyday\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.994166667 0.005833333\n", - "\n", - " everyone\n", - "trainSet$label F T\n", - " ham 0.97277059 0.02722941\n", - " spam 0.97416667 0.02583333\n", - "\n", - " everything\n", - "trainSet$label F T\n", - " ham 0.98400272 0.01599728\n", - " spam 0.97333333 0.02666667\n", - "\n", - " everywhere\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " evidence\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 1.000000000 0.000000000\n", - "\n", - " evil\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " evra\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " ews\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " exact\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.992500000 0.007500000\n", - "\n", - " exactly\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.960833333 0.039166667\n", - "\n", - " exam\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " examine\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " exampies\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.990833333 0.009166667\n", - "\n", - " example\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 0.991666667 0.008333333\n", - "\n", - " examples\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9841666667 0.0158333333\n", - "\n", - " exceed\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.995833333 0.004166667\n", - "\n", - " exceeding\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " excel\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.996666667 0.003333333\n", - "\n", - " excellent\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.995833333 0.004166667\n", - "\n", - " except\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 0.995833333 0.004166667\n", - "\n", - " exception\n", - "trainSet$label F T\n", - " ham 0.988767869 0.011232131\n", - " spam 0.998333333 0.001666667\n", - "\n", - " exceptional\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " exceptions\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 1.000000000 0.000000000\n", - "\n", - " excess\n", - "trainSet$label F T\n", - " ham 0.98774677 0.01225323\n", - " spam 0.99000000 0.01000000\n", - "\n", - " exchange\n", - "trainSet$label F T\n", - " ham 0.9863853 0.0136147\n", - " spam 0.9625000 0.0375000\n", - "\n", - " excite\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.995833333 0.004166667\n", - "\n", - " excited\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.995833333 0.004166667\n", - "\n", - " exciting\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.990833333 0.009166667\n", - "\n", - " exciusive\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " exclamation\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " excluding\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " exclusions\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " exclusive\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.97583333 0.02416667\n", - "\n", - " exclusively\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " excuria\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " excuse\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " exe\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.996666667 0.003333333\n", - "\n", - " exec\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " execute\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.995833333 0.004166667\n", - "\n", - " executed\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 1.000000000 0.000000000\n", - "\n", - " executing\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " execution\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.998333333 0.001666667\n", - "\n", - " executive\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.992500000 0.007500000\n", - "\n", - " executives\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " exempt\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.994166667 0.005833333\n", - "\n", - " exercise\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.98583333 0.01416667\n", - "\n", - " exercises\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " exhibit\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " exist\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " existing\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 0.980833333 0.019166667\n", - "\n", - " exists\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.997500000 0.002500000\n", - "\n", - " exit\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " expand\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.995000000 0.005000000\n", - "\n", - " expanded\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.995833333 0.004166667\n", - "\n", - " expanding\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.990833333 0.009166667\n", - "\n", - " expansion\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " expatriate\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " expatriates\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " expe\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " expect\n", - "trainSet$label F T\n", - " ham 0.98706603 0.01293397\n", - " spam 0.97500000 0.02500000\n", - "\n", - " expectations\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.973333333 0.026666667\n", - "\n", - " expected\n", - "trainSet$label F T\n", - " ham 0.98434309 0.01565691\n", - " spam 0.97916667 0.02083333\n", - "\n", - " expecting\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.995000000 0.005000000\n", - "\n", - " expects\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.978333333 0.021666667\n", - "\n", - " expedia\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " expedite\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " expedited\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " expense\n", - "trainSet$label F T\n", - " ham 0.989788972 0.010211028\n", - " spam 0.993333333 0.006666667\n", - "\n", - " expenses\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.983333333 0.016666667\n", - "\n", - " expensive\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9833333333 0.0166666667\n", - "\n", - " experience\n", - "trainSet$label F T\n", - " ham 0.99012934 0.00987066\n", - " spam 0.97083333 0.02916667\n", - "\n", - " experienced\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.987500000 0.012500000\n", - "\n", - " experiences\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.997500000 0.002500000\n", - "\n", - " experiencing\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.995833333 0.004166667\n", - "\n", - " expert\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9858333333 0.0141666667\n", - "\n", - " expertise\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " experts\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.990833333 0.009166667\n", - "\n", - " expiration\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.997500000 0.002500000\n", - "\n", - " expire\n", - "trainSet$label F T\n", - " ham 0.9976174268 0.0023825732\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " expired\n", - "trainSet$label F T\n", - " ham 0.982981620 0.017018380\n", - " spam 0.996666667 0.003333333\n", - "\n", - " expires\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.997500000 0.002500000\n", - "\n", - " explain\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.995000000 0.005000000\n", - "\n", - " explained\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.997500000 0.002500000\n", - "\n", - " explaining\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " explanation\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " explanations\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " explicit\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " explode\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9783333333 0.0216666667\n", - "\n", - " exploded\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " exploration\n", - "trainSet$label F T\n", - " ham 0.989788972 0.010211028\n", - " spam 0.994166667 0.005833333\n", - "\n", - " explore\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " explored\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " explorer\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.995833333 0.004166667\n", - "\n", - " explosion\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " explosive\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " explosives\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " exponential\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " export\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.96916667 0.03083333\n", - "\n", - " exports\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " exposure\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " express\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.971666667 0.028333333\n", - "\n", - " expressed\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.990000000 0.010000000\n", - "\n", - " expressions\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " ext\n", - "trainSet$label F T\n", - " ham 0.986725664 0.013274336\n", - " spam 0.996666667 0.003333333\n", - "\n", - " extend\n", - "trainSet$label F T\n", - " ham 0.976514636 0.023485364\n", - " spam 0.996666667 0.003333333\n", - "\n", - " extended\n", - "trainSet$label F T\n", - " ham 0.975833901 0.024166099\n", - " spam 0.993333333 0.006666667\n", - "\n", - " extender\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " extending\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " extends\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " extension\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 1.000000000 0.000000000\n", - "\n", - " extensive\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.993333333 0.006666667\n", - "\n", - " extent\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.995000000 0.005000000\n", - "\n", - " extenuate\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " external\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.992500000 0.007500000\n", - "\n", - " extra\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.982500000 0.017500000\n", - "\n", - " extract\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " extravaganza\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " extreme\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " extremely\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.986666667 0.013333333\n", - "\n", - " exxon\n", - "trainSet$label F T\n", - " ham 0.987406399 0.012593601\n", - " spam 0.998333333 0.001666667\n", - "\n", - " exxonkaty\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " exxonmobil\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " eye\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.990000000 0.010000000\n", - "\n", - " eyes\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.990000000 0.010000000\n", - "\n", - " eyesight\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " fabra\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " fabulous\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " fac\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " face\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.980000000 0.020000000\n", - "\n", - " faced\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " facilitate\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.996666667 0.003333333\n", - "\n", - " facilitation\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " facilities\n", - "trainSet$label F T\n", - " ham 0.988767869 0.011232131\n", - " spam 0.996666667 0.003333333\n", - "\n", - " facility\n", - "trainSet$label F T\n", - " ham 0.986725664 0.013274336\n", - " spam 0.995833333 0.004166667\n", - "\n", - " fact\n", - "trainSet$label F T\n", - " ham 0.99285228 0.00714772\n", - " spam 0.96083333 0.03916667\n", - "\n", - " factor\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.995000000 0.005000000\n", - "\n", - " factors\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.982500000 0.017500000\n", - "\n", - " factory\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " facts\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.975000000 0.025000000\n", - "\n", - " factua\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " factual\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9866666667 0.0133333333\n", - "\n", - " fade\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " fail\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995000000 0.005000000\n", - "\n", - " failed\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " fails\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " failure\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.990833333 0.009166667\n", - "\n", - " failures\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " fair\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " fairly\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " fairway\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " faith\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " faithfully\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " falbaum\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " fall\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.995833333 0.004166667\n", - "\n", - " fallen\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " fallon\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " fallout\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " falls\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " false\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " famiiiar\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " familiar\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.992500000 0.007500000\n", - "\n", - " families\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " family\n", - "trainSet$label F T\n", - " ham 0.98978897 0.01021103\n", - " spam 0.98000000 0.02000000\n", - "\n", - " famvir\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " fan\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " fancy\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " fans\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " fantastic\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " far\n", - "trainSet$label F T\n", - " ham 0.98944860 0.01055140\n", - " spam 0.98666667 0.01333333\n", - "\n", - " fare\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.996666667 0.003333333\n", - "\n", - " fares\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " faretracker\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " farm\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.994166667 0.005833333\n", - "\n", - " farmer\n", - "trainSet$label F T\n", - " ham 0.827433628 0.172566372\n", - " spam 0.996666667 0.003333333\n", - "\n", - " farmers\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " farms\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " fast\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.961666667 0.038333333\n", - "\n", - " faster\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.991666667 0.008333333\n", - "\n", - " fastest\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " fat\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9816666667 0.0183333333\n", - "\n", - " fatah\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " father\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.990833333 0.009166667\n", - "\n", - " fault\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " favor\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.995833333 0.004166667\n", - "\n", - " favorabie\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " favorable\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9925000000 0.0075000000\n", - "\n", - " favorite\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.994166667 0.005833333\n", - "\n", - " fax\n", - "trainSet$label F T\n", - " ham 0.95439074 0.04560926\n", - " spam 0.95000000 0.05000000\n", - "\n", - " faxed\n", - "trainSet$label F T\n", - " ham 0.9955752212 0.0044247788\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " faye\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " fbgo\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " fbi\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " fcc\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " fcv\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 1.000000000 0.000000000\n", - "\n", - " fda\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9858333333 0.0141666667\n", - "\n", - " fear\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9908333333 0.0091666667\n", - "\n", - " fears\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " feature\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.995000000 0.005000000\n", - "\n", - " featured\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9625000000 0.0375000000\n", - "\n", - " features\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.973333333 0.026666667\n", - "\n", - " featuring\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " feb\n", - "trainSet$label F T\n", - " ham 0.96051736 0.03948264\n", - " spam 0.99000000 0.01000000\n", - "\n", - " february\n", - "trainSet$label F T\n", - " ham 0.95677332 0.04322668\n", - " spam 0.99500000 0.00500000\n", - "\n", - " fed\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.998333333 0.001666667\n", - "\n", - " federal\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.958333333 0.041666667\n", - "\n", - " fedex\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " fee\n", - "trainSet$label F T\n", - " ham 0.96698434 0.03301566\n", - " spam 0.98333333 0.01666667\n", - "\n", - " feed\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.996666667 0.003333333\n", - "\n", - " feedback\n", - "trainSet$label F T\n", - " ham 0.98434309 0.01565691\n", - " spam 0.99750000 0.00250000\n", - "\n", - " feeds\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " feel\n", - "trainSet$label F T\n", - " ham 0.97072839 0.02927161\n", - " spam 0.95083333 0.04916667\n", - "\n", - " feeling\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.991666667 0.008333333\n", - "\n", - " feels\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " fees\n", - "trainSet$label F T\n", - " ham 0.988427502 0.011572498\n", - " spam 0.998333333 0.001666667\n", - "\n", - " feet\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9908333333 0.0091666667\n", - "\n", - " felicia\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " felipe\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 1.000000000 0.000000000\n", - "\n", - " fellow\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " felt\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.994166667 0.005833333\n", - "\n", - " female\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.991666667 0.008333333\n", - "\n", - " fence\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " ferc\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 1.000000000 0.000000000\n", - "\n", - " fercsr\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " ferries\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " fertility\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " fffbf\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " ffffff\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " ffffffnbsp\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " ffffffstrongfont\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " fffont\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " ffo\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " fiction\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " fidgeting\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " fieid\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " field\n", - "trainSet$label F T\n", - " ham 0.96732471 0.03267529\n", - " spam 0.98833333 0.01166667\n", - "\n", - " fields\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.995833333 0.004166667\n", - "\n", - " fifteen\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " fifty\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.995833333 0.004166667\n", - "\n", - " fig\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " fight\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.995833333 0.004166667\n", - "\n", - " figure\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.995833333 0.004166667\n", - "\n", - " figured\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " figures\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " fiiings\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " file\n", - "trainSet$label F T\n", - " ham 0.85908781 0.14091219\n", - " spam 0.98333333 0.01666667\n", - "\n", - " filed\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.998333333 0.001666667\n", - "\n", - " filename\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " files\n", - "trainSet$label F T\n", - " ham 0.98978897 0.01021103\n", - " spam 0.99250000 0.00750000\n", - "\n", - " filing\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " filings\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9850000000 0.0150000000\n", - "\n", - " fill\n", - "trainSet$label F T\n", - " ham 0.98978897 0.01021103\n", - " spam 0.97416667 0.02583333\n", - "\n", - " filled\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.993333333 0.006666667\n", - "\n", - " filling\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995833333 0.004166667\n", - "\n", - " filter\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995000000 0.005000000\n", - "\n", - " filters\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " filthy\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " fin\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " final\n", - "trainSet$label F T\n", - " ham 0.98400272 0.01599728\n", - " spam 0.98916667 0.01083333\n", - "\n", - " finalize\n", - "trainSet$label F T\n", - " ham 0.9952348536 0.0047651464\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " finalized\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 1.000000000 0.000000000\n", - "\n", - " finalizing\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " finally\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.983333333 0.016666667\n", - "\n", - " finance\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.989166667 0.010833333\n", - "\n", - " financia\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " financial\n", - "trainSet$label F T\n", - " ham 0.98502383 0.01497617\n", - " spam 0.97000000 0.03000000\n", - "\n", - " financially\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " financing\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.984166667 0.015833333\n", - "\n", - " find\n", - "trainSet$label F T\n", - " ham 0.95302927 0.04697073\n", - " spam 0.93916667 0.06083333\n", - "\n", - " finding\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.992500000 0.007500000\n", - "\n", - " findings\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " finds\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " fine\n", - "trainSet$label F T\n", - " ham 0.98876787 0.01123213\n", - " spam 0.99250000 0.00750000\n", - "\n", - " finest\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " fingertip\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " finish\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.998333333 0.001666667\n", - "\n", - " finished\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.995833333 0.004166667\n", - "\n", - " finland\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " fioricet\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " fire\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.990833333 0.009166667\n", - "\n", - " fired\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " firewall\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " fireworks\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.991666667 0.008333333\n", - "\n", - " firing\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " firm\n", - "trainSet$label F T\n", - " ham 0.969366916 0.030633084\n", - " spam 0.991666667 0.008333333\n", - "\n", - " firms\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.997500000 0.002500000\n", - "\n", - " first\n", - "trainSet$label F T\n", - " ham 0.93124575 0.06875425\n", - " spam 0.93333333 0.06666667\n", - "\n", - " firstname\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " fiscal\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " fischer\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " fish\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " fisher\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " fishing\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " fit\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.992500000 0.007500000\n", - "\n", - " fitness\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " fits\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " five\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.980833333 0.019166667\n", - "\n", - " fix\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.991666667 0.008333333\n", - "\n", - " fixed\n", - "trainSet$label F T\n", - " ham 0.98876787 0.01123213\n", - " spam 0.97833333 0.02166667\n", - "\n", - " fixtures\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " fka\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " flag\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 1.000000000 0.000000000\n", - "\n", - " flagged\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " flagstaff\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " flake\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " flanagan\n", - "trainSet$label F T\n", - " ham 0.9965963240 0.0034036760\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " flash\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.977500000 0.022500000\n", - "\n", - " flashed\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " flat\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.993333333 0.006666667\n", - "\n", - " flatulent\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " flaunt\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " flavin\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 1.000000000 0.000000000\n", - "\n", - " fletcher\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " flew\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " flex\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " flexeril\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " flexibility\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 1.000000000 0.000000000\n", - "\n", - " flexible\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.998333333 0.001666667\n", - "\n", - " flextra\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " flight\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.990833333 0.009166667\n", - "\n", - " flights\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " float\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9891666667 0.0108333333\n", - "\n", - " floated\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " floating\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " floor\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.995000000 0.005000000\n", - "\n", - " floors\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " floppy\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " florida\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.995000000 0.005000000\n", - "\n", - " flow\n", - "trainSet$label F T\n", - " ham 0.89448604 0.10551396\n", - " spam 0.98916667 0.01083333\n", - "\n", - " flowed\n", - "trainSet$label F T\n", - " ham 0.9737917 0.0262083\n", - " spam 1.0000000 0.0000000\n", - "\n", - " flowing\n", - "trainSet$label F T\n", - " ham 0.98298162 0.01701838\n", - " spam 1.00000000 0.00000000\n", - "\n", - " flows\n", - "trainSet$label F T\n", - " ham 0.99285228 0.00714772\n", - " spam 1.00000000 0.00000000\n", - "\n", - " fluctuation\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " flw\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " fly\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " flyer\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " flynn\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 0.998333333 0.001666667\n", - "\n", - " fnc\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " focus\n", - "trainSet$label F T\n", - " ham 0.99285228 0.00714772\n", - " spam 0.98916667 0.01083333\n", - "\n", - " focused\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.993333333 0.006666667\n", - "\n", - " folder\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " folders\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " folks\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 1.000000000 0.000000000\n", - "\n", - " follow\n", - "trainSet$label F T\n", - " ham 0.97719537 0.02280463\n", - " spam 0.95750000 0.04250000\n", - "\n", - " followed\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.994166667 0.005833333\n", - "\n", - " following\n", - "trainSet$label F T\n", - " ham 0.87916950 0.12083050\n", - " spam 0.97666667 0.02333333\n", - "\n", - " follows\n", - "trainSet$label F T\n", - " ham 0.9663036079 0.0336963921\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " followup\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " font\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9791666667 0.0208333333\n", - "\n", - " fontbr\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " fontfont\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " food\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.992500000 0.007500000\n", - "\n", - " fooled\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " foot\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.994166667 0.005833333\n", - "\n", - " football\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.998333333 0.001666667\n", - "\n", - " footlocker\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " footprint\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " forbid\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " force\n", - "trainSet$label F T\n", - " ham 0.99149081 0.00850919\n", - " spam 0.99250000 0.00750000\n", - "\n", - " forced\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.998333333 0.001666667\n", - "\n", - " forces\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995000000 0.005000000\n", - "\n", - " ford\n", - "trainSet$label F T\n", - " ham 0.9976174268 0.0023825732\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " fore\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " forecast\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.997500000 0.002500000\n", - "\n", - " forecasts\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " foreign\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.98083333 0.01916667\n", - "\n", - " foreigner\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " foresee\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9783333333 0.0216666667\n", - "\n", - " forest\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.998333333 0.001666667\n", - "\n", - " forever\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9841666667 0.0158333333\n", - "\n", - " forget\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.987500000 0.012500000\n", - "\n", - " forgot\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " forgotten\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " form\n", - "trainSet$label F T\n", - " ham 0.98332199 0.01667801\n", - " spam 0.95916667 0.04083333\n", - "\n", - " formal\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.996666667 0.003333333\n", - "\n", - " format\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.963333333 0.036666667\n", - "\n", - " formation\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995833333 0.004166667\n", - "\n", - " formats\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " formed\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " former\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.993333333 0.006666667\n", - "\n", - " formerly\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.996666667 0.003333333\n", - "\n", - " forming\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " formosa\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " forms\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.992500000 0.007500000\n", - "\n", - " formula\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9841666667 0.0158333333\n", - "\n", - " formulated\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " forster\n", - "trainSet$label F T\n", - " ham 0.9972770592 0.0027229408\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " fort\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " forth\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.985000000 0.015000000\n", - "\n", - " fortune\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.98916667 0.01083333\n", - "\n", - " forty\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " forum\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " forward\n", - "trainSet$label F T\n", - " ham 0.93737236 0.06262764\n", - " spam 0.95250000 0.04750000\n", - "\n", - " forwarded\n", - "trainSet$label F T\n", - " ham 0.7539142274 0.2460857726\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " forwarding\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.995000000 0.005000000\n", - "\n", - " fosdick\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 1.000000000 0.000000000\n", - "\n", - " fossil\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " foster\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " found\n", - "trainSet$label F T\n", - " ham 0.98230088 0.01769912\n", - " spam 0.97250000 0.02750000\n", - "\n", - " foundation\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " founded\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " founder\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " fountain\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " four\n", - "trainSet$label F T\n", - " ham 0.99149081 0.00850919\n", - " spam 0.97416667 0.02583333\n", - "\n", - " fourteen\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " fourth\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " foward\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " fox\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " fraction\n", - "trainSet$label F T\n", - " ham 1.00 0.00\n", - " spam 0.99 0.01\n", - "\n", - " frame\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.997500000 0.002500000\n", - "\n", - " france\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " francis\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " francisco\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995000000 0.005000000\n", - "\n", - " franck\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " frank\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.996666667 0.003333333\n", - "\n", - " frankfurt\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " franklin\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.997500000 0.002500000\n", - "\n", - " fraud\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " frayre\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " fred\n", - "trainSet$label F T\n", - " ham 0.98366236 0.01633764\n", - " spam 1.00000000 0.00000000\n", - "\n", - " frederic\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " free\n", - "trainSet$label F T\n", - " ham 0.95813479 0.04186521\n", - " spam 0.86000000 0.14000000\n", - "\n", - " freedom\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.998333333 0.001666667\n", - "\n", - " freehand\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " freehold\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " freeman\n", - "trainSet$label F T\n", - " ham 0.9972770592 0.0027229408\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " freeport\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " freeware\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " freight\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " french\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " frequency\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " frequently\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " fresh\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99250000 0.00750000\n", - "\n", - " frevert\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " fri\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.995000000 0.005000000\n", - "\n", - " friday\n", - "trainSet$label F T\n", - " ham 0.93839346 0.06160654\n", - " spam 0.98166667 0.01833333\n", - "\n", - " friedman\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " friend\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.976666667 0.023333333\n", - "\n", - " friendly\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.993333333 0.006666667\n", - "\n", - " friends\n", - "trainSet$label F T\n", - " ham 0.99149081 0.00850919\n", - " spam 0.98416667 0.01583333\n", - "\n", - " fritolay\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " frmly\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " front\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.981666667 0.018333333\n", - "\n", - " frontera\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " frustrating\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " fry\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " ftar\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " fte\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " ftworth\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 1.000000000 0.000000000\n", - "\n", - " fuck\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " fucked\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " fuel\n", - "trainSet$label F T\n", - " ham 0.96051736 0.03948264\n", - " spam 0.99500000 0.00500000\n", - "\n", - " fuels\n", - "trainSet$label F T\n", - " ham 0.9673247107 0.0326752893\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " fujitsu\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " fulfill\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " full\n", - "trainSet$label F T\n", - " ham 0.98706603 0.01293397\n", - " spam 0.95416667 0.04583333\n", - "\n", - " fuller\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " fully\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.981666667 0.018333333\n", - "\n", - " fun\n", - "trainSet$label F T\n", - " ham 0.99149081 0.00850919\n", - " spam 0.98166667 0.01833333\n", - "\n", - " function\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.997500000 0.002500000\n", - "\n", - " functional\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " functionality\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.998333333 0.001666667\n", - "\n", - " functions\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.998333333 0.001666667\n", - "\n", - " fund\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.977500000 0.022500000\n", - "\n", - " fundamentals\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " funding\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.993333333 0.006666667\n", - "\n", - " funds\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.986666667 0.013333333\n", - "\n", - " funky\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " funny\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " furnace\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " furnish\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " furthermore\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.990833333 0.009166667\n", - "\n", - " future\n", - "trainSet$label F T\n", - " ham 0.97447243 0.02552757\n", - " spam 0.92500000 0.07500000\n", - "\n", - " futureevents\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " fwd\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.982500000 0.017500000\n", - "\n", - " fyi\n", - "trainSet$label F T\n", - " ham 0.92307692 0.07692308\n", - " spam 1.00000000 0.00000000\n", - "\n", - " gabriel\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " gain\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.983333333 0.016666667\n", - "\n", - " gained\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " gaining\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " gains\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98166667 0.01833333\n", - "\n", - " gallanted\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " gallantry\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " galveston\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 1.000000000 0.000000000\n", - "\n", - " gambling\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " game\n", - "trainSet$label F T\n", - " ham 0.991150442 0.008849558\n", - " spam 0.989166667 0.010833333\n", - "\n", - " games\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.993333333 0.006666667\n", - "\n", - " gaming\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " gang\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " gap\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " garcia\n", - "trainSet$label F T\n", - " ham 0.9965963240 0.0034036760\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " garden\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.998333333 0.001666667\n", - "\n", - " gardens\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " gardner\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " garland\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " garner\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " garrett\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " garrick\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 1.000000000 0.000000000\n", - "\n", - " garrison\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " gary\n", - "trainSet$label F T\n", - " ham 0.932607216 0.067392784\n", - " spam 0.998333333 0.001666667\n", - "\n", - " garza\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " gas\n", - "trainSet$label F T\n", - " ham 0.69434990 0.30565010\n", - " spam 0.98416667 0.01583333\n", - "\n", - " gaslift\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " gasmsgboard\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " gasoline\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " gasper\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " gate\n", - "trainSet$label F T\n", - " ham 0.9969366916 0.0030633084\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " gatekeep\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " gates\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.995833333 0.004166667\n", - "\n", - " gateway\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.994166667 0.005833333\n", - "\n", - " gathered\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.984166667 0.015833333\n", - "\n", - " gathering\n", - "trainSet$label F T\n", - " ham 0.964601770 0.035398230\n", - " spam 0.996666667 0.003333333\n", - "\n", - " gave\n", - "trainSet$label F T\n", - " ham 0.988427502 0.011572498\n", - " spam 0.995833333 0.004166667\n", - "\n", - " gay\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 0.995833333 0.004166667\n", - "\n", - " gayle\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " gaza\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " gbic\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " gbl\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " gco\n", - "trainSet$label F T\n", - " ham 0.98978897 0.01021103\n", - " spam 1.00000000 0.00000000\n", - "\n", - " gcp\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " gcs\n", - "trainSet$label F T\n", - " ham 0.991150442 0.008849558\n", - " spam 1.000000000 0.000000000\n", - "\n", - " gdp\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 1.000000000 0.000000000\n", - "\n", - " gear\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " gecko\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " geec\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " gem\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " gemc\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " gen\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " genaro\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " genco\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " genera\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " general\n", - "trainSet$label F T\n", - " ham 0.9863853 0.0136147\n", - " spam 0.9800000 0.0200000\n", - "\n", - " generally\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.998333333 0.001666667\n", - "\n", - " generate\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.995833333 0.004166667\n", - "\n", - " generated\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.992500000 0.007500000\n", - "\n", - " generates\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " generating\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9900000000 0.0100000000\n", - "\n", - " generation\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.989166667 0.010833333\n", - "\n", - " generator\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " generic\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.96500000 0.03500000\n", - "\n", - " generlc\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " genex\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " gentle\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " gentlemen\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " genuine\n", - "trainSet$label F T\n", - " ham 1.00 0.00\n", - " spam 0.99 0.01\n", - "\n", - " geoff\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " geographic\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " geologists\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " geology\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " george\n", - "trainSet$label F T\n", - " ham 0.956432948 0.043567052\n", - " spam 0.994166667 0.005833333\n", - "\n", - " georgeanne\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " georgia\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " gepl\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ger\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " gerald\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 1.000000000 0.000000000\n", - "\n", - " gerard\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " german\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " germany\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.990000000 0.010000000\n", - "\n", - " get\n", - "trainSet$label F T\n", - " ham 0.8635126 0.1364874\n", - " spam 0.7516667 0.2483333\n", - "\n", - " getaway\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " getitbest\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " gets\n", - "trainSet$label F T\n", - " ham 0.991150442 0.008849558\n", - " spam 0.992500000 0.007500000\n", - "\n", - " getting\n", - "trainSet$label F T\n", - " ham 0.96868618 0.03131382\n", - " spam 0.96916667 0.03083333\n", - "\n", - " ggo\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " ggrant\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " ggts\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " ghz\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " giant\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " gif\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9900000000 0.0100000000\n", - "\n", - " gift\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.990000000 0.010000000\n", - "\n", - " gifts\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " gig\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " gilbert\n", - "trainSet$label F T\n", - " ham 0.9976174268 0.0023825732\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " giobal\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " girl\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.985833333 0.014166667\n", - "\n", - " girlfriend\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98833333 0.01166667\n", - "\n", - " girls\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.980000000 0.020000000\n", - "\n", - " giron\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 1.000000000 0.000000000\n", - "\n", - " gisb\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 1.000000000 0.000000000\n", - "\n", - " gissin\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " give\n", - "trainSet$label F T\n", - " ham 0.94758339 0.05241661\n", - " spam 0.94166667 0.05833333\n", - "\n", - " given\n", - "trainSet$label F T\n", - " ham 0.9874064 0.0125936\n", - " spam 0.9700000 0.0300000\n", - "\n", - " gives\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.992500000 0.007500000\n", - "\n", - " giving\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.985833333 0.014166667\n", - "\n", - " glad\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.992500000 0.007500000\n", - "\n", - " glass\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " glen\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " glenn\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " glo\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " global\n", - "trainSet$label F T\n", - " ham 0.97106875 0.02893125\n", - " spam 0.98500000 0.01500000\n", - "\n", - " globally\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9925000000 0.0075000000\n", - "\n", - " globe\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.995833333 0.004166667\n", - "\n", - " gloria\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " glory\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " glover\n", - "trainSet$label F T\n", - " ham 0.99012934 0.00987066\n", - " spam 1.00000000 0.00000000\n", - "\n", - " gmbh\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " gms\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " gmt\n", - "trainSet$label F T\n", - " ham 0.9976174268 0.0023825732\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " goais\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " goal\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.994166667 0.005833333\n", - "\n", - " goals\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.980833333 0.019166667\n", - "\n", - " god\n", - "trainSet$label F T\n", - " ham 0.991150442 0.008849558\n", - " spam 0.986666667 0.013333333\n", - "\n", - " godparent\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " goes\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 0.988333333 0.011666667\n", - "\n", - " goforth\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " gogh\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " going\n", - "trainSet$label F T\n", - " ham 0.94724302 0.05275698\n", - " spam 0.96250000 0.03750000\n", - "\n", - " gold\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " golden\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.994166667 0.005833333\n", - "\n", - " goldman\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " golf\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.998333333 0.001666667\n", - "\n", - " golfboxx\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " goliad\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " golly\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " gomes\n", - "trainSet$label F T\n", - " ham 0.9894486 0.0105514\n", - " spam 1.0000000 0.0000000\n", - "\n", - " gone\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.985833333 0.014166667\n", - "\n", - " gonzales\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " good\n", - "trainSet$label F T\n", - " ham 0.95949626 0.04050374\n", - " spam 0.92666667 0.07333333\n", - "\n", - " goodbye\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " goods\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " goodwill\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " google\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " gorbea\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " gordon\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " gore\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " gorgeous\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " gorons\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " gosnell\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " gossett\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 1.000000000 0.000000000\n", - "\n", - " got\n", - "trainSet$label F T\n", - " ham 0.97651464 0.02348536\n", - " spam 0.96500000 0.03500000\n", - "\n", - " gotta\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " gotten\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9708333333 0.0291666667\n", - "\n", - " gottlob\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 1.000000000 0.000000000\n", - "\n", - " gough\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " gov\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.993333333 0.006666667\n", - "\n", - " governer\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " government\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.973333333 0.026666667\n", - "\n", - " governor\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " gpa\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " gpgfin\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 1.000000000 0.000000000\n", - "\n", - " gra\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.97416667 0.02583333\n", - "\n", - " grab\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995833333 0.004166667\n", - "\n", - " grace\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " grade\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " gradually\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " grady\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " graham\n", - "trainSet$label F T\n", - " ham 0.9962559564 0.0037440436\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " gram\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " grand\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.994166667 0.005833333\n", - "\n", - " grandma\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " grant\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 0.998333333 0.001666667\n", - "\n", - " granted\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.998333333 0.001666667\n", - "\n", - " graphic\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " graphics\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98083333 0.01916667\n", - "\n", - " grass\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " grave\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " graves\n", - "trainSet$label F T\n", - " ham 0.959155888 0.040844112\n", - " spam 0.998333333 0.001666667\n", - "\n", - " gray\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.995833333 0.004166667\n", - "\n", - " grease\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " great\n", - "trainSet$label F T\n", - " ham 0.97277059 0.02722941\n", - " spam 0.93500000 0.06500000\n", - "\n", - " greater\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.988333333 0.011666667\n", - "\n", - " greatest\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.995000000 0.005000000\n", - "\n", - " greatly\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.996666667 0.003333333\n", - "\n", - " grecian\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " greedy\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " green\n", - "trainSet$label F T\n", - " ham 0.98774677 0.01225323\n", - " spam 0.98416667 0.01583333\n", - "\n", - " greenbriar\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " greene\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " greengrocer\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " greenhouse\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " greetings\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " greg\n", - "trainSet$label F T\n", - " ham 0.9891082369 0.0108917631\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " gregg\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.998333333 0.001666667\n", - "\n", - " gregory\n", - "trainSet$label F T\n", - " ham 0.9959155888 0.0040844112\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " greif\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 1.000000000 0.000000000\n", - "\n", - " greta\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " grew\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.996666667 0.003333333\n", - "\n", - " grid\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " griffin\n", - "trainSet$label F T\n", - " ham 0.9942137509 0.0057862491\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " griffith\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 1.000000000 0.000000000\n", - "\n", - " gross\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " ground\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.994166667 0.005833333\n", - "\n", - " group\n", - "trainSet$label F T\n", - " ham 0.94928523 0.05071477\n", - " spam 0.96333333 0.03666667\n", - "\n", - " groups\n", - "trainSet$label F T\n", - " ham 0.988427502 0.011572498\n", - " spam 0.995833333 0.004166667\n", - "\n", - " grow\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.988333333 0.011666667\n", - "\n", - " growing\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.990000000 0.010000000\n", - "\n", - " grown\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " grows\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " growth\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.964166667 0.035833333\n", - "\n", - " grumble\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " grumman\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " gspm\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " gss\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " gtc\n", - "trainSet$label F T\n", - " ham 0.99149081 0.00850919\n", - " spam 1.00000000 0.00000000\n", - "\n", - " gte\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " guaaraantees\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " guadalupe\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 1.000000000 0.000000000\n", - "\n", - " guarante\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " guarantee\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.96333333 0.03666667\n", - "\n", - " guaranteed\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.972500000 0.027500000\n", - "\n", - " guaranteee\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " guarantees\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.995833333 0.004166667\n", - "\n", - " guaranty\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " guatemaia\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " gucci\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " guess\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 0.993333333 0.006666667\n", - "\n", - " guest\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 1.000000000 0.000000000\n", - "\n", - " guests\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " guidance\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.993333333 0.006666667\n", - "\n", - " guide\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.994166667 0.005833333\n", - "\n", - " guidelines\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.996666667 0.003333333\n", - "\n", - " gulf\n", - "trainSet$label F T\n", - " ham 0.9894486045 0.0105513955\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " gullion\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " guns\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " guthrie\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " guy\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.995000000 0.005000000\n", - "\n", - " guyana\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " guys\n", - "trainSet$label F T\n", - " ham 0.981620150 0.018379850\n", - " spam 0.991666667 0.008333333\n", - "\n", - " haarder\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " haas\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " habe\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " haben\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " habit\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " habits\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " hackett\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " hacking\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " haden\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " hades\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " hadix\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " hail\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " hair\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.990833333 0.009166667\n", - "\n", - " hairy\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " hakeem\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " hakemack\n", - "trainSet$label F T\n", - " ham 0.98434309 0.01565691\n", - " spam 1.00000000 0.00000000\n", - "\n", - " haley\n", - "trainSet$label F T\n", - " ham 0.9962559564 0.0037440436\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " half\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.971666667 0.028333333\n", - "\n", - " hall\n", - "trainSet$label F T\n", - " ham 0.9823008850 0.0176991150\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " hamas\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " hamilton\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " hampden\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " hampshire\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " hampton\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " hand\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.989166667 0.010833333\n", - "\n", - " handheldmed\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " handle\n", - "trainSet$label F T\n", - " ham 0.9737917 0.0262083\n", - " spam 0.9950000 0.0050000\n", - "\n", - " handled\n", - "trainSet$label F T\n", - " ham 0.9914908101 0.0085091899\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " handley\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " handling\n", - "trainSet$label F T\n", - " ham 0.987746767 0.012253233\n", - " spam 0.996666667 0.003333333\n", - "\n", - " hands\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.993333333 0.006666667\n", - "\n", - " handset\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " hang\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " hank\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " hankins\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " hanks\n", - "trainSet$label F T\n", - " ham 0.9659632403 0.0340367597\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " hannah\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " hansen\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 1.000000000 0.000000000\n", - "\n", - " hanson\n", - "trainSet$label F T\n", - " ham 0.9894486 0.0105514\n", - " spam 0.9975000 0.0025000\n", - "\n", - " happen\n", - "trainSet$label F T\n", - " ham 0.99012934 0.00987066\n", - " spam 0.99500000 0.00500000\n", - "\n", - " happened\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.995000000 0.005000000\n", - "\n", - " happening\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.985833333 0.014166667\n", - "\n", - " happens\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.996666667 0.003333333\n", - "\n", - " happenstance\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " happier\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " happiness\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " happy\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 0.970000000 0.030000000\n", - "\n", - " harassment\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " harbor\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " hard\n", - "trainSet$label F T\n", - " ham 0.99149081 0.00850919\n", - " spam 0.96666667 0.03333333\n", - "\n", - " hardcore\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " harder\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.995000000 0.005000000\n", - "\n", - " hardware\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " hardy\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 1.000000000 0.000000000\n", - "\n", - " hare\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.998333333 0.001666667\n", - "\n", - " harm\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " harmon\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " harold\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " harrington\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " harris\n", - "trainSet$label F T\n", - " ham 0.988767869 0.011232131\n", - " spam 0.998333333 0.001666667\n", - "\n", - " harrison\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 1.000000000 0.000000000\n", - "\n", - " harry\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " harwood\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " hassle\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9925000000 0.0075000000\n", - "\n", - " hassles\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " hastings\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " hat\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995833333 0.004166667\n", - "\n", - " hate\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.988333333 0.011666667\n", - "\n", - " haul\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " haven\n", - "trainSet$label F T\n", - " ham 0.990810075 0.009189925\n", - " spam 0.997500000 0.002500000\n", - "\n", - " hawaii\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " hawkins\n", - "trainSet$label F T\n", - " ham 0.9921715453 0.0078284547\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " hawks\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " haynes\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " hayward\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " hbcamp\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " hcl\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " hdpe\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " hdtv\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " hea\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " head\n", - "trainSet$label F T\n", - " ham 0.9894486 0.0105514\n", - " spam 0.9750000 0.0250000\n", - "\n", - " headache\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " headaches\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " headed\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.996666667 0.003333333\n", - "\n", - " header\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 1.000000000 0.000000000\n", - "\n", - " heading\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " headlines\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " headquartered\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " heads\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 1.000000000 0.000000000\n", - "\n", - " headset\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " heal\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.998333333 0.001666667\n", - "\n", - " healing\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " health\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9575000000 0.0425000000\n", - "\n", - " healthcare\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " healthier\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " healthy\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9925000000 0.0075000000\n", - "\n", - " hear\n", - "trainSet$label F T\n", - " ham 0.98638530 0.01361470\n", - " spam 0.98666667 0.01333333\n", - "\n", - " heard\n", - "trainSet$label F T\n", - " ham 0.98876787 0.01123213\n", - " spam 0.99000000 0.01000000\n", - "\n", - " hearing\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.993333333 0.006666667\n", - "\n", - " heart\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.984166667 0.015833333\n", - "\n", - " heat\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " heath\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " heather\n", - "trainSet$label F T\n", - " ham 0.991150442 0.008849558\n", - " spam 1.000000000 0.000000000\n", - "\n", - " heatherloch\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " heatherlock\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " heating\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " heavy\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.98916667 0.01083333\n", - "\n", - " hectic\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " hector\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.998333333 0.001666667\n", - "\n", - " hedge\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " hedstrom\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 1.000000000 0.000000000\n", - "\n", - " heidi\n", - "trainSet$label F T\n", - " ham 0.98876787 0.01123213\n", - " spam 1.00000000 0.00000000\n", - "\n", - " height\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9916666667 0.0083333333\n", - "\n", - " heineke\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " heinrich\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.997500000 0.002500000\n", - "\n", - " held\n", - "trainSet$label F T\n", - " ham 0.99012934 0.00987066\n", - " spam 0.98416667 0.01583333\n", - "\n", - " helen\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " hell\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " heller\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " hello\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.960833333 0.039166667\n", - "\n", - " hellosoft\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " helmerich\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " helmrich\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " help\n", - "trainSet$label F T\n", - " ham 0.91933288 0.08066712\n", - " spam 0.94500000 0.05500000\n", - "\n", - " helpdesk\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " helped\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.995833333 0.004166667\n", - "\n", - " helpful\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.995000000 0.005000000\n", - "\n", - " helping\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.995833333 0.004166667\n", - "\n", - " helps\n", - "trainSet$label F T\n", - " ham 0.992852280 0.007147720\n", - " spam 0.993333333 0.006666667\n", - "\n", - " helton\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " helvetica\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " hemisphere\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " hence\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.98916667 0.01083333\n", - "\n", - " henderson\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 1.000000000 0.000000000\n", - "\n", - " hendricks\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " hendrickson\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " henry\n", - "trainSet$label F T\n", - " ham 0.9976174268 0.0023825732\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " herbal\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " hereby\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " heree\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " herein\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.972500000 0.027500000\n", - "\n", - " hereto\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.997500000 0.002500000\n", - "\n", - " heretofore\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " heritage\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " herman\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " hermann\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " hermes\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " hernandez\n", - "trainSet$label F T\n", - " ham 0.99285228 0.00714772\n", - " spam 1.00000000 0.00000000\n", - "\n", - " herod\n", - "trainSet$label F T\n", - " ham 0.98196052 0.01803948\n", - " spam 1.00000000 0.00000000\n", - "\n", - " herrera\n", - "trainSet$label F T\n", - " ham 0.990810075 0.009189925\n", - " spam 1.000000000 0.000000000\n", - "\n", - " hesco\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 1.000000000 0.000000000\n", - "\n", - " hesitate\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.994166667 0.005833333\n", - "\n", - " hess\n", - "trainSet$label F T\n", - " ham 0.9959155888 0.0040844112\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " hesse\n", - "trainSet$label F T\n", - " ham 0.9802586794 0.0197413206\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " heuer\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " hewitt\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " hewlett\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.97083333 0.02916667\n", - "\n", - " hey\n", - "trainSet$label F T\n", - " ham 0.98570456 0.01429544\n", - " spam 0.97916667 0.02083333\n", - "\n", - " heya\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " hgh\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " hgm\n", - "trainSet$label F T\n", - " ham 0.9962559564 0.0037440436\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " hgpl\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " hiatt\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " hicks\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " hidden\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " hier\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " higgins\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " high\n", - "trainSet$label F T\n", - " ham 0.96664398 0.03335602\n", - " spam 0.91750000 0.08250000\n", - "\n", - " higher\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 0.984166667 0.015833333\n", - "\n", - " highest\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.983333333 0.016666667\n", - "\n", - " highiy\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " highland\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " highlight\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " highlighted\n", - "trainSet$label F T\n", - " ham 0.9945541184 0.0054458816\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " highlights\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " highly\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.979166667 0.020833333\n", - "\n", - " hilcorp\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " hill\n", - "trainSet$label F T\n", - " ham 0.9860449285 0.0139550715\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " hillary\n", - "trainSet$label F T\n", - " ham 0.99285228 0.00714772\n", - " spam 1.00000000 0.00000000\n", - "\n", - " hilliard\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 1.000000000 0.000000000\n", - "\n", - " hillier\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " hills\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " hilton\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " hin\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " hints\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " hippa\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " hire\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " hired\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " hiring\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " hisd\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " historic\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " historica\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " historical\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.984166667 0.015833333\n", - "\n", - " historically\n", - "trainSet$label F T\n", - " ham 0.9962559564 0.0037440436\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " history\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.969166667 0.030833333\n", - "\n", - " hit\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.993333333 0.006666667\n", - "\n", - " hitch\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " hits\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " hitting\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " hiv\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " hlavaty\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 1.000000000 0.000000000\n", - "\n", - " hms\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 1.000000000 0.000000000\n", - "\n", - " hodge\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.997500000 0.002500000\n", - "\n", - " hodges\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " hoff\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " hoffman\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " hogan\n", - "trainSet$label F T\n", - " ham 0.9976174268 0.0023825732\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " hol\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 1.000000000 0.000000000\n", - "\n", - " holcomb\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " hold\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.990833333 0.009166667\n", - "\n", - " holder\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " holders\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " holding\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.981666667 0.018333333\n", - "\n", - " holdings\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.98916667 0.01083333\n", - "\n", - " holds\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9925000000 0.0075000000\n", - "\n", - " holes\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " holiday\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.992500000 0.007500000\n", - "\n", - " holidays\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.997500000 0.002500000\n", - "\n", - " holland\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " hollomon\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " holly\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " holmes\n", - "trainSet$label F T\n", - " ham 0.98570456 0.01429544\n", - " spam 1.00000000 0.00000000\n", - "\n", - " home\n", - "trainSet$label F T\n", - " ham 0.97821647 0.02178353\n", - " spam 0.93083333 0.06916667\n", - "\n", - " homeland\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " homeostasis\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " homeowner\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " homeownernews\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " homepage\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " homes\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " honest\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " honesty\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " honey\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " hong\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " honor\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " hood\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " hook\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9916666667 0.0083333333\n", - "\n", - " hookup\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " hoop\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.996666667 0.003333333\n", - "\n", - " hoopitup\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " hoosier\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " hop\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " hope\n", - "trainSet$label F T\n", - " ham 0.97208986 0.02791014\n", - " spam 0.98083333 0.01916667\n", - "\n", - " hopefully\n", - "trainSet$label F T\n", - " ham 0.991150442 0.008849558\n", - " spam 1.000000000 0.000000000\n", - "\n", - " hopes\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " hoping\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " hopkinsville\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " hormone\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " horn\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " horny\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " horoscope\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " horse\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " horton\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " hoskins\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " hospital\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.991666667 0.008333333\n", - "\n", - " hospitals\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " host\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99500000 0.00500000\n", - "\n", - " hosting\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9916666667 0.0083333333\n", - "\n", - " hot\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.96000000 0.04000000\n", - "\n", - " hotel\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.995000000 0.005000000\n", - "\n", - " hotels\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995833333 0.004166667\n", - "\n", - " hotline\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.998333333 0.001666667\n", - "\n", - " hotlist\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " hotmail\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.998333333 0.001666667\n", - "\n", - " hottest\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9925000000 0.0075000000\n", - "\n", - " hottlist\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " hou\n", - "trainSet$label F T\n", - " ham 0.7624234173 0.2375765827\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " hour\n", - "trainSet$label F T\n", - " ham 0.990810075 0.009189925\n", - " spam 0.985833333 0.014166667\n", - "\n", - " hourly\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " hours\n", - "trainSet$label F T\n", - " ham 0.98025868 0.01974132\n", - " spam 0.94000000 0.06000000\n", - "\n", - " house\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.979166667 0.020833333\n", - "\n", - " household\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " housing\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " houston\n", - "trainSet$label F T\n", - " ham 0.92818244 0.07181756\n", - " spam 0.99500000 0.00500000\n", - "\n", - " howard\n", - "trainSet$label F T\n", - " ham 0.966643975 0.033356025\n", - " spam 0.998333333 0.001666667\n", - "\n", - " however\n", - "trainSet$label F T\n", - " ham 0.95064670 0.04935330\n", - " spam 0.98833333 0.01166667\n", - "\n", - " hpl\n", - "trainSet$label F T\n", - " ham 0.7011572 0.2988428\n", - " spam 1.0000000 0.0000000\n", - "\n", - " hplc\n", - "trainSet$label F T\n", - " ham 0.96562287 0.03437713\n", - " spam 1.00000000 0.00000000\n", - "\n", - " hpll\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " hplnl\n", - "trainSet$label F T\n", - " ham 0.98502383 0.01497617\n", - " spam 1.00000000 0.00000000\n", - "\n", - " hplno\n", - "trainSet$label F T\n", - " ham 0.97072839 0.02927161\n", - " spam 1.00000000 0.00000000\n", - "\n", - " hplnol\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 1.000000000 0.000000000\n", - "\n", - " hplo\n", - "trainSet$label F T\n", - " ham 0.97208986 0.02791014\n", - " spam 1.00000000 0.00000000\n", - "\n", - " hplol\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " hplr\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 1.000000000 0.000000000\n", - "\n", - " href\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.975 0.025\n", - "\n", - " hrs\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.993333333 0.006666667\n", - "\n", - " hrweb\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " hsc\n", - "trainSet$label F T\n", - " ham 0.96119809 0.03880191\n", - " spam 1.00000000 0.00000000\n", - "\n", - " hstj\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " htm\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 0.982500000 0.017500000\n", - "\n", - " html\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.945000000 0.055000000\n", - "\n", - " htmlimg\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " htmlview\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " http\n", - "trainSet$label F T\n", - " ham 0.96255956 0.03744044\n", - " spam 0.68750000 0.31250000\n", - "\n", - " https\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " huahao\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " hub\n", - "trainSet$label F T\n", - " ham 0.98910824 0.01089176\n", - " spam 0.99750000 0.00250000\n", - "\n", - " hubco\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " huble\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " huffsmith\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " huge\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.96500000 0.03500000\n", - "\n", - " hughes\n", - "trainSet$label F T\n", - " ham 0.9908100749 0.0091899251\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " hull\n", - "trainSet$label F T\n", - " ham 0.990810075 0.009189925\n", - " spam 1.000000000 0.000000000\n", - "\n", - " human\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.993333333 0.006666667\n", - "\n", - " humble\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.998333333 0.001666667\n", - "\n", - " hump\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " hunaid\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " hundred\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.983333333 0.016666667\n", - "\n", - " hundreds\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.98416667 0.01583333\n", - "\n", - " hung\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " hunt\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.998333333 0.001666667\n", - "\n", - " hunter\n", - "trainSet$label F T\n", - " ham 0.9952348536 0.0047651464\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " huntley\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " hurd\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " hurricane\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " hurry\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.990833333 0.009166667\n", - "\n", - " hurt\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " hurta\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " husband\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9883333333 0.0116666667\n", - "\n", - " huthmacher\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " hyatt\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " hydrocarbon\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 1.000000000 0.000000000\n", - "\n", - " hydrocarbons\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.998333333 0.001666667\n", - "\n", - " hydrocodone\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98916667 0.01083333\n", - "\n", - " hyvl\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " iaagra\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " iagra\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " ialis\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " ian\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " ibc\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " ibm\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9666666667 0.0333333333\n", - "\n", - " ice\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.992500000 0.007500000\n", - "\n", - " ich\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " icon\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " idea\n", - "trainSet$label F T\n", - " ham 0.992852280 0.007147720\n", - " spam 0.990833333 0.009166667\n", - "\n", - " ideal\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " ideas\n", - "trainSet$label F T\n", - " ham 0.99012934 0.00987066\n", - " spam 0.99250000 0.00750000\n", - "\n", - " identical\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " identification\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " identified\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.969166667 0.030833333\n", - "\n", - " identify\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.994166667 0.005833333\n", - "\n", - " identifying\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.996666667 0.003333333\n", - "\n", - " identity\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9916666667 0.0083333333\n", - "\n", - " ids\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ieee\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " iferc\n", - "trainSet$label F T\n", - " ham 0.96868618 0.03131382\n", - " spam 1.00000000 0.00000000\n", - "\n", - " ifhsc\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ifont\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " ignite\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " ignore\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " igts\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " iii\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.967500000 0.032500000\n", - "\n", - " iit\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.97333333 0.02666667\n", - "\n", - " ike\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " ill\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " illegal\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " illinois\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " illustrator\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98333333 0.01666667\n", - "\n", - " ilyushin\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " image\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.977500000 0.022500000\n", - "\n", - " images\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.990833333 0.009166667\n", - "\n", - " imagine\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.990833333 0.009166667\n", - "\n", - " imbalance\n", - "trainSet$label F T\n", - " ham 0.9836623553 0.0163376447\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " imbalances\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 1.000000000 0.000000000\n", - "\n", - " imceanotes\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 1.000000000 0.000000000\n", - "\n", - " imelda\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " img\n", - "trainSet$label F T\n", - " ham 1.00 0.00\n", - " spam 0.99 0.01\n", - "\n", - " imitation\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " imited\n", - "trainSet$label F T\n", - " ham 1.00 0.00\n", - " spam 0.99 0.01\n", - "\n", - " immediate\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.980000000 0.020000000\n", - "\n", - " immediately\n", - "trainSet$label F T\n", - " ham 0.98638530 0.01361470\n", - " spam 0.97333333 0.02666667\n", - "\n", - " immigrants\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " immune\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " impact\n", - "trainSet$label F T\n", - " ham 0.98740640 0.01259360\n", - " spam 0.98916667 0.01083333\n", - "\n", - " impacted\n", - "trainSet$label F T\n", - " ham 0.9972770592 0.0027229408\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " impacting\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " impacts\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " imperial\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " impiied\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " implement\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " implementation\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.998333333 0.001666667\n", - "\n", - " implemented\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " implementing\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " importance\n", - "trainSet$label F T\n", - " ham 0.9887678693 0.0112321307\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " important\n", - "trainSet$label F T\n", - " ham 0.98536419 0.01463581\n", - " spam 0.96666667 0.03333333\n", - "\n", - " imported\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " imports\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " imposed\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " impossible\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9908333333 0.0091666667\n", - "\n", - " impotence\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98166667 0.01833333\n", - "\n", - " impotent\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " impress\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " impression\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " impressive\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " improve\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.986666667 0.013333333\n", - "\n", - " improved\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.98750000 0.01250000\n", - "\n", - " improvement\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.996666667 0.003333333\n", - "\n", - " improvements\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " improving\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " imts\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " ina\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " inactivate\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " inactivated\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " inactive\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.997500000 0.002500000\n", - "\n", - " inadvertently\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " inbound\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " inbox\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " inc\n", - "trainSet$label F T\n", - " ham 0.96426140 0.03573860\n", - " spam 0.94416667 0.05583333\n", - "\n", - " incentive\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " inception\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " incest\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " inch\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9908333333 0.0091666667\n", - "\n", - " inches\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9791666667 0.0208333333\n", - "\n", - " incident\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " inciude\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.990833333 0.009166667\n", - "\n", - " inciudes\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " inciuding\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " include\n", - "trainSet$label F T\n", - " ham 0.97991831 0.02008169\n", - " spam 0.94000000 0.06000000\n", - "\n", - " included\n", - "trainSet$label F T\n", - " ham 0.97855684 0.02144316\n", - " spam 0.98416667 0.01583333\n", - "\n", - " includes\n", - "trainSet$label F T\n", - " ham 0.98638530 0.01361470\n", - " spam 0.97416667 0.02583333\n", - "\n", - " including\n", - "trainSet$label F T\n", - " ham 0.97957794 0.02042206\n", - " spam 0.95333333 0.04666667\n", - "\n", - " inclusive\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " income\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.995000000 0.005000000\n", - "\n", - " incomplete\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " inconvenience\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.997500000 0.002500000\n", - "\n", - " incorporate\n", - "trainSet$label F T\n", - " ham 0.9976174268 0.0023825732\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " incorporated\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " incorrect\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 0.998333333 0.001666667\n", - "\n", - " incorrectly\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 1.000000000 0.000000000\n", - "\n", - " increase\n", - "trainSet$label F T\n", - " ham 0.97311096 0.02688904\n", - " spam 0.95416667 0.04583333\n", - "\n", - " increased\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.976666667 0.023333333\n", - "\n", - " increases\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.994166667 0.005833333\n", - "\n", - " increasing\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.990000000 0.010000000\n", - "\n", - " increasingly\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " incredible\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9875000000 0.0125000000\n", - "\n", - " incredibly\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " increment\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " incremental\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 1.000000000 0.000000000\n", - "\n", - " incumbent\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " incur\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " incurred\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " independent\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.990833333 0.009166667\n", - "\n", - " index\n", - "trainSet$label F T\n", - " ham 0.98434309 0.01565691\n", - " spam 0.97666667 0.02333333\n", - "\n", - " india\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " indian\n", - "trainSet$label F T\n", - " ham 0.9976174268 0.0023825732\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " indianapolis\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " indicate\n", - "trainSet$label F T\n", - " ham 0.989788972 0.010211028\n", - " spam 0.993333333 0.006666667\n", - "\n", - " indicated\n", - "trainSet$label F T\n", - " ham 0.9901293397 0.0098706603\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " indicates\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.996666667 0.003333333\n", - "\n", - " indicating\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.974166667 0.025833333\n", - "\n", - " indications\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " indicative\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98583333 0.01416667\n", - "\n", - " indicator\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " individual\n", - "trainSet$label F T\n", - " ham 0.99012934 0.00987066\n", - " spam 0.98916667 0.01083333\n", - "\n", - " individuals\n", - "trainSet$label F T\n", - " ham 0.992852280 0.007147720\n", - " spam 0.993333333 0.006666667\n", - "\n", - " industrial\n", - "trainSet$label F T\n", - " ham 0.9863853 0.0136147\n", - " spam 0.9925000 0.0075000\n", - "\n", - " industrials\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.998333333 0.001666667\n", - "\n", - " industrialsmonthly\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " industries\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.995000000 0.005000000\n", - "\n", - " industry\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.954166667 0.045833333\n", - "\n", - " indutrial\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " ine\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.991666667 0.008333333\n", - "\n", - " inefficient\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " inexpensive\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " inf\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " infected\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " infections\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " inflatables\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " influence\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " influential\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " info\n", - "trainSet$label F T\n", - " ham 0.97957794 0.02042206\n", - " spam 0.92583333 0.07416667\n", - "\n", - " infodele\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " inform\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.989166667 0.010833333\n", - "\n", - " information\n", - "trainSet$label F T\n", - " ham 0.8863172 0.1136828\n", - " spam 0.8558333 0.1441667\n", - "\n", - " informational\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " informative\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " informed\n", - "trainSet$label F T\n", - " ham 0.985023826 0.014976174\n", - " spam 0.996666667 0.003333333\n", - "\n", - " infotex\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " infrastructure\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.996666667 0.003333333\n", - "\n", - " ing\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " ingredient\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9858333333 0.0141666667\n", - "\n", - " ings\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " inherent\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9733333333 0.0266666667\n", - "\n", - " inheritor\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " initial\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.990000000 0.010000000\n", - "\n", - " initially\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 1.000000000 0.000000000\n", - "\n", - " initiative\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " inja\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " injection\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " injections\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " injured\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " injuries\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " ink\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " inkjet\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " inlet\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 1.000000000 0.000000000\n", - "\n", - " inline\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " innocent\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " innovation\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " innovative\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9916666667 0.0083333333\n", - "\n", - " input\n", - "trainSet$label F T\n", - " ham 0.98978897 0.01021103\n", - " spam 0.99750000 0.00250000\n", - "\n", - " inquiries\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.998333333 0.001666667\n", - "\n", - " inquiry\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " inserted\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " inside\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.985833333 0.014166667\n", - "\n", - " insider\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " insiders\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " insight\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " install\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.995000000 0.005000000\n", - "\n", - " installation\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.995833333 0.004166667\n", - "\n", - " installed\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.997500000 0.002500000\n", - "\n", - " instance\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.997500000 0.002500000\n", - "\n", - " instances\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " instant\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.990000000 0.010000000\n", - "\n", - " instantly\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " instead\n", - "trainSet$label F T\n", - " ham 0.988087134 0.011912866\n", - " spam 0.990833333 0.009166667\n", - "\n", - " institutions\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.995833333 0.004166667\n", - "\n", - " instructed\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " instruction\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " instructions\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.969166667 0.030833333\n", - "\n", - " instrument\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " instrumental\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " insurance\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.994166667 0.005833333\n", - "\n", - " insure\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.998333333 0.001666667\n", - "\n", - " int\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " integrate\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " integrated\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.994166667 0.005833333\n", - "\n", - " integration\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.995833333 0.004166667\n", - "\n", - " integrity\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.995833333 0.004166667\n", - "\n", - " intel\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.97083333 0.02916667\n", - "\n", - " intelligence\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " intelligent\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " intellinet\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.97166667 0.02833333\n", - "\n", - " intend\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.985000000 0.015000000\n", - "\n", - " intended\n", - "trainSet$label F T\n", - " ham 0.98536419 0.01463581\n", - " spam 0.96750000 0.03250000\n", - "\n", - " intends\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.996666667 0.003333333\n", - "\n", - " intent\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.985833333 0.014166667\n", - "\n", - " intention\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " inter\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.997500000 0.002500000\n", - "\n", - " intercompany\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 1.000000000 0.000000000\n", - "\n", - " interconnect\n", - "trainSet$label F T\n", - " ham 0.98910824 0.01089176\n", - " spam 1.00000000 0.00000000\n", - "\n", - " interconnecting\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " interconnects\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 1.000000000 0.000000000\n", - "\n", - " intercourse\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " interdesk\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " interest\n", - "trainSet$label F T\n", - " ham 0.990810075 0.009189925\n", - " spam 0.942500000 0.057500000\n", - "\n", - " interested\n", - "trainSet$label F T\n", - " ham 0.98468346 0.01531654\n", - " spam 0.96833333 0.03166667\n", - "\n", - " interesting\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " interests\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.995833333 0.004166667\n", - "\n", - " interface\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.990833333 0.009166667\n", - "\n", - " interim\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.998333333 0.001666667\n", - "\n", - " intern\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " internal\n", - "trainSet$label F T\n", - " ham 0.991490810 0.008509190\n", - " spam 0.996666667 0.003333333\n", - "\n", - " internally\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " internationa\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.991666667 0.008333333\n", - "\n", - " international\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.950833333 0.049166667\n", - "\n", - " internet\n", - "trainSet$label F T\n", - " ham 0.98740640 0.01259360\n", - " spam 0.93166667 0.06833333\n", - "\n", - " interpretation\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.989166667 0.010833333\n", - "\n", - " interprovincial\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " interruptible\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " interstate\n", - "trainSet$label F T\n", - " ham 0.9969366916 0.0030633084\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " interval\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " interview\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 1.000000000 0.000000000\n", - "\n", - " interviewed\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " interviewing\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " interviews\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " intimacy\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " intimate\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " intra\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 1.000000000 0.000000000\n", - "\n", - " intraday\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 1.000000000 0.000000000\n", - "\n", - " intranet\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " intrastate\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 1.000000000 0.000000000\n", - "\n", - " intrastates\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " introduce\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.994166667 0.005833333\n", - "\n", - " introduced\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " introducing\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.993333333 0.006666667\n", - "\n", - " introduction\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " intuit\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " invalidate\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " inventory\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " invest\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.981666667 0.018333333\n", - "\n", - " investigate\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " investigation\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " investing\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.962500000 0.037500000\n", - "\n", - " investment\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.937500000 0.062500000\n", - "\n", - " investments\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.987500000 0.012500000\n", - "\n", - " investor\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.979166667 0.020833333\n", - "\n", - " investors\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.970833333 0.029166667\n", - "\n", - " invidious\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " invitation\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.991666667 0.008333333\n", - "\n", - " invite\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " invited\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " invoice\n", - "trainSet$label F T\n", - " ham 0.975833901 0.024166099\n", - " spam 0.998333333 0.001666667\n", - "\n", - " invoiced\n", - "trainSet$label F T\n", - " ham 0.991150442 0.008849558\n", - " spam 1.000000000 0.000000000\n", - "\n", - " invoices\n", - "trainSet$label F T\n", - " ham 0.9894486 0.0105514\n", - " spam 1.0000000 0.0000000\n", - "\n", - " invoicing\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 1.000000000 0.000000000\n", - "\n", - " invoive\n", - "trainSet$label F T\n", - " ham 1.00 0.00\n", - " spam 0.99 0.01\n", - "\n", - " invoiving\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " involve\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.970833333 0.029166667\n", - "\n", - " involved\n", - "trainSet$label F T\n", - " ham 0.988427502 0.011572498\n", - " spam 0.990833333 0.009166667\n", - "\n", - " involvement\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " involving\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9891666667 0.0108333333\n", - "\n", - " iogn\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " iomega\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.97166667 0.02833333\n", - "\n", - " ion\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98666667 0.01333333\n", - "\n", - " iona\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " ionaalphonso\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " ionamin\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " ipcy\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " ipod\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " iraqi\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " ire\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " irena\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " irene\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " iron\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " irremovable\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " irving\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " isc\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " iscsi\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " ise\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " island\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.995833333 0.004166667\n", - "\n", - " isn\n", - "trainSet$label F T\n", - " ham 0.990810075 0.009189925\n", - " spam 0.994166667 0.005833333\n", - "\n", - " iso\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98666667 0.01333333\n", - "\n", - " isp\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " israel\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " israeli\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " issue\n", - "trainSet$label F T\n", - " ham 0.95302927 0.04697073\n", - " spam 0.99000000 0.01000000\n", - "\n", - " issued\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.990833333 0.009166667\n", - "\n", - " issues\n", - "trainSet$label F T\n", - " ham 0.963580667 0.036419333\n", - " spam 0.994166667 0.005833333\n", - "\n", - " ist\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " istorage\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " italian\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " itc\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " itec\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " itecs\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " item\n", - "trainSet$label F T\n", - " ham 0.988767869 0.011232131\n", - " spam 0.996666667 0.003333333\n", - "\n", - " items\n", - "trainSet$label F T\n", - " ham 0.980939415 0.019060585\n", - " spam 0.993333333 0.006666667\n", - "\n", - " itinerary\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " itoy\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " itra\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " itst\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " ium\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " ivhm\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ivoire\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " iwc\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " iwon\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " jack\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.995833333 0.004166667\n", - "\n", - " jackie\n", - "trainSet$label F T\n", - " ham 0.9680054459 0.0319945541\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " jackson\n", - "trainSet$label F T\n", - " ham 0.9894486 0.0105514\n", - " spam 0.9975000 0.0025000\n", - "\n", - " jacqueline\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.997500000 0.002500000\n", - "\n", - " jaeger\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " jaime\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.997500000 0.002500000\n", - "\n", - " jake\n", - "trainSet$label F T\n", - " ham 0.9969366916 0.0030633084\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " james\n", - "trainSet$label F T\n", - " ham 0.96153846 0.03846154\n", - " spam 0.99500000 0.00500000\n", - "\n", - " jamie\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " jan\n", - "trainSet$label F T\n", - " ham 0.96119809 0.03880191\n", - " spam 0.98166667 0.01833333\n", - "\n", - " jane\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.997500000 0.002500000\n", - "\n", - " janet\n", - "trainSet$label F T\n", - " ham 0.98093941 0.01906059\n", - " spam 0.99750000 0.00250000\n", - "\n", - " janice\n", - "trainSet$label F T\n", - " ham 0.9965963240 0.0034036760\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " janie\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " january\n", - "trainSet$label F T\n", - " ham 0.93669163 0.06330837\n", - " spam 0.98083333 0.01916667\n", - "\n", - " janzen\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " japan\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995000000 0.005000000\n", - "\n", - " jaquet\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 1.000000000 0.000000000\n", - "\n", - " jared\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " jason\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 1.000000000 0.000000000\n", - "\n", - " jay\n", - "trainSet$label F T\n", - " ham 0.9938733833 0.0061266167\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " jayant\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " jdz\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " jealous\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " jean\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " jebel\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.97166667 0.02833333\n", - "\n", - " jeff\n", - "trainSet$label F T\n", - " ham 0.978897209 0.021102791\n", - " spam 0.995833333 0.004166667\n", - "\n", - " jefferson\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 1.000000000 0.000000000\n", - "\n", - " jeffrey\n", - "trainSet$label F T\n", - " ham 0.9897889721 0.0102110279\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " jen\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " jenkins\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " jennifer\n", - "trainSet$label F T\n", - " ham 0.983662355 0.016337645\n", - " spam 0.998333333 0.001666667\n", - "\n", - " jennings\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " jenuwine\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " jeremiah\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " jeremy\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " jerry\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 1.000000000 0.000000000\n", - "\n", - " jersey\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.997500000 0.002500000\n", - "\n", - " jesse\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " jessica\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " jester\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " jesus\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " jet\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " jewelry\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " jill\n", - "trainSet$label F T\n", - " ham 0.9840027229 0.0159972771\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " jim\n", - "trainSet$label F T\n", - " ham 0.979918312 0.020081688\n", - " spam 0.998333333 0.001666667\n", - "\n", - " jimmy\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " jitter\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " jlshankster\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " joan\n", - "trainSet$label F T\n", - " ham 0.9962559564 0.0037440436\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " joanie\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 1.000000000 0.000000000\n", - "\n", - " joann\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " joanne\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 1.000000000 0.000000000\n", - "\n", - " job\n", - "trainSet$label F T\n", - " ham 0.989788972 0.010211028\n", - " spam 0.991666667 0.008333333\n", - "\n", - " jobs\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.998333333 0.001666667\n", - "\n", - " jobsonline\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " jody\n", - "trainSet$label F T\n", - " ham 0.9969366916 0.0030633084\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " joe\n", - "trainSet$label F T\n", - " ham 0.9925119129 0.0074880871\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " joel\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " joh\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " john\n", - "trainSet$label F T\n", - " ham 0.960517359 0.039482641\n", - " spam 0.993333333 0.006666667\n", - "\n", - " johnny\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " johnson\n", - "trainSet$label F T\n", - " ham 0.985364193 0.014635807\n", - " spam 0.996666667 0.003333333\n", - "\n", - " join\n", - "trainSet$label F T\n", - " ham 0.98910824 0.01089176\n", - " spam 0.98250000 0.01750000\n", - "\n", - " joined\n", - "trainSet$label F T\n", - " ham 0.9969366916 0.0030633084\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " joining\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 1.000000000 0.000000000\n", - "\n", - " joinlb\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " joins\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " joint\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.990833333 0.009166667\n", - "\n", - " jokes\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " jon\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " jonathan\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " jones\n", - "trainSet$label F T\n", - " ham 0.96528251 0.03471749\n", - " spam 0.98916667 0.01083333\n", - "\n", - " jordan\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " jose\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " joseph\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " josey\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 1.000000000 0.000000000\n", - "\n", - " joshua\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " journal\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " joy\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " joyce\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " jpg\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.993333333 0.006666667\n", - "\n", - " juanita\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " judge\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9866666667 0.0133333333\n", - "\n", - " judy\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " jul\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.997500000 0.002500000\n", - "\n", - " julia\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.998333333 0.001666667\n", - "\n", - " juliann\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 1.000000000 0.000000000\n", - "\n", - " julie\n", - "trainSet$label F T\n", - " ham 0.9455411845 0.0544588155\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " july\n", - "trainSet$label F T\n", - " ham 0.932266848 0.067733152\n", - " spam 0.990833333 0.009166667\n", - "\n", - " jump\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9908333333 0.0091666667\n", - "\n", - " jun\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " junction\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " june\n", - "trainSet$label F T\n", - " ham 0.93464942 0.06535058\n", - " spam 0.99250000 0.00750000\n", - "\n", - " junior\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " junk\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " juno\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.998333333 0.001666667\n", - "\n", - " jury\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " just\n", - "trainSet$label F T\n", - " ham 0.8955071 0.1044929\n", - " spam 0.8716667 0.1283333\n", - "\n", - " justin\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " kam\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " kansas\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " kara\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " karen\n", - "trainSet$label F T\n", - " ham 0.9833219877 0.0166780123\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " karie\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " karl\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " karpenkov\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " karry\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " kasemervisz\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " katherine\n", - "trainSet$label F T\n", - " ham 0.97617427 0.02382573\n", - " spam 1.00000000 0.00000000\n", - "\n", - " kathryn\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 1.000000000 0.000000000\n", - "\n", - " kathy\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.998333333 0.001666667\n", - "\n", - " katie\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " katy\n", - "trainSet$label F T\n", - " ham 0.97004765 0.02995235\n", - " spam 1.00000000 0.00000000\n", - "\n", - " kay\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " kcs\n", - "trainSet$label F T\n", - " ham 0.990810075 0.009189925\n", - " spam 1.000000000 0.000000000\n", - "\n", - " kdstewart\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " keep\n", - "trainSet$label F T\n", - " ham 0.95541184 0.04458816\n", - " spam 0.95750000 0.04250000\n", - "\n", - " keeping\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.994166667 0.005833333\n", - "\n", - " keeps\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " keiser\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " keith\n", - "trainSet$label F T\n", - " ham 0.9959155888 0.0040844112\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " kelley\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " kellie\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " kelly\n", - "trainSet$label F T\n", - " ham 0.98604493 0.01395507\n", - " spam 1.00000000 0.00000000\n", - "\n", - " kemp\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ken\n", - "trainSet$label F T\n", - " ham 0.9778761062 0.0221238938\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " kendall\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " kenne\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 1.000000000 0.000000000\n", - "\n", - " kennedy\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " kenneth\n", - "trainSet$label F T\n", - " ham 0.990810075 0.009189925\n", - " spam 0.995833333 0.004166667\n", - "\n", - " kenny\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 1.000000000 0.000000000\n", - "\n", - " keno\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " kenob\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " kenseaman\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " kent\n", - "trainSet$label F T\n", - " ham 0.9976174268 0.0023825732\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " kenton\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " kept\n", - "trainSet$label F T\n", - " ham 0.99149081 0.00850919\n", - " spam 0.99000000 0.01000000\n", - "\n", - " kerr\n", - "trainSet$label F T\n", - " ham 0.9972770592 0.0027229408\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " kerry\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " kevin\n", - "trainSet$label F T\n", - " ham 0.9840027229 0.0159972771\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " key\n", - "trainSet$label F T\n", - " ham 0.98842750 0.01157250\n", - " spam 0.97666667 0.02333333\n", - "\n", - " keyboard\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " keyes\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " keystone\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " keyword\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " khan\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " khttp\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " khumalo\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " kick\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " kickoff\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " kidding\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " kids\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.996666667 0.003333333\n", - "\n", - " kill\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " killam\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " killed\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.993333333 0.006666667\n", - "\n", - " killen\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " killers\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.990833333 0.009166667\n", - "\n", - " killing\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.995000000 0.005000000\n", - "\n", - " kim\n", - "trainSet$label F T\n", - " ham 0.987746767 0.012253233\n", - " spam 0.998333333 0.001666667\n", - "\n", - " kimat\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " kimberlee\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " kimberly\n", - "trainSet$label F T\n", - " ham 0.9894486045 0.0105513955\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " kin\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " kind\n", - "trainSet$label F T\n", - " ham 0.991150442 0.008849558\n", - " spam 0.960833333 0.039166667\n", - "\n", - " kinder\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " kindly\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " kinesic\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " king\n", - "trainSet$label F T\n", - " ham 0.98604493 0.01395507\n", - " spam 0.99250000 0.00750000\n", - "\n", - " kingdom\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " kingwood\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 1.000000000 0.000000000\n", - "\n", - " kinsey\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 1.000000000 0.000000000\n", - "\n", - " kirkwood\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " kit\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " kitchen\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.998333333 0.001666667\n", - "\n", - " kleberg\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " klein\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.997500000 0.002500000\n", - "\n", - " klussmann\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " knew\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.993333333 0.006666667\n", - "\n", - " knle\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " kno\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " know\n", - "trainSet$label F T\n", - " ham 0.73315180 0.26684820\n", - " spam 0.91916667 0.08083333\n", - "\n", - " knowing\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " knowledge\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 0.994166667 0.005833333\n", - "\n", - " known\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.969166667 0.030833333\n", - "\n", - " knows\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.997500000 0.002500000\n", - "\n", - " knox\n", - "trainSet$label F T\n", - " ham 0.9955752212 0.0044247788\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " knudson\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " koch\n", - "trainSet$label F T\n", - " ham 0.9918311777 0.0081688223\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " kong\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " korea\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " kori\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " kponton\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " kri\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " kris\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " krishnaswamy\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " kristen\n", - "trainSet$label F T\n", - " ham 0.9894486 0.0105514\n", - " spam 1.0000000 0.0000000\n", - "\n", - " kristin\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ksign\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " kwbt\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " kyle\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 1.000000000 0.000000000\n", - "\n", - " kylie\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " laallen\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " label\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " labeled\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " labor\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.998333333 0.001666667\n", - "\n", - " lack\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.992500000 0.007500000\n", - "\n", - " lacy\n", - "trainSet$label F T\n", - " ham 0.9972770592 0.0027229408\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " ladies\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.996666667 0.003333333\n", - "\n", - " lady\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.992500000 0.007500000\n", - "\n", - " lag\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " lagos\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " laid\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9908333333 0.0091666667\n", - "\n", - " lake\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.996666667 0.003333333\n", - "\n", - " lakeland\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " lakho\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " lal\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " lamadrid\n", - "trainSet$label F T\n", - " ham 0.98672566 0.01327434\n", - " spam 1.00000000 0.00000000\n", - "\n", - " lamay\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " lambert\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " lamphier\n", - "trainSet$label F T\n", - " ham 0.98332199 0.01667801\n", - " spam 1.00000000 0.00000000\n", - "\n", - " lan\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " land\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 0.986666667 0.013333333\n", - "\n", - " lane\n", - "trainSet$label F T\n", - " ham 0.9962559564 0.0037440436\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " lang\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " lange\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " language\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.991666667 0.008333333\n", - "\n", - " lannou\n", - "trainSet$label F T\n", - " ham 0.97617427 0.02382573\n", - " spam 1.00000000 0.00000000\n", - "\n", - " laporte\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " laptop\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.990000000 0.010000000\n", - "\n", - " large\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 0.957500000 0.042500000\n", - "\n", - " larger\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.990000000 0.010000000\n", - "\n", - " largest\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.988333333 0.011666667\n", - "\n", - " larrissa\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " larry\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.997500000 0.002500000\n", - "\n", - " las\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.985000000 0.015000000\n", - "\n", - " laser\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " last\n", - "trainSet$label F T\n", - " ham 0.93703199 0.06296801\n", - " spam 0.93416667 0.06583333\n", - "\n", - " lasting\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9908333333 0.0091666667\n", - "\n", - " lastname\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " lasts\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9825 0.0175\n", - "\n", - " late\n", - "trainSet$label F T\n", - " ham 0.98400272 0.01599728\n", - " spam 0.97583333 0.02416667\n", - "\n", - " lately\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " later\n", - "trainSet$label F T\n", - " ham 0.98162015 0.01837985\n", - " spam 0.98416667 0.01583333\n", - "\n", - " lateral\n", - "trainSet$label F T\n", - " ham 0.9965963240 0.0034036760\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " latest\n", - "trainSet$label F T\n", - " ham 0.98978897 0.01021103\n", - " spam 0.96000000 0.04000000\n", - "\n", - " latter\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " lauderdale\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " lauer\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " laugh\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " laughing\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " launch\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.996666667 0.003333333\n", - "\n", - " launched\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " launching\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " laura\n", - "trainSet$label F T\n", - " ham 0.9925119129 0.0074880871\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " lauraan\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " laurel\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " lauri\n", - "trainSet$label F T\n", - " ham 0.9758339006 0.0241660994\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " laurie\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " lavorato\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " law\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.987500000 0.012500000\n", - "\n", - " lawn\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " lawrence\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " laws\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995000000 0.005000000\n", - "\n", - " lawyer\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " lax\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " lay\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.992500000 0.007500000\n", - "\n", - " laying\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " layout\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " lbs\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " lcd\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " ldc\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " lead\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.990000000 0.010000000\n", - "\n", - " leaden\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " leader\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.982500000 0.017500000\n", - "\n", - " leaders\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.994166667 0.005833333\n", - "\n", - " leadership\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.998333333 0.001666667\n", - "\n", - " leading\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.982500000 0.017500000\n", - "\n", - " leads\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.995833333 0.004166667\n", - "\n", - " league\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " leak\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " learn\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.975000000 0.025000000\n", - "\n", - " learned\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.998333333 0.001666667\n", - "\n", - " learning\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.996666667 0.003333333\n", - "\n", - " learns\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " lease\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.993333333 0.006666667\n", - "\n", - " leases\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " least\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 0.987500000 0.012500000\n", - "\n", - " leave\n", - "trainSet$label F T\n", - " ham 0.98774677 0.01225323\n", - " spam 0.98916667 0.01083333\n", - "\n", - " leaves\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " leaving\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.996666667 0.003333333\n", - "\n", - " led\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.992500000 0.007500000\n", - "\n", - " ledgers\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " lee\n", - "trainSet$label F T\n", - " ham 0.969366916 0.030633084\n", - " spam 0.998333333 0.001666667\n", - "\n", - " lees\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " left\n", - "trainSet$label F T\n", - " ham 0.97923758 0.02076242\n", - " spam 0.98583333 0.01416667\n", - "\n", - " lefta\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " lega\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " legacy\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " legal\n", - "trainSet$label F T\n", - " ham 0.98366236 0.01633764\n", - " spam 0.98333333 0.01666667\n", - "\n", - " legally\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.996666667 0.003333333\n", - "\n", - " legislation\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9716666667 0.0283333333\n", - "\n", - " legitimate\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " lehman\n", - "trainSet$label F T\n", - " ham 0.9965963240 0.0034036760\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " lenart\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 1.000000000 0.000000000\n", - "\n", - " lend\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " lenders\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " lending\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " length\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.988333333 0.011666667\n", - "\n", - " les\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " leslie\n", - "trainSet$label F T\n", - " ham 0.9918311777 0.0081688223\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " less\n", - "trainSet$label F T\n", - " ham 0.95983662 0.04016338\n", - " spam 0.93916667 0.06083333\n", - "\n", - " lesser\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " lesson\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.998333333 0.001666667\n", - "\n", - " lessons\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " let\n", - "trainSet$label F T\n", - " ham 0.77263445 0.22736555\n", - " spam 0.96083333 0.03916667\n", - "\n", - " leth\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " lets\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.998333333 0.001666667\n", - "\n", - " letter\n", - "trainSet$label F T\n", - " ham 0.98400272 0.01599728\n", - " spam 0.97750000 0.02250000\n", - "\n", - " letters\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.995833333 0.004166667\n", - "\n", - " lev\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " level\n", - "trainSet$label F T\n", - " ham 0.98536419 0.01463581\n", - " spam 0.98000000 0.02000000\n", - "\n", - " levels\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.993333333 0.006666667\n", - "\n", - " leverage\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.997500000 0.002500000\n", - "\n", - " levitra\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9875 0.0125\n", - "\n", - " levy\n", - "trainSet$label F T\n", - " ham 0.9972770592 0.0027229408\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " lewis\n", - "trainSet$label F T\n", - " ham 0.9965963240 0.0034036760\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " lexington\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " liability\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.995833333 0.004166667\n", - "\n", - " liable\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " liberty\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " library\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " licarione\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " lice\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " license\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.993333333 0.006666667\n", - "\n", - " licensed\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.978333333 0.021666667\n", - "\n", - " licenses\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " licensing\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " lie\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " lies\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.991666667 0.008333333\n", - "\n", - " lieu\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " lieutenant\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " life\n", - "trainSet$label F T\n", - " ham 0.99285228 0.00714772\n", - " spam 0.94500000 0.05500000\n", - "\n", - " lifestyle\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " lifetime\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " lift\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " lifted\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " light\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.984166667 0.015833333\n", - "\n", - " lightfoot\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 1.000000000 0.000000000\n", - "\n", - " lighting\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " lightly\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " lightning\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " lights\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " like\n", - "trainSet$label F T\n", - " ham 0.9138870 0.0861130\n", - " spam 0.8616667 0.1383333\n", - "\n", - " likely\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.996666667 0.003333333\n", - "\n", - " lillian\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " lilly\n", - "trainSet$label F T\n", - " ham 0.9962559564 0.0037440436\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " lim\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " limit\n", - "trainSet$label F T\n", - " ham 0.9938733833 0.0061266167\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " limitation\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " limitations\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " limited\n", - "trainSet$label F T\n", - " ham 0.98876787 0.01123213\n", - " spam 0.93833333 0.06166667\n", - "\n", - " limits\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " limo\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " linda\n", - "trainSet$label F T\n", - " ham 0.991150442 0.008849558\n", - " spam 0.998333333 0.001666667\n", - "\n", - " lindley\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 1.000000000 0.000000000\n", - "\n", - " line\n", - "trainSet$label F T\n", - " ham 0.95200817 0.04799183\n", - " spam 0.93583333 0.06416667\n", - "\n", - " lined\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " lines\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.990000000 0.010000000\n", - "\n", - " link\n", - "trainSet$label F T\n", - " ham 0.98230088 0.01769912\n", - " spam 0.90916667 0.09083333\n", - "\n", - " linked\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.995833333 0.004166667\n", - "\n", - " linking\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " links\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.995000000 0.005000000\n", - "\n", - " lipitor\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.991666667 0.008333333\n", - "\n", - " liqueur\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " liquidation\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9900000000 0.0100000000\n", - "\n", - " liquids\n", - "trainSet$label F T\n", - " ham 0.9935330157 0.0064669843\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " lis\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.990833333 0.009166667\n", - "\n", - " lisa\n", - "trainSet$label F T\n", - " ham 0.9506467 0.0493533\n", - " spam 1.0000000 0.0000000\n", - "\n", - " lisst\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " list\n", - "trainSet$label F T\n", - " ham 0.93907420 0.06092580\n", - " spam 0.92666667 0.07333333\n", - "\n", - " listbot\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " listed\n", - "trainSet$label F T\n", - " ham 0.97617427 0.02382573\n", - " spam 0.99250000 0.00750000\n", - "\n", - " listen\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.992500000 0.007500000\n", - "\n", - " listening\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " listing\n", - "trainSet$label F T\n", - " ham 0.99285228 0.00714772\n", - " spam 0.96916667 0.03083333\n", - "\n", - " lists\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.990000000 0.010000000\n", - "\n", - " literally\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " litigation\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9858333333 0.0141666667\n", - "\n", - " littie\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " little\n", - "trainSet$label F T\n", - " ham 0.97923758 0.02076242\n", - " spam 0.95916667 0.04083333\n", - "\n", - " lium\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " live\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.976666667 0.023333333\n", - "\n", - " lives\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.992500000 0.007500000\n", - "\n", - " living\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.990833333 0.009166667\n", - "\n", - " livonia\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " liz\n", - "trainSet$label F T\n", - " ham 0.97515317 0.02484683\n", - " spam 1.00000000 0.00000000\n", - "\n", - " llc\n", - "trainSet$label F T\n", - " ham 0.989788972 0.010211028\n", - " spam 0.993333333 0.006666667\n", - "\n", - " lling\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " lloyd\n", - "trainSet$label F T\n", - " ham 0.97515317 0.02484683\n", - " spam 1.00000000 0.00000000\n", - "\n", - " lls\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " lmb\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " lmmbtu\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " lng\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " loa\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " load\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.990833333 0.009166667\n", - "\n", - " loaded\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " loading\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9841666667 0.0158333333\n", - "\n", - " loan\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.990833333 0.009166667\n", - "\n", - " loans\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " lobby\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " lobo\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " loc\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " local\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.976666667 0.023333333\n", - "\n", - " locate\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.998333333 0.001666667\n", - "\n", - " located\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 0.986666667 0.013333333\n", - "\n", - " location\n", - "trainSet$label F T\n", - " ham 0.98264125 0.01735875\n", - " spam 0.98916667 0.01083333\n", - "\n", - " locations\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.998333333 0.001666667\n", - "\n", - " lock\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.991666667 0.008333333\n", - "\n", - " locked\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " locker\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " lockhart\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " lofton\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " log\n", - "trainSet$label F T\n", - " ham 0.99285228 0.00714772\n", - " spam 0.99750000 0.00250000\n", - "\n", - " logged\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " logging\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " logic\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " login\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.997500000 0.002500000\n", - "\n", - " logistic\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " logistics\n", - "trainSet$label F T\n", - " ham 0.97004765 0.02995235\n", - " spam 1.00000000 0.00000000\n", - "\n", - " logitech\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " logo\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995833333 0.004166667\n", - "\n", - " logon\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " logos\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.96916667 0.03083333\n", - "\n", - " loi\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " loibl\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " lomax\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " lon\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.997500000 0.002500000\n", - "\n", - " london\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.990000000 0.010000000\n", - "\n", - " lone\n", - "trainSet$label F T\n", - " ham 0.9850238257 0.0149761743\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " lonely\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " lonestar\n", - "trainSet$label F T\n", - " ham 0.9884275 0.0115725\n", - " spam 1.0000000 0.0000000\n", - "\n", - " long\n", - "trainSet$label F T\n", - " ham 0.97685500 0.02314500\n", - " spam 0.92083333 0.07916667\n", - "\n", - " longer\n", - "trainSet$label F T\n", - " ham 0.98298162 0.01701838\n", - " spam 0.96750000 0.03250000\n", - "\n", - " longines\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " longview\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " loo\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.991666667 0.008333333\n", - "\n", - " look\n", - "trainSet$label F T\n", - " ham 0.94043567 0.05956433\n", - " spam 0.94250000 0.05750000\n", - "\n", - " looked\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 0.995833333 0.004166667\n", - "\n", - " looking\n", - "trainSet$label F T\n", - " ham 0.97106875 0.02893125\n", - " spam 0.92250000 0.07750000\n", - "\n", - " looks\n", - "trainSet$label F T\n", - " ham 0.979577944 0.020422056\n", - " spam 0.995833333 0.004166667\n", - "\n", - " loop\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.998333333 0.001666667\n", - "\n", - " lopez\n", - "trainSet$label F T\n", - " ham 0.9976174268 0.0023825732\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " lord\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.996666667 0.003333333\n", - "\n", - " lori\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " loring\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " lorraine\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.997500000 0.002500000\n", - "\n", - " los\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9900000000 0.0100000000\n", - "\n", - " lose\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.966666667 0.033333333\n", - "\n", - " losing\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " loss\n", - "trainSet$label F T\n", - " ham 0.98706603 0.01293397\n", - " spam 0.96333333 0.03666667\n", - "\n", - " losses\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " lost\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.985833333 0.014166667\n", - "\n", - " lot\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.989166667 0.010833333\n", - "\n", - " lots\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.96166667 0.03833333\n", - "\n", - " lotteria\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " lottery\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9916666667 0.0083333333\n", - "\n", - " lotto\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " lotus\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 1.000000000 0.000000000\n", - "\n", - " lou\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " loudspeaker\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " louis\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.995000000 0.005000000\n", - "\n", - " louise\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 1.000000000 0.000000000\n", - "\n", - " louisiana\n", - "trainSet$label F T\n", - " ham 0.98366236 0.01633764\n", - " spam 0.99500000 0.00500000\n", - "\n", - " love\n", - "trainSet$label F T\n", - " ham 0.98672566 0.01327434\n", - " spam 0.96000000 0.04000000\n", - "\n", - " loved\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " loves\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " loving\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99500000 0.00500000\n", - "\n", - " low\n", - "trainSet$label F T\n", - " ham 0.99149081 0.00850919\n", - " spam 0.93750000 0.06250000\n", - "\n", - " lower\n", - "trainSet$label F T\n", - " ham 0.99012934 0.00987066\n", - " spam 0.98583333 0.01416667\n", - "\n", - " lowered\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " lowest\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.97416667 0.02583333\n", - "\n", - " loyal\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " loyalty\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " lozano\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " lqgcibz\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " lrc\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " lsk\n", - "trainSet$label F T\n", - " ham 0.97311096 0.02688904\n", - " spam 1.00000000 0.00000000\n", - "\n", - " lsp\n", - "trainSet$label F T\n", - " ham 0.97617427 0.02382573\n", - " spam 1.00000000 0.00000000\n", - "\n", - " lst\n", - "trainSet$label F T\n", - " ham 0.977195371 0.022804629\n", - " spam 0.990833333 0.009166667\n", - "\n", - " ltd\n", - "trainSet$label F T\n", - " ham 0.98672566 0.01327434\n", - " spam 0.98750000 0.01250000\n", - "\n", - " lubrizol\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " lucas\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " luck\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.988333333 0.011666667\n", - "\n", - " lucky\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.990000000 0.010000000\n", - "\n", - " lucrative\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " lufkin\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " luis\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.997500000 0.002500000\n", - "\n", - " luke\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " lump\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " lunch\n", - "trainSet$label F T\n", - " ham 0.9938733833 0.0061266167\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " luong\n", - "trainSet$label F T\n", - " ham 0.98604493 0.01395507\n", - " spam 1.00000000 0.00000000\n", - "\n", - " luther\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " lutz\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " lynn\n", - "trainSet$label F T\n", - " ham 0.9965963240 0.0034036760\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " lyondell\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 1.000000000 0.000000000\n", - "\n", - " lyons\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 1.000000000 0.000000000\n", - "\n", - " maake\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " mac\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " machine\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.994166667 0.005833333\n", - "\n", - " machines\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " machleit\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " macintosh\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " mack\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 1.000000000 0.000000000\n", - "\n", - " macromedia\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9825 0.0175\n", - "\n", - " mad\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " madam\n", - "trainSet$label F T\n", - " ham 1.00 0.00\n", - " spam 0.99 0.01\n", - "\n", - " made\n", - "trainSet$label F T\n", - " ham 0.94826413 0.05173587\n", - " spam 0.93500000 0.06500000\n", - "\n", - " madonna\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " madras\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " madrid\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " magazine\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.995833333 0.004166667\n", - "\n", - " magee\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " magic\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " magnolia\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " mai\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9825 0.0175\n", - "\n", - " maiiings\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.991666667 0.008333333\n", - "\n", - " mail\n", - "trainSet$label F T\n", - " ham 0.91729067 0.08270933\n", - " spam 0.90500000 0.09500000\n", - "\n", - " mailbox\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.997500000 0.002500000\n", - "\n", - " mailed\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 1.000000000 0.000000000\n", - "\n", - " mailer\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.996666667 0.003333333\n", - "\n", - " mailing\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.981666667 0.018333333\n", - "\n", - " mailings\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9808333333 0.0191666667\n", - "\n", - " maillet\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " mailman\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " mails\n", - "trainSet$label F T\n", - " ham 0.992852280 0.007147720\n", - " spam 0.998333333 0.001666667\n", - "\n", - " mailto\n", - "trainSet$label F T\n", - " ham 0.976174268 0.023825732\n", - " spam 0.991666667 0.008333333\n", - "\n", - " main\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.987500000 0.012500000\n", - "\n", - " mainly\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.997500000 0.002500000\n", - "\n", - " maintain\n", - "trainSet$label F T\n", - " ham 0.992852280 0.007147720\n", - " spam 0.995833333 0.004166667\n", - "\n", - " maintained\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " maintaining\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.997500000 0.002500000\n", - "\n", - " maintenance\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 0.996666667 0.003333333\n", - "\n", - " majeure\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 1.000000000 0.000000000\n", - "\n", - " major\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.965000000 0.035000000\n", - "\n", - " majority\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.994166667 0.005833333\n", - "\n", - " majorwitz\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " majure\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " make\n", - "trainSet$label F T\n", - " ham 0.91797141 0.08202859\n", - " spam 0.91416667 0.08583333\n", - "\n", - " maker\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " makers\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " makes\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.983333333 0.016666667\n", - "\n", - " making\n", - "trainSet$label F T\n", - " ham 0.98570456 0.01429544\n", - " spam 0.98083333 0.01916667\n", - "\n", - " mal\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " malcolm\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " maldonado\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " male\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.985 0.015\n", - "\n", - " mall\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " mammoth\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " man\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.957500000 0.042500000\n", - "\n", - " manage\n", - "trainSet$label F T\n", - " ham 0.989108237 0.010891763\n", - " spam 0.994166667 0.005833333\n", - "\n", - " managed\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.994166667 0.005833333\n", - "\n", - " management\n", - "trainSet$label F T\n", - " ham 0.94758339 0.05241661\n", - " spam 0.96500000 0.03500000\n", - "\n", - " manager\n", - "trainSet$label F T\n", - " ham 0.96732471 0.03267529\n", - " spam 0.98000000 0.02000000\n", - "\n", - " managers\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 0.997500000 0.002500000\n", - "\n", - " manages\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " managing\n", - "trainSet$label F T\n", - " ham 0.992852280 0.007147720\n", - " spam 0.994166667 0.005833333\n", - "\n", - " managment\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " mandatory\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " mandy\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " mane\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " manfred\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " manipulation\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " mann\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " manner\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.992500000 0.007500000\n", - "\n", - " manual\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.990000000 0.010000000\n", - "\n", - " manually\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 1.000000000 0.000000000\n", - "\n", - " manufacturer\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.991666667 0.008333333\n", - "\n", - " manufacturers\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " manufacturing\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " many\n", - "trainSet$label F T\n", - " ham 0.98093941 0.01906059\n", - " spam 0.90666667 0.09333333\n", - "\n", - " mao\n", - "trainSet$label F T\n", - " ham 0.9976174268 0.0023825732\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " map\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.995833333 0.004166667\n", - "\n", - " mappings\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " maps\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " mar\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 0.994166667 0.005833333\n", - "\n", - " marathon\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " march\n", - "trainSet$label F T\n", - " ham 0.92750170 0.07249830\n", - " spam 0.98333333 0.01666667\n", - "\n", - " marchand\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " marcus\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " margin\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.995833333 0.004166667\n", - "\n", - " maria\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.997500000 0.002500000\n", - "\n", - " marie\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " marilu\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " marilyn\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " mariner\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " maritta\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " mark\n", - "trainSet$label F T\n", - " ham 0.947923758 0.052076242\n", - " spam 0.991666667 0.008333333\n", - "\n", - " marked\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " market\n", - "trainSet$label F T\n", - " ham 0.98127978 0.01872022\n", - " spam 0.94416667 0.05583333\n", - "\n", - " marketed\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " marketer\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " marketing\n", - "trainSet$label F T\n", - " ham 0.97413206 0.02586794\n", - " spam 0.98250000 0.01750000\n", - "\n", - " marketpiace\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " marketplace\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " markets\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.984166667 0.015833333\n", - "\n", - " marks\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " marlene\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " marlin\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 1.000000000 0.000000000\n", - "\n", - " marol\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " maroon\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " married\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.990833333 0.009166667\n", - "\n", - " marrow\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " mars\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " marshall\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " marta\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 1.000000000 0.000000000\n", - "\n", - " martha\n", - "trainSet$label F T\n", - " ham 0.9972770592 0.0027229408\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " martin\n", - "trainSet$label F T\n", - " ham 0.99012934 0.00987066\n", - " spam 0.99750000 0.00250000\n", - "\n", - " martinez\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.996666667 0.003333333\n", - "\n", - " marty\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " marvia\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " mary\n", - "trainSet$label F T\n", - " ham 0.921375085 0.078624915\n", - " spam 0.994166667 0.005833333\n", - "\n", - " maryland\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " mash\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " mason\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " mass\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.995000000 0.005000000\n", - "\n", - " massey\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " massive\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9850000000 0.0150000000\n", - "\n", - " master\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.994166667 0.005833333\n", - "\n", - " mastercard\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " masters\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " mat\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " matagorda\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " match\n", - "trainSet$label F T\n", - " ham 0.992852280 0.007147720\n", - " spam 0.990833333 0.009166667\n", - "\n", - " matching\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 1.000000000 0.000000000\n", - "\n", - " materia\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9875 0.0125\n", - "\n", - " material\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.971666667 0.028333333\n", - "\n", - " materialiy\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " materially\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.97833333 0.02166667\n", - "\n", - " materials\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.993333333 0.006666667\n", - "\n", - " matrix\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " matt\n", - "trainSet$label F T\n", - " ham 0.99149081 0.00850919\n", - " spam 0.99500000 0.00500000\n", - "\n", - " matter\n", - "trainSet$label F T\n", - " ham 0.9874064 0.0125936\n", - " spam 0.9800000 0.0200000\n", - "\n", - " matters\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.995833333 0.004166667\n", - "\n", - " matthew\n", - "trainSet$label F T\n", - " ham 0.9969366916 0.0030633084\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " mature\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " maturity\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " maurice\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " max\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.992500000 0.007500000\n", - "\n", - " maximize\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " maximum\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.990833333 0.009166667\n", - "\n", - " maxine\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " maxwell\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " may\n", - "trainSet$label F T\n", - " ham 0.8556841 0.1443159\n", - " spam 0.8808333 0.1191667\n", - "\n", - " maya\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " maybe\n", - "trainSet$label F T\n", - " ham 0.98978897 0.01021103\n", - " spam 0.99500000 0.00500000\n", - "\n", - " maynard\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " mazowita\n", - "trainSet$label F T\n", - " ham 0.99012934 0.00987066\n", - " spam 1.00000000 0.00000000\n", - "\n", - " mba\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " mbd\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " mbi\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " mbits\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " mbps\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " mcauliff\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " mccabe\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " mcclellan\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " mcclure\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " mcconnell\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.996666667 0.003333333\n", - "\n", - " mccoy\n", - "trainSet$label F T\n", - " ham 0.9860449285 0.0139550715\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " mcdermott\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " mcdonald\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " mcf\n", - "trainSet$label F T\n", - " ham 0.97957794 0.02042206\n", - " spam 0.99750000 0.00250000\n", - "\n", - " mcfd\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " mcgee\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.996666667 0.003333333\n", - "\n", - " mckay\n", - "trainSet$label F T\n", - " ham 0.98400272 0.01599728\n", - " spam 1.00000000 0.00000000\n", - "\n", - " mclarney\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 1.000000000 0.000000000\n", - "\n", - " mcloughlin\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 1.000000000 0.000000000\n", - "\n", - " mcmahon\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " mcmichael\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " mcmills\n", - "trainSet$label F T\n", - " ham 0.9894486 0.0105514\n", - " spam 1.0000000 0.0000000\n", - "\n", - " mcmullen\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " mcneill\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " mcnic\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " mdq\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " meadowtree\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " meals\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " mean\n", - "trainSet$label F T\n", - " ham 0.991490810 0.008509190\n", - " spam 0.991666667 0.008333333\n", - "\n", - " meaning\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.969166667 0.030833333\n", - "\n", - " means\n", - "trainSet$label F T\n", - " ham 0.98978897 0.01021103\n", - " spam 0.98416667 0.01583333\n", - "\n", - " meant\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.987500000 0.012500000\n", - "\n", - " meantime\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.997500000 0.002500000\n", - "\n", - " measure\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.994166667 0.005833333\n", - "\n", - " measured\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " measurement\n", - "trainSet$label F T\n", - " ham 0.990810075 0.009189925\n", - " spam 1.000000000 0.000000000\n", - "\n", - " measures\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " measuring\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.996666667 0.003333333\n", - "\n", - " med\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " medg\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " media\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.990000000 0.010000000\n", - "\n", - " medic\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " medica\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " medical\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.970000000 0.030000000\n", - "\n", - " medication\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9858333333 0.0141666667\n", - "\n", - " medications\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9675000000 0.0325000000\n", - "\n", - " medicine\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " medicines\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " medium\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.98916667 0.01083333\n", - "\n", - " meds\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.93333333 0.06666667\n", - "\n", - " medusa\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " medz\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " meers\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " meet\n", - "trainSet$label F T\n", - " ham 0.97651464 0.02348536\n", - " spam 0.96916667 0.03083333\n", - "\n", - " meeting\n", - "trainSet$label F T\n", - " ham 0.960176991 0.039823009\n", - " spam 0.991666667 0.008333333\n", - "\n", - " meetings\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 1.000000000 0.000000000\n", - "\n", - " meets\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " mega\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " megan\n", - "trainSet$label F T\n", - " ham 0.961878829 0.038121171\n", - " spam 0.998333333 0.001666667\n", - "\n", - " melanie\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " melba\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " melbourne\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " melethil\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " melinda\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " melissa\n", - "trainSet$label F T\n", - " ham 0.93056501 0.06943499\n", - " spam 1.00000000 0.00000000\n", - "\n", - " member\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.984166667 0.015833333\n", - "\n", - " members\n", - "trainSet$label F T\n", - " ham 0.99012934 0.00987066\n", - " spam 0.98916667 0.01083333\n", - "\n", - " membership\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.983333333 0.016666667\n", - "\n", - " memo\n", - "trainSet$label F T\n", - " ham 0.98808713 0.01191287\n", - " spam 1.00000000 0.00000000\n", - "\n", - " memorial\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " memory\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.991666667 0.008333333\n", - "\n", - " men\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.963333333 0.036666667\n", - "\n", - " mendoza\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " mens\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " ment\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.991666667 0.008333333\n", - "\n", - " mental\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " mention\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.997500000 0.002500000\n", - "\n", - " mentioned\n", - "trainSet$label F T\n", - " ham 0.98059905 0.01940095\n", - " spam 0.98750000 0.01250000\n", - "\n", - " menu\n", - "trainSet$label F T\n", - " ham 0.9972770592 0.0027229408\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " meoh\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " merchandise\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " merchant\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.994166667 0.005833333\n", - "\n", - " meredith\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 1.000000000 0.000000000\n", - "\n", - " merger\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.998333333 0.001666667\n", - "\n", - " mergers\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " meridia\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98916667 0.01083333\n", - "\n", - " meridian\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " merit\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " meritenergy\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " merry\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " mesmeric\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " meson\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " mess\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " message\n", - "trainSet$label F T\n", - " ham 0.9033356 0.0966644\n", - " spam 0.8841667 0.1158333\n", - "\n", - " messages\n", - "trainSet$label F T\n", - " ham 0.992852280 0.007147720\n", - " spam 0.990833333 0.009166667\n", - "\n", - " messaging\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.998333333 0.001666667\n", - "\n", - " messenger\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " met\n", - "trainSet$label F T\n", - " ham 0.987746767 0.012253233\n", - " spam 0.990833333 0.009166667\n", - "\n", - " meta\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " metabole\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " metabolic\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " metal\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " metals\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " metasolv\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " meter\n", - "trainSet$label F T\n", - " ham 0.7893125 0.2106875\n", - " spam 1.0000000 0.0000000\n", - "\n", - " meters\n", - "trainSet$label F T\n", - " ham 0.961538462 0.038461538\n", - " spam 0.998333333 0.001666667\n", - "\n", - " methane\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " methanol\n", - "trainSet$label F T\n", - " ham 0.98502383 0.01497617\n", - " spam 1.00000000 0.00000000\n", - "\n", - " method\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.995000000 0.005000000\n", - "\n", - " methodology\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " methods\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " metz\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " mexican\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " mexico\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " meyers\n", - "trainSet$label F T\n", - " ham 0.96017699 0.03982301\n", - " spam 1.00000000 0.00000000\n", - "\n", - " mgi\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " mgmt\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 1.000000000 0.000000000\n", - "\n", - " mgr\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " mgt\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " mhz\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " miami\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " michael\n", - "trainSet$label F T\n", - " ham 0.943158611 0.056841389\n", - " spam 0.993333333 0.006666667\n", - "\n", - " michele\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " michelle\n", - "trainSet$label F T\n", - " ham 0.9972770592 0.0027229408\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " mick\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " micro\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9908333333 0.0091666667\n", - "\n", - " microcap\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98333333 0.01666667\n", - "\n", - " microsoft\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.932500000 0.067500000\n", - "\n", - " mid\n", - "trainSet$label F T\n", - " ham 0.983662355 0.016337645\n", - " spam 0.990833333 0.009166667\n", - "\n", - " midcoast\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " midcon\n", - "trainSet$label F T\n", - " ham 0.98230088 0.01769912\n", - " spam 1.00000000 0.00000000\n", - "\n", - " middle\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.986666667 0.013333333\n", - "\n", - " middleware\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " midlothian\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " midnight\n", - "trainSet$label F T\n", - " ham 0.9969366916 0.0030633084\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " midpoint\n", - "trainSet$label F T\n", - " ham 0.9976174268 0.0023825732\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " midstream\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.998333333 0.001666667\n", - "\n", - " midtex\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " mig\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " might\n", - "trainSet$label F T\n", - " ham 0.97515317 0.02484683\n", - " spam 0.96250000 0.03750000\n", - "\n", - " mighty\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " migrate\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " migrated\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " migrating\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " migration\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " miilennium\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " miilion\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " miimizing\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " mike\n", - "trainSet$label F T\n", - " ham 0.96460177 0.03539823\n", - " spam 0.99750000 0.00250000\n", - "\n", - " mild\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " mile\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.994166667 0.005833333\n", - "\n", - " miles\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.994166667 0.005833333\n", - "\n", - " miliennium\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " miliion\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " military\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9916666667 0.0083333333\n", - "\n", - " mill\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " millenium\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " millennium\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " miller\n", - "trainSet$label F T\n", - " ham 0.9952348536 0.0047651464\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " million\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.936666667 0.063333333\n", - "\n", - " millions\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9800000000 0.0200000000\n", - "\n", - " mills\n", - "trainSet$label F T\n", - " ham 0.99012934 0.00987066\n", - " spam 1.00000000 0.00000000\n", - "\n", - " milton\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " milwaukee\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " mime\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.991666667 0.008333333\n", - "\n", - " mimi\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " min\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.980833333 0.019166667\n", - "\n", - " mind\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.976666667 0.023333333\n", - "\n", - " minded\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " mindspring\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " mine\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.994166667 0.005833333\n", - "\n", - " mineral\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " minerals\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " mines\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " minhplno\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " mini\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " minimal\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.994166667 0.005833333\n", - "\n", - " minimum\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.992500000 0.007500000\n", - "\n", - " mining\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " miningnews\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " minister\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " ministry\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " minnesota\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995833333 0.004166667\n", - "\n", - " mins\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " minus\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.998333333 0.001666667\n", - "\n", - " minute\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.982500000 0.017500000\n", - "\n", - " minutes\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.977500000 0.022500000\n", - "\n", - " mips\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 1.000000000 0.000000000\n", - "\n", - " miracle\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.998333333 0.001666667\n", - "\n", - " mirrior\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " mirror\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " miscellaneous\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " misieading\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " misleading\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.991666667 0.008333333\n", - "\n", - " miss\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.992500000 0.007500000\n", - "\n", - " missed\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.996666667 0.003333333\n", - "\n", - " missing\n", - "trainSet$label F T\n", - " ham 0.989108237 0.010891763\n", - " spam 0.995833333 0.004166667\n", - "\n", - " mission\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " mistake\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.996666667 0.003333333\n", - "\n", - " mistaken\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " misty\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " mit\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " mitch\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " mitcham\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " mitchell\n", - "trainSet$label F T\n", - " ham 0.991150442 0.008849558\n", - " spam 1.000000000 0.000000000\n", - "\n", - " mitosis\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " mix\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9791666667 0.0208333333\n", - "\n", - " mixed\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.998333333 0.001666667\n", - "\n", - " mjg\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " mke\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " mltrochta\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " mmbtu\n", - "trainSet$label F T\n", - " ham 0.8536419 0.1463581\n", - " spam 1.0000000 0.0000000\n", - "\n", - " mmbtud\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " mmbtus\n", - "trainSet$label F T\n", - " ham 0.9874064 0.0125936\n", - " spam 1.0000000 0.0000000\n", - "\n", - " mmbut\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " mmcf\n", - "trainSet$label F T\n", - " ham 0.9969366916 0.0030633084\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " mmcfd\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " mmsr\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " mnei\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " mobil\n", - "trainSet$label F T\n", - " ham 0.9826412526 0.0173587474\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " mobile\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.955000000 0.045000000\n", - "\n", - " mobiles\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " mobipocket\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " mode\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " model\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.990000000 0.010000000\n", - "\n", - " models\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " modem\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.994166667 0.005833333\n", - "\n", - " moderate\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " modern\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " modifications\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " modified\n", - "trainSet$label F T\n", - " ham 0.9972770592 0.0027229408\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " modify\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.995833333 0.004166667\n", - "\n", - " mogi\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " mohammed\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " mois\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " molly\n", - "trainSet$label F T\n", - " ham 0.9908100749 0.0091899251\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " mom\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " moment\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.987500000 0.012500000\n", - "\n", - " moments\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " momentum\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " mon\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.992500000 0.007500000\n", - "\n", - " monday\n", - "trainSet$label F T\n", - " ham 0.94894486 0.05105514\n", - " spam 0.98666667 0.01333333\n", - "\n", - " money\n", - "trainSet$label F T\n", - " ham 0.98468346 0.01531654\n", - " spam 0.87000000 0.13000000\n", - "\n", - " monga\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " monica\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.995000000 0.005000000\n", - "\n", - " monitor\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 0.993333333 0.006666667\n", - "\n", - " monitoring\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " mont\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " montana\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " month\n", - "trainSet$label F T\n", - " ham 0.85636487 0.14363513\n", - " spam 0.94916667 0.05083333\n", - "\n", - " monthly\n", - "trainSet$label F T\n", - " ham 0.98059905 0.01940095\n", - " spam 0.99000000 0.01000000\n", - "\n", - " months\n", - "trainSet$label F T\n", - " ham 0.96732471 0.03267529\n", - " spam 0.96333333 0.03666667\n", - "\n", - " moody\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " moon\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " moopid\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " moore\n", - "trainSet$label F T\n", - " ham 0.9948944860 0.0051055140\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " moorer\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " moosq\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " mops\n", - "trainSet$label F T\n", - " ham 0.98808713 0.01191287\n", - " spam 1.00000000 0.00000000\n", - "\n", - " mor\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.991666667 0.008333333\n", - "\n", - " moran\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " morgan\n", - "trainSet$label F T\n", - " ham 0.98604493 0.01395507\n", - " spam 0.99750000 0.00250000\n", - "\n", - " morning\n", - "trainSet$label F T\n", - " ham 0.96868618 0.03131382\n", - " spam 0.98250000 0.01750000\n", - "\n", - " mornings\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " morris\n", - "trainSet$label F T\n", - " ham 0.9867256637 0.0132743363\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " morrow\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " mortar\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " mortgage\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.987500000 0.012500000\n", - "\n", - " moscoso\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 1.000000000 0.000000000\n", - "\n", - " moshou\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 1.000000000 0.000000000\n", - "\n", - " mostly\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " mother\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99000000 0.01000000\n", - "\n", - " motion\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " motley\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " motor\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " mount\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " mountain\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " mouse\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99500000 0.00500000\n", - "\n", - " mouth\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9916666667 0.0083333333\n", - "\n", - " movado\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " moval\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " move\n", - "trainSet$label F T\n", - " ham 0.98025868 0.01974132\n", - " spam 0.96333333 0.03666667\n", - "\n", - " moved\n", - "trainSet$label F T\n", - " ham 0.982300885 0.017699115\n", - " spam 0.994166667 0.005833333\n", - "\n", - " movement\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.994166667 0.005833333\n", - "\n", - " moves\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.993333333 0.006666667\n", - "\n", - " movie\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " movies\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9866666667 0.0133333333\n", - "\n", - " moving\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.988333333 0.011666667\n", - "\n", - " mpeg\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " mrs\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9891666667 0.0108333333\n", - "\n", - " mrut\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " msg\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " msn\n", - "trainSet$label F T\n", - " ham 0.9962559564 0.0037440436\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " mtbe\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 1.000000000 0.000000000\n", - "\n", - " mtg\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " mtr\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 1.000000000 0.000000000\n", - "\n", - " much\n", - "trainSet$label F T\n", - " ham 0.96698434 0.03301566\n", - " spam 0.94083333 0.05916667\n", - "\n", - " mugabe\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " muiti\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " muller\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " mullet\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " multi\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.985000000 0.015000000\n", - "\n", - " multilanguage\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.991666667 0.008333333\n", - "\n", - " multilingual\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " multimedia\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " multipart\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.994166667 0.005833333\n", - "\n", - " multiple\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.982500000 0.017500000\n", - "\n", - " munich\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " municipal\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.995833333 0.004166667\n", - "\n", - " muscle\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.97833333 0.02166667\n", - "\n", - " museum\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " music\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.986666667 0.013333333\n", - "\n", - " musicnetwork\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " must\n", - "trainSet$label F T\n", - " ham 0.97481280 0.02518720\n", - " spam 0.94666667 0.05333333\n", - "\n", - " mutt\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " mutual\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " mve\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " myers\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " myorder\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " myrrh\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " mystery\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " nachlinger\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " nahou\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " naked\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " nal\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " name\n", - "trainSet$label F T\n", - " ham 0.95507148 0.04492852\n", - " spam 0.94416667 0.05583333\n", - "\n", - " named\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.997500000 0.002500000\n", - "\n", - " names\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 0.987500000 0.012500000\n", - "\n", - " nancy\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 1.000000000 0.000000000\n", - "\n", - " nascar\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " nasd\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " nasdaq\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " nashville\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " nat\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.998333333 0.001666667\n", - "\n", - " nata\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " nathan\n", - "trainSet$label F T\n", - " ham 0.9928522805 0.0071477195\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " nathaniel\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " nation\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.995833333 0.004166667\n", - "\n", - " nationa\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " national\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.980000000 0.020000000\n", - "\n", - " nationwide\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " native\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " natura\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " natural\n", - "trainSet$label F T\n", - " ham 0.97072839 0.02927161\n", - " spam 0.97000000 0.03000000\n", - "\n", - " naturally\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " nature\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " nave\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " nax\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98916667 0.01083333\n", - "\n", - " nbc\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " nbsp\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.991666667 0.008333333\n", - "\n", - " ndin\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " nds\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " neal\n", - "trainSet$label F T\n", - " ham 0.9829816201 0.0170183799\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " near\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 0.979166667 0.020833333\n", - "\n", - " nearby\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " nearest\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " nearly\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.989166667 0.010833333\n", - "\n", - " neat\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " necessarily\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " necessary\n", - "trainSet$label F T\n", - " ham 0.97753574 0.02246426\n", - " spam 0.96916667 0.03083333\n", - "\n", - " necx\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " ned\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " need\n", - "trainSet$label F T\n", - " ham 0.7957794 0.2042206\n", - " spam 0.8900000 0.1100000\n", - "\n", - " needed\n", - "trainSet$label F T\n", - " ham 0.96868618 0.03131382\n", - " spam 0.95750000 0.04250000\n", - "\n", - " needham\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " needs\n", - "trainSet$label F T\n", - " ham 0.93533016 0.06466984\n", - " spam 0.97416667 0.02583333\n", - "\n", - " negative\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.990000000 0.010000000\n", - "\n", - " negotiate\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " negotiated\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.998333333 0.001666667\n", - "\n", - " negotiating\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " negotiations\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.990833333 0.009166667\n", - "\n", - " neil\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " neither\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.98916667 0.01083333\n", - "\n", - " nelson\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 1.000000000 0.000000000\n", - "\n", - " nemec\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " neon\n", - "trainSet$label F T\n", - " ham 0.9894486 0.0105514\n", - " spam 1.0000000 0.0000000\n", - "\n", - " nervous\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " nesa\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " net\n", - "trainSet$label F T\n", - " ham 0.96970728 0.03029272\n", - " spam 0.89166667 0.10833333\n", - "\n", - " netco\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " netcom\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " netherlands\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " netscape\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " network\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.976666667 0.023333333\n", - "\n", - " networking\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " networks\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.994166667 0.005833333\n", - "\n", - " neuner\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 1.000000000 0.000000000\n", - "\n", - " neuweiler\n", - "trainSet$label F T\n", - " ham 0.98570456 0.01429544\n", - " spam 1.00000000 0.00000000\n", - "\n", - " never\n", - "trainSet$label F T\n", - " ham 0.98434309 0.01565691\n", - " spam 0.94916667 0.05083333\n", - "\n", - " new\n", - "trainSet$label F T\n", - " ham 0.8614704 0.1385296\n", - " spam 0.8291667 0.1708333\n", - "\n", - " newest\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99500000 0.00500000\n", - "\n", - " newland\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " newly\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.998333333 0.001666667\n", - "\n", - " newport\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " newpower\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " news\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.935000000 0.065000000\n", - "\n", - " newsietter\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98916667 0.01083333\n", - "\n", - " newsletter\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.963333333 0.036666667\n", - "\n", - " newsletters\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " newspaper\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " newton\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " nexium\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " next\n", - "trainSet$label F T\n", - " ham 0.93669163 0.06330837\n", - " spam 0.94916667 0.05083333\n", - "\n", - " ney\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " nfl\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " ngi\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ngo\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ngpl\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " nguyen\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 1.000000000 0.000000000\n", - "\n", - " nica\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " nice\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.989166667 0.010833333\n", - "\n", - " nicely\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " niche\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " nicholie\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " nichols\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " nick\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 1.000000000 0.000000000\n", - "\n", - " nickel\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " nicole\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " niestrath\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " nigeria\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " nigerian\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " night\n", - "trainSet$label F T\n", - " ham 0.98570456 0.01429544\n", - " spam 0.98000000 0.02000000\n", - "\n", - " nightly\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " nights\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " nike\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " nile\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " nina\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " nine\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9916666667 0.0083333333\n", - "\n", - " ninety\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " nitrate\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " nng\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " nobody\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.992500000 0.007500000\n", - "\n", - " nom\n", - "trainSet$label F T\n", - " ham 0.8481960517 0.1518039483\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " nomad\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " nomed\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 1.000000000 0.000000000\n", - "\n", - " nominal\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " nominate\n", - "trainSet$label F T\n", - " ham 0.9874064 0.0125936\n", - " spam 0.9975000 0.0025000\n", - "\n", - " nominated\n", - "trainSet$label F T\n", - " ham 0.97889721 0.02110279\n", - " spam 0.99750000 0.00250000\n", - "\n", - " nominates\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 1.000000000 0.000000000\n", - "\n", - " nominating\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " nomination\n", - "trainSet$label F T\n", - " ham 0.9060585432 0.0939414568\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " nominations\n", - "trainSet$label F T\n", - " ham 0.96664398 0.03335602\n", - " spam 1.00000000 0.00000000\n", - "\n", - " nomlogic\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " nommensen\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 1.000000000 0.000000000\n", - "\n", - " nomore\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " noms\n", - "trainSet$label F T\n", - " ham 0.93601089 0.06398911\n", - " spam 1.00000000 0.00000000\n", - "\n", - " nomso\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " non\n", - "trainSet$label F T\n", - " ham 0.9863853 0.0136147\n", - " spam 0.9850000 0.0150000\n", - "\n", - " none\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.970000000 0.030000000\n", - "\n", - " noneedl\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " noon\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.997500000 0.002500000\n", - "\n", - " nopr\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " norma\n", - "trainSet$label F T\n", - " ham 0.9965963240 0.0034036760\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " normal\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.977500000 0.022500000\n", - "\n", - " normalizations\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " normally\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.994166667 0.005833333\n", - "\n", - " norman\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " nortel\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " nortelnetworks\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " north\n", - "trainSet$label F T\n", - " ham 0.92920354 0.07079646\n", - " spam 0.96916667 0.03083333\n", - "\n", - " northeast\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " northern\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " norton\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9858333333 0.0141666667\n", - "\n", - " nos\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " notation\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " note\n", - "trainSet$label F T\n", - " ham 0.94417971 0.05582029\n", - " spam 0.97333333 0.02666667\n", - "\n", - " notebook\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " notebookplus\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " notebooks\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " noted\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 0.998333333 0.001666667\n", - "\n", - " notes\n", - "trainSet$label F T\n", - " ham 0.98468346 0.01531654\n", - " spam 0.98416667 0.01583333\n", - "\n", - " nothanks\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " nothing\n", - "trainSet$label F T\n", - " ham 0.98978897 0.01021103\n", - " spam 0.96416667 0.03583333\n", - "\n", - " notice\n", - "trainSet$label F T\n", - " ham 0.98093941 0.01906059\n", - " spam 0.94333333 0.05666667\n", - "\n", - " noticed\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.995000000 0.005000000\n", - "\n", - " notices\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " notification\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.990833333 0.009166667\n", - "\n", - " notifications\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " notified\n", - "trainSet$label F T\n", - " ham 0.989448604 0.010551396\n", - " spam 0.998333333 0.001666667\n", - "\n", - " notify\n", - "trainSet$label F T\n", - " ham 0.985364193 0.014635807\n", - " spam 0.996666667 0.003333333\n", - "\n", - " noting\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " notwithstanding\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " nov\n", - "trainSet$label F T\n", - " ham 0.981960517 0.018039483\n", - " spam 0.995833333 0.004166667\n", - "\n", - " nova\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " novelty\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " november\n", - "trainSet$label F T\n", - " ham 0.956092580 0.043907420\n", - " spam 0.993333333 0.006666667\n", - "\n", - " now\n", - "trainSet$label F T\n", - " ham 0.91456773 0.08543227\n", - " spam 0.82166667 0.17833333\n", - "\n", - " nowadays\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " nowlan\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " npi\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " nrmm\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " nts\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " number\n", - "trainSet$label F T\n", - " ham 0.93124575 0.06875425\n", - " spam 0.93000000 0.07000000\n", - "\n", - " numbered\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " numbers\n", - "trainSet$label F T\n", - " ham 0.96153846 0.03846154\n", - " spam 0.97666667 0.02333333\n", - "\n", - " numerous\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99250000 0.00750000\n", - "\n", - " oak\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.997500000 0.002500000\n", - "\n", - " oaks\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " oasis\n", - "trainSet$label F T\n", - " ham 0.9884275017 0.0115724983\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " oba\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 1.000000000 0.000000000\n", - "\n", - " objections\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " objective\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.994166667 0.005833333\n", - "\n", - " objectives\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.975000000 0.025000000\n", - "\n", - " objects\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " obligation\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.996666667 0.003333333\n", - "\n", - " obligations\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " obscure\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " observations\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " obtain\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.990833333 0.009166667\n", - "\n", - " obtained\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.998333333 0.001666667\n", - "\n", - " obtaining\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " obvious\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " obviously\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " occasion\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " occidental\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " occur\n", - "trainSet$label F T\n", - " ham 0.99285228 0.00714772\n", - " spam 0.97500000 0.02500000\n", - "\n", - " occured\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " occuring\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " occurred\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.998333333 0.001666667\n", - "\n", - " occurs\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " ocean\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.996666667 0.003333333\n", - "\n", - " oceania\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " oct\n", - "trainSet$label F T\n", - " ham 0.98502383 0.01497617\n", - " spam 0.99750000 0.00250000\n", - "\n", - " octane\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " octanes\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " octo\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " october\n", - "trainSet$label F T\n", - " ham 0.94554118 0.05445882\n", - " spam 0.99500000 0.00500000\n", - "\n", - " odd\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.995000000 0.005000000\n", - "\n", - " odds\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " odin\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " oem\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98416667 0.01583333\n", - "\n", - " oeol\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " offer\n", - "trainSet$label F T\n", - " ham 0.98400272 0.01599728\n", - " spam 0.89833333 0.10166667\n", - "\n", - " offered\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.990833333 0.009166667\n", - "\n", - " offering\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.970833333 0.029166667\n", - "\n", - " offerings\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " offers\n", - "trainSet$label F T\n", - " ham 0.991150442 0.008849558\n", - " spam 0.931666667 0.068333333\n", - "\n", - " offfers\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " office\n", - "trainSet$label F T\n", - " ham 0.95881552 0.04118448\n", - " spam 0.92750000 0.07250000\n", - "\n", - " officer\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.977500000 0.022500000\n", - "\n", - " officers\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9908333333 0.0091666667\n", - "\n", - " offices\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.990833333 0.009166667\n", - "\n", - " official\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.982500000 0.017500000\n", - "\n", - " officially\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " officials\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " offset\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.996666667 0.003333333\n", - "\n", - " offsetting\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " offshore\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.988333333 0.011666667\n", - "\n", - " offsite\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " offsystem\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 1.000000000 0.000000000\n", - "\n", - " often\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.987500000 0.012500000\n", - "\n", - " ofthe\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " ogunbunmi\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " ohio\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " oil\n", - "trainSet$label F T\n", - " ham 0.97243022 0.02756978\n", - " spam 0.97583333 0.02416667\n", - "\n", - " okay\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.995000000 0.005000000\n", - "\n", - " oklahoma\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " old\n", - "trainSet$label F T\n", - " ham 0.97311096 0.02688904\n", - " spam 0.97500000 0.02500000\n", - "\n", - " older\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.995833333 0.004166667\n", - "\n", - " olinger\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " oliver\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.998333333 0.001666667\n", - "\n", - " olivier\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " olsen\n", - "trainSet$label F T\n", - " ham 0.98774677 0.01225323\n", - " spam 1.00000000 0.00000000\n", - "\n", - " olson\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " olvera\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " oma\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " omaha\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " omega\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " omit\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.985 0.015\n", - "\n", - " ondarza\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " one\n", - "trainSet$label F T\n", - " ham 0.8965283 0.1034717\n", - " spam 0.8200000 0.1800000\n", - "\n", - " ones\n", - "trainSet$label F T\n", - " ham 0.991490810 0.008509190\n", - " spam 0.994166667 0.005833333\n", - "\n", - " ong\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " ongoing\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.995000000 0.005000000\n", - "\n", - " oniine\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " oniy\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " onl\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " online\n", - "trainSet$label F T\n", - " ham 0.98468346 0.01531654\n", - " spam 0.87250000 0.12750000\n", - "\n", - " onlook\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " onshore\n", - "trainSet$label F T\n", - " ham 0.9976174268 0.0023825732\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " ont\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " ontario\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " onto\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.989166667 0.010833333\n", - "\n", - " ooking\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98416667 0.01583333\n", - "\n", - " ooo\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " open\n", - "trainSet$label F T\n", - " ham 0.98604493 0.01395507\n", - " spam 0.97250000 0.02750000\n", - "\n", - " opened\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.997500000 0.002500000\n", - "\n", - " opening\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.996666667 0.003333333\n", - "\n", - " opens\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.996666667 0.003333333\n", - "\n", - " operate\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99000000 0.01000000\n", - "\n", - " operated\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " operates\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.995000000 0.005000000\n", - "\n", - " operating\n", - "trainSet$label F T\n", - " ham 0.98332199 0.01667801\n", - " spam 0.98166667 0.01833333\n", - "\n", - " operation\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.985833333 0.014166667\n", - "\n", - " operational\n", - "trainSet$label F T\n", - " ham 0.991490810 0.008509190\n", - " spam 0.996666667 0.003333333\n", - "\n", - " operations\n", - "trainSet$label F T\n", - " ham 0.97787611 0.02212389\n", - " spam 0.98333333 0.01666667\n", - "\n", - " operator\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.997500000 0.002500000\n", - "\n", - " operators\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " opinion\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.976666667 0.023333333\n", - "\n", - " opinions\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98416667 0.01583333\n", - "\n", - " opm\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " oppenheimer\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " opportunities\n", - "trainSet$label F T\n", - " ham 0.991150442 0.008849558\n", - " spam 0.982500000 0.017500000\n", - "\n", - " opportunity\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 0.978333333 0.021666667\n", - "\n", - " opposed\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " opposite\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995833333 0.004166667\n", - "\n", - " oprah\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " ops\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " opt\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.988333333 0.011666667\n", - "\n", - " optical\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " optimal\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " optimization\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " optimum\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " optinrealbig\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " option\n", - "trainSet$label F T\n", - " ham 0.986725664 0.013274336\n", - " spam 0.994166667 0.005833333\n", - "\n", - " optional\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.998333333 0.001666667\n", - "\n", - " options\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 0.984166667 0.015833333\n", - "\n", - " opx\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " oral\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " orchard\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " order\n", - "trainSet$label F T\n", - " ham 0.96494214 0.03505786\n", - " spam 0.90833333 0.09166667\n", - "\n", - " ordered\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.991666667 0.008333333\n", - "\n", - " ordering\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.979166667 0.020833333\n", - "\n", - " orders\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.982500000 0.017500000\n", - "\n", - " ore\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " org\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.994166667 0.005833333\n", - "\n", - " organization\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.991666667 0.008333333\n", - "\n", - " organizational\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 1.000000000 0.000000000\n", - "\n", - " organizations\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.994166667 0.005833333\n", - "\n", - " organize\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " organized\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " orgasm\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " orgasms\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " oriented\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " orig\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 1.000000000 0.000000000\n", - "\n", - " origin\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " original\n", - "trainSet$label F T\n", - " ham 0.91967325 0.08032675\n", - " spam 0.96833333 0.03166667\n", - "\n", - " originally\n", - "trainSet$label F T\n", - " ham 0.9942137509 0.0057862491\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " origination\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 1.000000000 0.000000000\n", - "\n", - " orleans\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " ortho\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " ortiz\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " osborn\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " osborne\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " ose\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " oss\n", - "trainSet$label F T\n", - " ham 0.9972770592 0.0027229408\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " otc\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9883333333 0.0116666667\n", - "\n", - " otcbb\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98833333 0.01166667\n", - "\n", - " others\n", - "trainSet$label F T\n", - " ham 0.98672566 0.01327434\n", - " spam 0.98083333 0.01916667\n", - "\n", - " otherwise\n", - "trainSet$label F T\n", - " ham 0.9874064 0.0125936\n", - " spam 0.9975000 0.0025000\n", - "\n", - " otid\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ots\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " ounces\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " outage\n", - "trainSet$label F T\n", - " ham 0.9884275 0.0115725\n", - " spam 1.0000000 0.0000000\n", - "\n", - " outages\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " outcome\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " outlet\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " outlets\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " outline\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " outlined\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " outlook\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.997500000 0.002500000\n", - "\n", - " output\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " outside\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 0.994166667 0.005833333\n", - "\n", - " outsourcing\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " outstanding\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.980833333 0.019166667\n", - "\n", - " oval\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " overall\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.992500000 0.007500000\n", - "\n", - " overcome\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " overdeliver\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " overflow\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " overhead\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " overnight\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.976666667 0.023333333\n", - "\n", - " override\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " overseas\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9891666667 0.0108333333\n", - "\n", - " oversight\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " overview\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 1.000000000 0.000000000\n", - "\n", - " owa\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " owe\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 0.994166667 0.005833333\n", - "\n", - " owed\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " owes\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " owned\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.993333333 0.006666667\n", - "\n", - " owner\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 0.992500000 0.007500000\n", - "\n", - " owners\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.973333333 0.026666667\n", - "\n", - " ownership\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.990000000 0.010000000\n", - "\n", - " ownershp\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " owns\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.995000000 0.005000000\n", - "\n", - " oxy\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 1.000000000 0.000000000\n", - "\n", - " oxygen\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " pacific\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " pack\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.98583333 0.01416667\n", - "\n", - " package\n", - "trainSet$label F T\n", - " ham 0.990129340 0.009870660\n", - " spam 0.990833333 0.009166667\n", - "\n", - " packages\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " packaging\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98666667 0.01333333\n", - "\n", - " packard\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.97166667 0.02833333\n", - "\n", - " packed\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.994166667 0.005833333\n", - "\n", - " packet\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " pad\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " padre\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.998333333 0.001666667\n", - "\n", - " page\n", - "trainSet$label F T\n", - " ham 0.97617427 0.02382573\n", - " spam 0.98083333 0.01916667\n", - "\n", - " paged\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " pagemaker\n", - "trainSet$label F T\n", - " ham 1.00 0.00\n", - " spam 0.99 0.01\n", - "\n", - " pager\n", - "trainSet$label F T\n", - " ham 0.98808713 0.01191287\n", - " spam 1.00000000 0.00000000\n", - "\n", - " pages\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.996666667 0.003333333\n", - "\n", - " paid\n", - "trainSet$label F T\n", - " ham 0.97345133 0.02654867\n", - " spam 0.96333333 0.03666667\n", - "\n", - " pain\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9533333333 0.0466666667\n", - "\n", - " painewebber\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " paint\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " painter\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " painting\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " pair\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " pairs\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " palestinian\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " palestinians\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " paliourg\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.94333333 0.05666667\n", - "\n", - " palm\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " palmer\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 1.000000000 0.000000000\n", - "\n", - " pam\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " pamela\n", - "trainSet$label F T\n", - " ham 0.9976174268 0.0023825732\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " pamphlet\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " pan\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.998333333 0.001666667\n", - "\n", - " panel\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " panenergy\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 1.000000000 0.000000000\n", - "\n", - " panerai\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " panther\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " papayoti\n", - "trainSet$label F T\n", - " ham 0.98468346 0.01531654\n", - " spam 1.00000000 0.00000000\n", - "\n", - " paper\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.993333333 0.006666667\n", - "\n", - " papers\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9925000000 0.0075000000\n", - "\n", - " paperwork\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.996666667 0.003333333\n", - "\n", - " par\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " paradise\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " paragraph\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.970833333 0.029166667\n", - "\n", - " parallel\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " parent\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.997500000 0.002500000\n", - "\n", - " parents\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.994166667 0.005833333\n", - "\n", - " paris\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " park\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.996666667 0.003333333\n", - "\n", - " parked\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " parker\n", - "trainSet$label F T\n", - " ham 0.98127978 0.01872022\n", - " spam 0.99750000 0.00250000\n", - "\n", - " parking\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 1.000000000 0.000000000\n", - "\n", - " parks\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " parliament\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " parrot\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " part\n", - "trainSet$label F T\n", - " ham 0.97311096 0.02688904\n", - " spam 0.95083333 0.04916667\n", - "\n", - " partial\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " participant\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " participants\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.993333333 0.006666667\n", - "\n", - " participate\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.988333333 0.011666667\n", - "\n", - " participating\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " participation\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.993333333 0.006666667\n", - "\n", - " particular\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.993333333 0.006666667\n", - "\n", - " particularly\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " partid\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " parties\n", - "trainSet$label F T\n", - " ham 0.989788972 0.010211028\n", - " spam 0.993333333 0.006666667\n", - "\n", - " partner\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.976666667 0.023333333\n", - "\n", - " partners\n", - "trainSet$label F T\n", - " ham 0.98876787 0.01123213\n", - " spam 0.98166667 0.01833333\n", - "\n", - " partnership\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.994166667 0.005833333\n", - "\n", - " parts\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " party\n", - "trainSet$label F T\n", - " ham 0.98127978 0.01872022\n", - " spam 0.95666667 0.04333333\n", - "\n", - " pas\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " pasadena\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " paso\n", - "trainSet$label F T\n", - " ham 0.98400272 0.01599728\n", - " spam 1.00000000 0.00000000\n", - "\n", - " pass\n", - "trainSet$label F T\n", - " ham 0.98536419 0.01463581\n", - " spam 0.99000000 0.01000000\n", - "\n", - " passed\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.966666667 0.033333333\n", - "\n", - " passenger\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " passion\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " passionate\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " passport\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9891666667 0.0108333333\n", - "\n", - " password\n", - "trainSet$label F T\n", - " ham 0.989788972 0.010211028\n", - " spam 0.993333333 0.006666667\n", - "\n", - " passwords\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " past\n", - "trainSet$label F T\n", - " ham 0.98434309 0.01565691\n", - " spam 0.95666667 0.04333333\n", - "\n", - " paste\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.952500000 0.047500000\n", - "\n", - " pat\n", - "trainSet$label F T\n", - " ham 0.93328795 0.06671205\n", - " spam 1.00000000 0.00000000\n", - "\n", - " patch\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9916666667 0.0083333333\n", - "\n", - " patches\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " patek\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " patent\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " patented\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " path\n", - "trainSet$label F T\n", - " ham 0.97515317 0.02484683\n", - " spam 1.00000000 0.00000000\n", - "\n", - " pathed\n", - "trainSet$label F T\n", - " ham 0.98434309 0.01565691\n", - " spam 1.00000000 0.00000000\n", - "\n", - " pathing\n", - "trainSet$label F T\n", - " ham 0.990810075 0.009189925\n", - " spam 1.000000000 0.000000000\n", - "\n", - " pathogen\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " paths\n", - "trainSet$label F T\n", - " ham 0.9952348536 0.0047651464\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " patience\n", - "trainSet$label F T\n", - " ham 0.9945541184 0.0054458816\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " patient\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " patients\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " patricia\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " patrick\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " patsy\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " pattern\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " patti\n", - "trainSet$label F T\n", - " ham 0.99012934 0.00987066\n", - " spam 1.00000000 0.00000000\n", - "\n", - " pattison\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " patton\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " paul\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 0.996666667 0.003333333\n", - "\n", - " paula\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " paulus\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " paxil\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98916667 0.01083333\n", - "\n", - " pay\n", - "trainSet$label F T\n", - " ham 0.97072839 0.02927161\n", - " spam 0.94916667 0.05083333\n", - "\n", - " payable\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " payback\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 1.000000000 0.000000000\n", - "\n", - " paycheck\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " paying\n", - "trainSet$label F T\n", - " ham 0.98978897 0.01021103\n", - " spam 0.98833333 0.01166667\n", - "\n", - " payment\n", - "trainSet$label F T\n", - " ham 0.98298162 0.01701838\n", - " spam 0.97666667 0.02333333\n", - "\n", - " payments\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.990000000 0.010000000\n", - "\n", - " payne\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.998333333 0.001666667\n", - "\n", - " payout\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " paypal\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " payroll\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 1.000000000 0.000000000\n", - "\n", - " pays\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " paz\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " pbx\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " pci\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " pcmcia\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " pcs\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " pcx\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " pdf\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " pdn\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " pdx\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " peace\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " peak\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " pearce\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " pearl\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " pec\n", - "trainSet$label F T\n", - " ham 0.990810075 0.009189925\n", - " spam 1.000000000 0.000000000\n", - "\n", - " pecos\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " peek\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " peer\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " pefs\n", - "trainSet$label F T\n", - " ham 0.991150442 0.008849558\n", - " spam 1.000000000 0.000000000\n", - "\n", - " peggy\n", - "trainSet$label F T\n", - " ham 0.9942137509 0.0057862491\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " pekisko\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " pen\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " pena\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 1.000000000 0.000000000\n", - "\n", - " penalty\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " pending\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.994166667 0.005833333\n", - "\n", - " penetrate\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " penetration\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " penis\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9758333333 0.0241666667\n", - "\n", - " penls\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " pennsylvania\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " penny\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9825000000 0.0175000000\n", - "\n", - " pennzenergy\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " pennzoil\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " pentagon\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " people\n", - "trainSet$label F T\n", - " ham 0.96936692 0.03063308\n", - " spam 0.93500000 0.06500000\n", - "\n", - " peoples\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " pep\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " per\n", - "trainSet$label F T\n", - " ham 0.92205582 0.07794418\n", - " spam 0.94666667 0.05333333\n", - "\n", - " perceived\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " percent\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.985833333 0.014166667\n", - "\n", - " percentage\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.995833333 0.004166667\n", - "\n", - " percentages\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " perez\n", - "trainSet$label F T\n", - " ham 0.9955752212 0.0044247788\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " perfect\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.965833333 0.034166667\n", - "\n", - " perfected\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " perfectly\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " perfmgmt\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " perforate\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " perform\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.996666667 0.003333333\n", - "\n", - " performance\n", - "trainSet$label F T\n", - " ham 0.98774677 0.01225323\n", - " spam 0.95333333 0.04666667\n", - "\n", - " performances\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " performed\n", - "trainSet$label F T\n", - " ham 0.9976174268 0.0023825732\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " performing\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.993333333 0.006666667\n", - "\n", - " perhaps\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.996666667 0.003333333\n", - "\n", - " period\n", - "trainSet$label F T\n", - " ham 0.960176991 0.039823009\n", - " spam 0.993333333 0.006666667\n", - "\n", - " periods\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 1.000000000 0.000000000\n", - "\n", - " perkins\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 1.000000000 0.000000000\n", - "\n", - " perlman\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " permanent\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.991666667 0.008333333\n", - "\n", - " permanently\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " permissible\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " permission\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " permit\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " permits\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " permitted\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " permitting\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " perry\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " perscriptions\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " persistent\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " person\n", - "trainSet$label F T\n", - " ham 0.97208986 0.02791014\n", - " spam 0.98416667 0.01583333\n", - "\n", - " persona\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " personal\n", - "trainSet$label F T\n", - " ham 0.98842750 0.01157250\n", - " spam 0.97666667 0.02333333\n", - "\n", - " personalized\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " personally\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " personnel\n", - "trainSet$label F T\n", - " ham 0.99285228 0.00714772\n", - " spam 0.99750000 0.00250000\n", - "\n", - " persons\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.996666667 0.003333333\n", - "\n", - " perspective\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " pertain\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " pertaining\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.974166667 0.025833333\n", - "\n", - " pertinent\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " peruse\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " perverse\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " pet\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " pete\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " peter\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.997500000 0.002500000\n", - "\n", - " petition\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " petr\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " petro\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " petrochemical\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " petroieum\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " petrol\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " petroleum\n", - "trainSet$label F T\n", - " ham 0.991150442 0.008849558\n", - " spam 0.994166667 0.005833333\n", - "\n", - " peyton\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " pfizer\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " pfont\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " pge\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " pgev\n", - "trainSet$label F T\n", - " ham 0.99149081 0.00850919\n", - " spam 1.00000000 0.00000000\n", - "\n", - " pgp\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " pgpu\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " pgtt\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " pha\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " pham\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " pharmaceutical\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " pharmacies\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " pharmacy\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.96833333 0.03166667\n", - "\n", - " phase\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " phd\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " phenomenal\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " phentermine\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.985 0.015\n", - "\n", - " phil\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " philadelphia\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " philip\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " philippe\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.998333333 0.001666667\n", - "\n", - " phillip\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 1.000000000 0.000000000\n", - "\n", - " phillips\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 0.998333333 0.001666667\n", - "\n", - " phoenix\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " phone\n", - "trainSet$label F T\n", - " ham 0.96358067 0.03641933\n", - " spam 0.93750000 0.06250000\n", - "\n", - " phoned\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " phones\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.995833333 0.004166667\n", - "\n", - " photo\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.988333333 0.011666667\n", - "\n", - " photos\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.988333333 0.011666667\n", - "\n", - " photoshop\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9675 0.0325\n", - "\n", - " php\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.94416667 0.05583333\n", - "\n", - " phrase\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " phys\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " physical\n", - "trainSet$label F T\n", - " ham 0.98400272 0.01599728\n", - " spam 0.99250000 0.00750000\n", - "\n", - " physician\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " physicians\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " piaced\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.990833333 0.009166667\n", - "\n", - " piaget\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " pians\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.990833333 0.009166667\n", - "\n", - " piay\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " pic\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " pick\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 0.984166667 0.015833333\n", - "\n", - " picked\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " picks\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " picl\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " pico\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " pics\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.991666667 0.008333333\n", - "\n", - " picture\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.986666667 0.013333333\n", - "\n", - " pictures\n", - "trainSet$label F T\n", - " ham 0.992852280 0.007147720\n", - " spam 0.990833333 0.009166667\n", - "\n", - " piease\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98666667 0.01333333\n", - "\n", - " piece\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.995000000 0.005000000\n", - "\n", - " pierce\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " pigged\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " pigging\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " piils\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " pil\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " pilewort\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " pilis\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " pill\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.96833333 0.03166667\n", - "\n", - " pills\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.96416667 0.03583333\n", - "\n", - " pilot\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.998333333 0.001666667\n", - "\n", - " pin\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " pine\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 1.000000000 0.000000000\n", - "\n", - " pinion\n", - "trainSet$label F T\n", - " ham 0.99285228 0.00714772\n", - " spam 1.00000000 0.00000000\n", - "\n", - " pink\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9916666667 0.0083333333\n", - "\n", - " pinnacle\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " pioneer\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " pipe\n", - "trainSet$label F T\n", - " ham 0.976174268 0.023825732\n", - " spam 0.998333333 0.001666667\n", - "\n", - " pipeline\n", - "trainSet$label F T\n", - " ham 0.9506467 0.0493533\n", - " spam 0.9975000 0.0025000\n", - "\n", - " pipelines\n", - "trainSet$label F T\n", - " ham 0.99149081 0.00850919\n", - " spam 1.00000000 0.00000000\n", - "\n", - " piper\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " pipes\n", - "trainSet$label F T\n", - " ham 0.98808713 0.01191287\n", - " spam 1.00000000 0.00000000\n", - "\n", - " piping\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " piracy\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " pisd\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " pit\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " pitre\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " place\n", - "trainSet$label F T\n", - " ham 0.96085773 0.03914227\n", - " spam 0.95000000 0.05000000\n", - "\n", - " placed\n", - "trainSet$label F T\n", - " ham 0.98978897 0.01021103\n", - " spam 0.98750000 0.01250000\n", - "\n", - " places\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.991666667 0.008333333\n", - "\n", - " placing\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " plain\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.962500000 0.037500000\n", - "\n", - " plains\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " plan\n", - "trainSet$label F T\n", - " ham 0.971409122 0.028590878\n", - " spam 0.990833333 0.009166667\n", - "\n", - " plane\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " planet\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " planned\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.998333333 0.001666667\n", - "\n", - " planning\n", - "trainSet$label F T\n", - " ham 0.986725664 0.013274336\n", - " spam 0.993333333 0.006666667\n", - "\n", - " plano\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " plans\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 0.972500000 0.027500000\n", - "\n", - " plant\n", - "trainSet$label F T\n", - " ham 0.9380531 0.0619469\n", - " spam 0.9925000 0.0075000\n", - "\n", - " plants\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 1.000000000 0.000000000\n", - "\n", - " plastic\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " platelet\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " platform\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.995000000 0.005000000\n", - "\n", - " platforms\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " platinum\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " plaxo\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " play\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.979166667 0.020833333\n", - "\n", - " played\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.997500000 0.002500000\n", - "\n", - " player\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.991666667 0.008333333\n", - "\n", - " players\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.995000000 0.005000000\n", - "\n", - " playing\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.994166667 0.005833333\n", - "\n", - " playoff\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " plays\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " plc\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " pleasant\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " please\n", - "trainSet$label F T\n", - " ham 0.562968 0.437032\n", - " spam 0.795000 0.205000\n", - "\n", - " pleased\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.985833333 0.014166667\n", - "\n", - " pleasure\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.98583333 0.01416667\n", - "\n", - " plenty\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.991666667 0.008333333\n", - "\n", - " pleo\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " pleus\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 1.000000000 0.000000000\n", - "\n", - " plll\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " pllls\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " pls\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 1.000000000 0.000000000\n", - "\n", - " plug\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.993333333 0.006666667\n", - "\n", - " pluperfect\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " plus\n", - "trainSet$label F T\n", - " ham 0.98774677 0.01225323\n", - " spam 0.96666667 0.03333333\n", - "\n", - " plz\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " pma\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " pmas\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " pmedbadbu\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " pnbsp\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " pocket\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " pockets\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " poellinger\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " poem\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " point\n", - "trainSet$label F T\n", - " ham 0.94894486 0.05105514\n", - " spam 0.98083333 0.01916667\n", - "\n", - " points\n", - "trainSet$label F T\n", - " ham 0.98434309 0.01565691\n", - " spam 0.99750000 0.00250000\n", - "\n", - " poised\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.990833333 0.009166667\n", - "\n", - " polemic\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " policies\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.996666667 0.003333333\n", - "\n", - " policy\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.993333333 0.006666667\n", - "\n", - " political\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.993333333 0.006666667\n", - "\n", - " politician\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " politicians\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " polk\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " polymerase\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " polymers\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " pompeu\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " pond\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ponderosa\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ponton\n", - "trainSet$label F T\n", - " ham 0.98298162 0.01701838\n", - " spam 1.00000000 0.00000000\n", - "\n", - " pool\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.997500000 0.002500000\n", - "\n", - " pooling\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " pools\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 1.000000000 0.000000000\n", - "\n", - " poor\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.993333333 0.006666667\n", - "\n", - " poorman\n", - "trainSet$label F T\n", - " ham 0.98366236 0.01633764\n", - " spam 1.00000000 0.00000000\n", - "\n", - " pop\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.992500000 0.007500000\n", - "\n", - " pope\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " pops\n", - "trainSet$label F T\n", - " ham 0.96936692 0.03063308\n", - " spam 1.00000000 0.00000000\n", - "\n", - " popular\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9716666667 0.0283333333\n", - "\n", - " populate\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " porn\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98583333 0.01416667\n", - "\n", - " port\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.992500000 0.007500000\n", - "\n", - " portable\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " portal\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " porter\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " portfolio\n", - "trainSet$label F T\n", - " ham 0.97549353 0.02450647\n", - " spam 0.98583333 0.01416667\n", - "\n", - " portfolios\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " portion\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.995833333 0.004166667\n", - "\n", - " portland\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ports\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " portsmouth\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " portugal\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " pose\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " position\n", - "trainSet$label F T\n", - " ham 0.98298162 0.01701838\n", - " spam 0.97500000 0.02500000\n", - "\n", - " positioned\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9908333333 0.0091666667\n", - "\n", - " positioning\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " positions\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.991666667 0.008333333\n", - "\n", - " positive\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.981666667 0.018333333\n", - "\n", - " possession\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.995833333 0.004166667\n", - "\n", - " possibe\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " possibilities\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " possibility\n", - "trainSet$label F T\n", - " ham 0.9945541184 0.0054458816\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " possible\n", - "trainSet$label F T\n", - " ham 0.95915589 0.04084411\n", - " spam 0.96416667 0.03583333\n", - "\n", - " possibly\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.998333333 0.001666667\n", - "\n", - " post\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.988333333 0.011666667\n", - "\n", - " postal\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.995000000 0.005000000\n", - "\n", - " posted\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 1.000000000 0.000000000\n", - "\n", - " posting\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " postpaid\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " potent\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " potentia\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.990833333 0.009166667\n", - "\n", - " potential\n", - "trainSet$label F T\n", - " ham 0.98944860 0.01055140\n", - " spam 0.97416667 0.02583333\n", - "\n", - " potentially\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " pound\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " pounds\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " pour\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " pouvez\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " powder\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.997500000 0.002500000\n", - "\n", - " powell\n", - "trainSet$label F T\n", - " ham 0.9962559564 0.0037440436\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " power\n", - "trainSet$label F T\n", - " ham 0.98502383 0.01497617\n", - " spam 0.96583333 0.03416667\n", - "\n", - " powered\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " powerful\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9808333333 0.0191666667\n", - "\n", - " powerline\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " powerpoint\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " powerquest\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " powers\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " ppa\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ppin\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " ppt\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " practical\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " practice\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.991666667 0.008333333\n", - "\n", - " practices\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995833333 0.004166667\n", - "\n", - " praise\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " praxair\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " pray\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " prayed\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " prayer\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " prayers\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " praying\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " prc\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.997500000 0.002500000\n", - "\n", - " pre\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.985833333 0.014166667\n", - "\n", - " precaution\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " precautionary\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " preceding\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " precious\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " precise\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " predecessor\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " predictions\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.97666667 0.02333333\n", - "\n", - " prefer\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.991666667 0.008333333\n", - "\n", - " preference\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.995833333 0.004166667\n", - "\n", - " preferences\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " preferred\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.995833333 0.004166667\n", - "\n", - " prefix\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " prelim\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " preliminary\n", - "trainSet$label F T\n", - " ham 0.991150442 0.008849558\n", - " spam 1.000000000 0.000000000\n", - "\n", - " premature\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " premier\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " premiere\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9850000000 0.0150000000\n", - "\n", - " premium\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.983333333 0.016666667\n", - "\n", - " prentice\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " preparation\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.987500000 0.012500000\n", - "\n", - " prepare\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 0.997500000 0.002500000\n", - "\n", - " prepared\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.998333333 0.001666667\n", - "\n", - " preparing\n", - "trainSet$label F T\n", - " ham 0.9965963240 0.0034036760\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " presc\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " prescription\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9358333333 0.0641666667\n", - "\n", - " prescriptions\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.985 0.015\n", - "\n", - " prescrlption\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " presence\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.990000000 0.010000000\n", - "\n", - " present\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 0.990000000 0.010000000\n", - "\n", - " presentation\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " presentations\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.997500000 0.002500000\n", - "\n", - " presented\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.998333333 0.001666667\n", - "\n", - " presentiy\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " presently\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.975000000 0.025000000\n", - "\n", - " presents\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " preserve\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " president\n", - "trainSet$label F T\n", - " ham 0.990810075 0.009189925\n", - " spam 0.983333333 0.016666667\n", - "\n", - " press\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.960833333 0.039166667\n", - "\n", - " pressure\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.994166667 0.005833333\n", - "\n", - " prestigious\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " presume\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " pretty\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.992500000 0.007500000\n", - "\n", - " prev\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " prevent\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.995833333 0.004166667\n", - "\n", - " prevented\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " preventing\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " prevention\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " previous\n", - "trainSet$label F T\n", - " ham 0.990810075 0.009189925\n", - " spam 0.993333333 0.006666667\n", - "\n", - " previously\n", - "trainSet$label F T\n", - " ham 0.985364193 0.014635807\n", - " spam 0.995833333 0.004166667\n", - "\n", - " pri\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " price\n", - "trainSet$label F T\n", - " ham 0.897209 0.102791\n", - " spam 0.895000 0.105000\n", - "\n", - " priced\n", - "trainSet$label F T\n", - " ham 0.981960517 0.018039483\n", - " spam 0.994166667 0.005833333\n", - "\n", - " prices\n", - "trainSet$label F T\n", - " ham 0.98672566 0.01327434\n", - " spam 0.89583333 0.10416667\n", - "\n", - " pricess\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " pricing\n", - "trainSet$label F T\n", - " ham 0.97038802 0.02961198\n", - " spam 0.99500000 0.00500000\n", - "\n", - " prick\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " pride\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " priice\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " primarily\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99500000 0.00500000\n", - "\n", - " primary\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 0.992500000 0.007500000\n", - "\n", - " prime\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9900000000 0.0100000000\n", - "\n", - " primezone\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " principal\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.995833333 0.004166667\n", - "\n", - " principle\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " print\n", - "trainSet$label F T\n", - " ham 0.981279782 0.018720218\n", - " spam 0.995833333 0.004166667\n", - "\n", - " printable\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " printed\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " printer\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " printing\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " prior\n", - "trainSet$label F T\n", - " ham 0.96800545 0.03199455\n", - " spam 0.95416667 0.04583333\n", - "\n", - " prioritize\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " priority\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.990833333 0.009166667\n", - "\n", - " privacy\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.981666667 0.018333333\n", - "\n", - " private\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.944166667 0.055833333\n", - "\n", - " privileged\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.997500000 0.002500000\n", - "\n", - " prize\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.990833333 0.009166667\n", - "\n", - " prizes\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " prlces\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " prnewswire\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " pro\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9741666667 0.0258333333\n", - "\n", - " probably\n", - "trainSet$label F T\n", - " ham 0.977535739 0.022464261\n", - " spam 0.994166667 0.005833333\n", - "\n", - " problem\n", - "trainSet$label F T\n", - " ham 0.97004765 0.02995235\n", - " spam 0.97666667 0.02333333\n", - "\n", - " problems\n", - "trainSet$label F T\n", - " ham 0.96936692 0.03063308\n", - " spam 0.97833333 0.02166667\n", - "\n", - " probusiness\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " procedure\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " procedures\n", - "trainSet$label F T\n", - " ham 0.9945541184 0.0054458816\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " proceed\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.998333333 0.001666667\n", - "\n", - " proceeding\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " proceeds\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " process\n", - "trainSet$label F T\n", - " ham 0.96221920 0.03778080\n", - " spam 0.96833333 0.03166667\n", - "\n", - " processed\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.991666667 0.008333333\n", - "\n", - " processes\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.998333333 0.001666667\n", - "\n", - " processing\n", - "trainSet$label F T\n", - " ham 0.98978897 0.01021103\n", - " spam 0.98833333 0.01166667\n", - "\n", - " processor\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " prod\n", - "trainSet$label F T\n", - " ham 0.9887678693 0.0112321307\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " prodigy\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " produce\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9891666667 0.0108333333\n", - "\n", - " produced\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.992500000 0.007500000\n", - "\n", - " producer\n", - "trainSet$label F T\n", - " ham 0.975833901 0.024166099\n", - " spam 0.995833333 0.004166667\n", - "\n", - " producers\n", - "trainSet$label F T\n", - " ham 0.991490810 0.008509190\n", - " spam 0.998333333 0.001666667\n", - "\n", - " produces\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " producing\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.989166667 0.010833333\n", - "\n", - " product\n", - "trainSet$label F T\n", - " ham 0.98842750 0.01157250\n", - " spam 0.92166667 0.07833333\n", - "\n", - " production\n", - "trainSet$label F T\n", - " ham 0.91150442 0.08849558\n", - " spam 0.98166667 0.01833333\n", - "\n", - " productive\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " products\n", - "trainSet$label F T\n", - " ham 0.98672566 0.01327434\n", - " spam 0.91083333 0.08916667\n", - "\n", - " professiona\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " professional\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.939166667 0.060833333\n", - "\n", - " professionals\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " professor\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " profiie\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " profile\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.975000000 0.025000000\n", - "\n", - " profiled\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " profiles\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.989166667 0.010833333\n", - "\n", - " profit\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.983333333 0.016666667\n", - "\n", - " profitability\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " profitable\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.990000000 0.010000000\n", - "\n", - " profits\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.991666667 0.008333333\n", - "\n", - " profound\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " program\n", - "trainSet$label F T\n", - " ham 0.98740640 0.01259360\n", - " spam 0.97333333 0.02666667\n", - "\n", - " programming\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " programs\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.984166667 0.015833333\n", - "\n", - " progress\n", - "trainSet$label F T\n", - " ham 0.9945541184 0.0054458816\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " prohibited\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.997500000 0.002500000\n", - "\n", - " project\n", - "trainSet$label F T\n", - " ham 0.98127978 0.01872022\n", - " spam 0.97583333 0.02416667\n", - "\n", - " projected\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " projecting\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " projection\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " projections\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9775 0.0225\n", - "\n", - " projects\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.970833333 0.029166667\n", - "\n", - " proletariat\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " prolific\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " prom\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " promethe\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " prominent\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " promise\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " promised\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " promises\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " promo\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " promoted\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " promoters\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " promoting\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " promotion\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.995833333 0.004166667\n", - "\n", - " promotional\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " promotions\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 0.992500000 0.007500000\n", - "\n", - " prompt\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.997500000 0.002500000\n", - "\n", - " prompted\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " promptly\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " prop\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " propecia\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.991666667 0.008333333\n", - "\n", - " propel\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " proper\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.990833333 0.009166667\n", - "\n", - " properly\n", - "trainSet$label F T\n", - " ham 0.9931926481 0.0068073519\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " properties\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.989166667 0.010833333\n", - "\n", - " property\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.960833333 0.039166667\n", - "\n", - " proportions\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " proposal\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.992500000 0.007500000\n", - "\n", - " proposals\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " propose\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " proposed\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.995833333 0.004166667\n", - "\n", - " proposition\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " proprietary\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.98500000 0.01500000\n", - "\n", - " prorate\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " prorating\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " prosaic\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " prospect\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " prospective\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " prospects\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9916666667 0.0083333333\n", - "\n", - " prospectus\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " protect\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.990000000 0.010000000\n", - "\n", - " protected\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.996666667 0.003333333\n", - "\n", - " protection\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.987500000 0.012500000\n", - "\n", - " protects\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " protest\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " protocol\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9850000000 0.0150000000\n", - "\n", - " proud\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " prov\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " prove\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.98666667 0.01333333\n", - "\n", - " proved\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " proven\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9791666667 0.0208333333\n", - "\n", - " provide\n", - "trainSet$label F T\n", - " ham 0.96289993 0.03710007\n", - " spam 0.96166667 0.03833333\n", - "\n", - " provided\n", - "trainSet$label F T\n", - " ham 0.98400272 0.01599728\n", - " spam 0.96166667 0.03833333\n", - "\n", - " provider\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.990833333 0.009166667\n", - "\n", - " providers\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.989166667 0.010833333\n", - "\n", - " provides\n", - "trainSet$label F T\n", - " ham 0.98944860 0.01055140\n", - " spam 0.97833333 0.02166667\n", - "\n", - " providing\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.985000000 0.015000000\n", - "\n", - " province\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " provision\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " provisions\n", - "trainSet$label F T\n", - " ham 0.9969366916 0.0030633084\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " proxy\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " prozac\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98166667 0.01833333\n", - "\n", - " psa\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " psalm\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " psalms\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " psig\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " pubiic\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " pubiication\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " pubiisher\n", - "trainSet$label F T\n", - " ham 1.00 0.00\n", - " spam 0.99 0.01\n", - "\n", - " public\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 0.966666667 0.033333333\n", - "\n", - " publication\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.96916667 0.03083333\n", - "\n", - " publications\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " publicly\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " publish\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " published\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.990833333 0.009166667\n", - "\n", - " publisher\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9791666667 0.0208333333\n", - "\n", - " publishing\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " pull\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.992500000 0.007500000\n", - "\n", - " pulled\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 0.998333333 0.001666667\n", - "\n", - " pulling\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 1.000000000 0.000000000\n", - "\n", - " pulp\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " pumper\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " purch\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " purchase\n", - "trainSet$label F T\n", - " ham 0.92886317 0.07113683\n", - " spam 0.96916667 0.03083333\n", - "\n", - " purchased\n", - "trainSet$label F T\n", - " ham 0.981620150 0.018379850\n", - " spam 0.994166667 0.005833333\n", - "\n", - " purchaser\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " purchases\n", - "trainSet$label F T\n", - " ham 0.98400272 0.01599728\n", - " spam 0.99750000 0.00250000\n", - "\n", - " purchasing\n", - "trainSet$label F T\n", - " ham 0.988087134 0.011912866\n", - " spam 0.994166667 0.005833333\n", - "\n", - " pure\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.996666667 0.003333333\n", - "\n", - " purge\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " purpa\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " purpose\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.988333333 0.011666667\n", - "\n", - " purposes\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.984166667 0.015833333\n", - "\n", - " pursuant\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.997500000 0.002500000\n", - "\n", - " pursue\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " push\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.994166667 0.005833333\n", - "\n", - " pussy\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " put\n", - "trainSet$label F T\n", - " ham 0.95473111 0.04526889\n", - " spam 0.97916667 0.02083333\n", - "\n", - " puts\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " putting\n", - "trainSet$label F T\n", - " ham 0.99285228 0.00714772\n", - " spam 0.99750000 0.00250000\n", - "\n", - " pvr\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 1.000000000 0.000000000\n", - "\n", - " pymt\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " qel\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " qtr\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " qty\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " quadrant\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " qualification\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " qualified\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9908333333 0.0091666667\n", - "\n", - " qualify\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9900000000 0.0100000000\n", - "\n", - " qualifying\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " quality\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 0.930000000 0.070000000\n", - "\n", - " quantities\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.986666667 0.013333333\n", - "\n", - " quantity\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.998333333 0.001666667\n", - "\n", - " quark\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.991666667 0.008333333\n", - "\n", - " quarter\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.980000000 0.020000000\n", - "\n", - " quarterly\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " quasar\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " que\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " queen\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " question\n", - "trainSet$label F T\n", - " ham 0.975153165 0.024846835\n", - " spam 0.993333333 0.006666667\n", - "\n", - " questioning\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " questionnaire\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " questions\n", - "trainSet$label F T\n", - " ham 0.8287951 0.1712049\n", - " spam 0.9850000 0.0150000\n", - "\n", - " queue\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " qui\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " quick\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 0.963333333 0.036666667\n", - "\n", - " quickenloans\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " quicker\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.993333333 0.006666667\n", - "\n", - " quickly\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.978333333 0.021666667\n", - "\n", - " quiet\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " quigley\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " quinn\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " quirt\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " quit\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.990833333 0.009166667\n", - "\n", - " quite\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.986666667 0.013333333\n", - "\n", - " quo\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " quot\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " quote\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.986666667 0.013333333\n", - "\n", - " quoted\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.995833333 0.004166667\n", - "\n", - " quotes\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.995833333 0.004166667\n", - "\n", - " raanan\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " rabbit\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " rac\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " race\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " rachel\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " radar\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9916666667 0.0083333333\n", - "\n", - " radiant\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " radical\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " radio\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.993333333 0.006666667\n", - "\n", - " radioshack\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " rado\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " rafah\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " rail\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " railroad\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " rain\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9925000000 0.0075000000\n", - "\n", - " rainbow\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.990833333 0.009166667\n", - "\n", - " raise\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.986666667 0.013333333\n", - "\n", - " raised\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.995833333 0.004166667\n", - "\n", - " raleigh\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " rally\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " ram\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.990833333 0.009166667\n", - "\n", - " ramesh\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ran\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " ranch\n", - "trainSet$label F T\n", - " ham 0.9778761062 0.0221238938\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " randall\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 1.000000000 0.000000000\n", - "\n", - " random\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " randy\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " range\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.980833333 0.019166667\n", - "\n", - " rangel\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ranger\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 1.000000000 0.000000000\n", - "\n", - " rank\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " ranked\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " ranking\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.998333333 0.001666667\n", - "\n", - " rankings\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ranks\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " rao\n", - "trainSet$label F T\n", - " ham 0.9976174268 0.0023825732\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " rapid\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.993333333 0.006666667\n", - "\n", - " rapidly\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " rare\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " rascal\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " rat\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " rate\n", - "trainSet$label F T\n", - " ham 0.96868618 0.03131382\n", - " spam 0.96916667 0.03083333\n", - "\n", - " rates\n", - "trainSet$label F T\n", - " ham 0.98366236 0.01633764\n", - " spam 0.97250000 0.02750000\n", - "\n", - " rather\n", - "trainSet$label F T\n", - " ham 0.989788972 0.010211028\n", - " spam 0.990833333 0.009166667\n", - "\n", - " ratification\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " rating\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9925000000 0.0075000000\n", - "\n", - " ratnala\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " raw\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " ray\n", - "trainSet$label F T\n", - " ham 0.9880871341 0.0119128659\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " raymond\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " rcotten\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " rcs\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " rea\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " reach\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.982500000 0.017500000\n", - "\n", - " reached\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.993333333 0.006666667\n", - "\n", - " reaches\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " read\n", - "trainSet$label F T\n", - " ham 0.97957794 0.02042206\n", - " spam 0.95750000 0.04250000\n", - "\n", - " reader\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " readers\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.96833333 0.03166667\n", - "\n", - " reading\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.994166667 0.005833333\n", - "\n", - " reads\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ready\n", - "trainSet$label F T\n", - " ham 0.98298162 0.01701838\n", - " spam 0.97750000 0.02250000\n", - "\n", - " reaily\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " real\n", - "trainSet$label F T\n", - " ham 0.98978897 0.01021103\n", - " spam 0.94500000 0.05500000\n", - "\n", - " realistic\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " reality\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " realize\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 0.995833333 0.004166667\n", - "\n", - " realized\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " reallocate\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 1.000000000 0.000000000\n", - "\n", - " reallocated\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 1.000000000 0.000000000\n", - "\n", - " reallocates\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " reallocation\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " really\n", - "trainSet$label F T\n", - " ham 0.98400272 0.01599728\n", - " spam 0.97583333 0.02416667\n", - "\n", - " rear\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " reas\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " reason\n", - "trainSet$label F T\n", - " ham 0.98502383 0.01497617\n", - " spam 0.96083333 0.03916667\n", - "\n", - " reasonable\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " reasons\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.986666667 0.013333333\n", - "\n", - " rebecca\n", - "trainSet$label F T\n", - " ham 0.9894486045 0.0105513955\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " rebekah\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " rec\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " recall\n", - "trainSet$label F T\n", - " ham 0.9969366916 0.0030633084\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " recalls\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " recap\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " receipt\n", - "trainSet$label F T\n", - " ham 0.98434309 0.01565691\n", - " spam 0.98083333 0.01916667\n", - "\n", - " receipts\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " receivable\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " receivables\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " receive\n", - "trainSet$label F T\n", - " ham 0.96119809 0.03880191\n", - " spam 0.92916667 0.07083333\n", - "\n", - " received\n", - "trainSet$label F T\n", - " ham 0.94758339 0.05241661\n", - " spam 0.97583333 0.02416667\n", - "\n", - " receives\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.995833333 0.004166667\n", - "\n", - " receiving\n", - "trainSet$label F T\n", - " ham 0.98978897 0.01021103\n", - " spam 0.98250000 0.01750000\n", - "\n", - " recent\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.973333333 0.026666667\n", - "\n", - " recently\n", - "trainSet$label F T\n", - " ham 0.991150442 0.008849558\n", - " spam 0.986666667 0.013333333\n", - "\n", - " receptive\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " recharge\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " recharger\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " recherche\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " reciept\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " recieve\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " recipient\n", - "trainSet$label F T\n", - " ham 0.99285228 0.00714772\n", - " spam 1.00000000 0.00000000\n", - "\n", - " reck\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " reclamation\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " recognition\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " recognize\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " recognized\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " recommend\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.995000000 0.005000000\n", - "\n", - " recommendation\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " recommendations\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " recommended\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.990833333 0.009166667\n", - "\n", - " recommends\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " reconcile\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " reconciled\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " reconciliation\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " record\n", - "trainSet$label F T\n", - " ham 0.98910824 0.01089176\n", - " spam 0.98333333 0.01666667\n", - "\n", - " recorded\n", - "trainSet$label F T\n", - " ham 0.986385296 0.013614704\n", - " spam 0.995833333 0.004166667\n", - "\n", - " recording\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " records\n", - "trainSet$label F T\n", - " ham 0.987406399 0.012593601\n", - " spam 0.994166667 0.005833333\n", - "\n", - " recoup\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " recover\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " recoverable\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " recovery\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " recruiter\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " recruiting\n", - "trainSet$label F T\n", - " ham 0.9976174268 0.0023825732\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " rectiions\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " recurring\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " red\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.981666667 0.018333333\n", - "\n", - " redeliver\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " redelivered\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 1.000000000 0.000000000\n", - "\n", - " redeliveries\n", - "trainSet$label F T\n", - " ham 0.97515317 0.02484683\n", - " spam 1.00000000 0.00000000\n", - "\n", - " redelivery\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 1.000000000 0.000000000\n", - "\n", - " redhead\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " redir\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " redirects\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " redistribute\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " redmond\n", - "trainSet$label F T\n", - " ham 0.9931926481 0.0068073519\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " redraft\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " reduce\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 0.986666667 0.013333333\n", - "\n", - " reduced\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.995000000 0.005000000\n", - "\n", - " reduces\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " reducing\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.997500000 0.002500000\n", - "\n", - " reduction\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.985000000 0.015000000\n", - "\n", - " redundancy\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " ree\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " reed\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.998333333 0.001666667\n", - "\n", - " reeves\n", - "trainSet$label F T\n", - " ham 0.9928522805 0.0071477195\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " ref\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.992500000 0.007500000\n", - "\n", - " refer\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.995000000 0.005000000\n", - "\n", - " reference\n", - "trainSet$label F T\n", - " ham 0.98638530 0.01361470\n", - " spam 0.97916667 0.02083333\n", - "\n", - " referenced\n", - "trainSet$label F T\n", - " ham 0.98298162 0.01701838\n", - " spam 0.98583333 0.01416667\n", - "\n", - " references\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " referred\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " referring\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.998333333 0.001666667\n", - "\n", - " refill\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " refinance\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.991666667 0.008333333\n", - "\n", - " refinery\n", - "trainSet$label F T\n", - " ham 0.9962559564 0.0037440436\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " reflect\n", - "trainSet$label F T\n", - " ham 0.9785568414 0.0214431586\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " reflected\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 1.000000000 0.000000000\n", - "\n", - " reflecting\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " reflects\n", - "trainSet$label F T\n", - " ham 0.9901293397 0.0098706603\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " reform\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.985 0.015\n", - "\n", - " refresh\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " refund\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995833333 0.004166667\n", - "\n", - " refurb\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " refurbished\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " reg\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " regalis\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " regan\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " regard\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.992500000 0.007500000\n", - "\n", - " regarding\n", - "trainSet$label F T\n", - " ham 0.95813479 0.04186521\n", - " spam 0.97916667 0.02083333\n", - "\n", - " regardless\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.994166667 0.005833333\n", - "\n", - " regards\n", - "trainSet$label F T\n", - " ham 0.98264125 0.01735875\n", - " spam 0.94333333 0.05666667\n", - "\n", - " regency\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " regina\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " region\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.991666667 0.008333333\n", - "\n", - " regional\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " regions\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.996666667 0.003333333\n", - "\n", - " register\n", - "trainSet$label F T\n", - " ham 0.991490810 0.008509190\n", - " spam 0.991666667 0.008333333\n", - "\n", - " registered\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.960833333 0.039166667\n", - "\n", - " registering\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " registration\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.990833333 0.009166667\n", - "\n", - " regret\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " regular\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.990000000 0.010000000\n", - "\n", - " regulated\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " regulation\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " regulations\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.993333333 0.006666667\n", - "\n", - " regulatory\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.996666667 0.003333333\n", - "\n", - " reid\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 1.000000000 0.000000000\n", - "\n", - " reiease\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " reieases\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " reiiable\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " reimburse\n", - "trainSet$label F T\n", - " ham 0.9976174268 0.0023825732\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " reimbursement\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " reinhardt\n", - "trainSet$label F T\n", - " ham 0.97447243 0.02552757\n", - " spam 1.00000000 0.00000000\n", - "\n", - " reisz\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " reiterate\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " rejected\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " relate\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " related\n", - "trainSet$label F T\n", - " ham 0.98264125 0.01735875\n", - " spam 0.98166667 0.01833333\n", - "\n", - " relates\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " relating\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.997500000 0.002500000\n", - "\n", - " relation\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.996666667 0.003333333\n", - "\n", - " relations\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.995833333 0.004166667\n", - "\n", - " relationship\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.991666667 0.008333333\n", - "\n", - " relationships\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.995000000 0.005000000\n", - "\n", - " relative\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.997500000 0.002500000\n", - "\n", - " relatively\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " relatives\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " relax\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " relaxant\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " relaxants\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " relaxation\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " release\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 0.970000000 0.030000000\n", - "\n", - " released\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.992500000 0.007500000\n", - "\n", - " releases\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9833333333 0.0166666667\n", - "\n", - " releasing\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " relevant\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.996666667 0.003333333\n", - "\n", - " reliabie\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " reliability\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " reliable\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9800000000 0.0200000000\n", - "\n", - " reliance\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9833333333 0.0166666667\n", - "\n", - " reliant\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 1.000000000 0.000000000\n", - "\n", - " reliantenergy\n", - "trainSet$label F T\n", - " ham 0.98025868 0.01974132\n", - " spam 1.00000000 0.00000000\n", - "\n", - " relied\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.998333333 0.001666667\n", - "\n", - " relief\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.976666667 0.023333333\n", - "\n", - " relieves\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " rely\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " rem\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " remain\n", - "trainSet$label F T\n", - " ham 0.988427502 0.011572498\n", - " spam 0.991666667 0.008333333\n", - "\n", - " remainder\n", - "trainSet$label F T\n", - " ham 0.9938733833 0.0061266167\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " remained\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " remaining\n", - "trainSet$label F T\n", - " ham 0.984683458 0.015316542\n", - " spam 0.994166667 0.005833333\n", - "\n", - " remains\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.995000000 0.005000000\n", - "\n", - " remedy\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.998333333 0.001666667\n", - "\n", - " remember\n", - "trainSet$label F T\n", - " ham 0.98570456 0.01429544\n", - " spam 0.96666667 0.03333333\n", - "\n", - " remind\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.998333333 0.001666667\n", - "\n", - " reminder\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 0.996666667 0.003333333\n", - "\n", - " remittance\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " remitted\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.991666667 0.008333333\n", - "\n", - " remote\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.994166667 0.005833333\n", - "\n", - " remotely\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " removable\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " removal\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.990833333 0.009166667\n", - "\n", - " remove\n", - "trainSet$label F T\n", - " ham 0.99149081 0.00850919\n", - " spam 0.93000000 0.07000000\n", - "\n", - " removed\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.944166667 0.055833333\n", - "\n", - " removes\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " renegotiated\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " renew\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " renewable\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " rental\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " rep\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.994166667 0.005833333\n", - "\n", - " repair\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " repairs\n", - "trainSet$label F T\n", - " ham 0.9955752212 0.0044247788\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " repathed\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " repeated\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " replace\n", - "trainSet$label F T\n", - " ham 0.9948944860 0.0051055140\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " replaced\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.997500000 0.002500000\n", - "\n", - " replacement\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " replacing\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " replica\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.990833333 0.009166667\n", - "\n", - " replicas\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " reply\n", - "trainSet$label F T\n", - " ham 0.98468346 0.01531654\n", - " spam 0.92250000 0.07750000\n", - "\n", - " replying\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " report\n", - "trainSet$label F T\n", - " ham 0.96187883 0.03812117\n", - " spam 0.94166667 0.05833333\n", - "\n", - " reported\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.998333333 0.001666667\n", - "\n", - " reporting\n", - "trainSet$label F T\n", - " ham 0.991150442 0.008849558\n", - " spam 0.994166667 0.005833333\n", - "\n", - " reports\n", - "trainSet$label F T\n", - " ham 0.989448604 0.010551396\n", - " spam 0.993333333 0.006666667\n", - "\n", - " represent\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.975000000 0.025000000\n", - "\n", - " representaciones\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " representation\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " representative\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.974166667 0.025833333\n", - "\n", - " representatives\n", - "trainSet$label F T\n", - " ham 0.9972770592 0.0027229408\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " representing\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " represents\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.992500000 0.007500000\n", - "\n", - " reproduction\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " reps\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " republic\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " request\n", - "trainSet$label F T\n", - " ham 0.96085773 0.03914227\n", - " spam 0.95833333 0.04166667\n", - "\n", - " requested\n", - "trainSet$label F T\n", - " ham 0.972089857 0.027910143\n", - " spam 0.993333333 0.006666667\n", - "\n", - " requesting\n", - "trainSet$label F T\n", - " ham 0.9935330157 0.0064669843\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " requests\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.997500000 0.002500000\n", - "\n", - " require\n", - "trainSet$label F T\n", - " ham 0.99012934 0.00987066\n", - " spam 0.98666667 0.01333333\n", - "\n", - " required\n", - "trainSet$label F T\n", - " ham 0.98774677 0.01225323\n", - " spam 0.94833333 0.05166667\n", - "\n", - " requirement\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " requirements\n", - "trainSet$label F T\n", - " ham 0.98706603 0.01293397\n", - " spam 0.98500000 0.01500000\n", - "\n", - " requires\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.994166667 0.005833333\n", - "\n", - " requiring\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " res\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.997500000 0.002500000\n", - "\n", - " reschedule\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " rescue\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " research\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.984166667 0.015833333\n", - "\n", - " researched\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " resellers\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.97083333 0.02916667\n", - "\n", - " resend\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " resent\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " reservation\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " reservations\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.997500000 0.002500000\n", - "\n", - " reserve\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.997500000 0.002500000\n", - "\n", - " reserved\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.994166667 0.005833333\n", - "\n", - " reserves\n", - "trainSet$label F T\n", - " ham 0.986385296 0.013614704\n", - " spam 0.993333333 0.006666667\n", - "\n", - " reset\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " reside\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " resident\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " residential\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " residue\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " resolution\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.994166667 0.005833333\n", - "\n", - " resolve\n", - "trainSet$label F T\n", - " ham 0.9870660313 0.0129339687\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " resolved\n", - "trainSet$label F T\n", - " ham 0.98706603 0.01293397\n", - " spam 0.99750000 0.00250000\n", - "\n", - " resort\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " resorts\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " resource\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.994166667 0.005833333\n", - "\n", - " resources\n", - "trainSet$label F T\n", - " ham 0.9506467 0.0493533\n", - " spam 0.9925000 0.0075000\n", - "\n", - " respect\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.970000000 0.030000000\n", - "\n", - " respecter\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " respective\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.969166667 0.030833333\n", - "\n", - " respectively\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.996666667 0.003333333\n", - "\n", - " respond\n", - "trainSet$label F T\n", - " ham 0.98604493 0.01395507\n", - " spam 0.99500000 0.00500000\n", - "\n", - " responded\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " response\n", - "trainSet$label F T\n", - " ham 0.98127978 0.01872022\n", - " spam 0.98083333 0.01916667\n", - "\n", - " responses\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 1.000000000 0.000000000\n", - "\n", - " responsibilities\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 1.000000000 0.000000000\n", - "\n", - " responsibility\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 0.996666667 0.003333333\n", - "\n", - " responsible\n", - "trainSet$label F T\n", - " ham 0.98774677 0.01225323\n", - " spam 0.99750000 0.00250000\n", - "\n", - " rest\n", - "trainSet$label F T\n", - " ham 0.98638530 0.01361470\n", - " spam 0.98833333 0.01166667\n", - "\n", - " restart\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " restate\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " restatement\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " restaurant\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " restore\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " restricted\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.998333333 0.001666667\n", - "\n", - " restrictions\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 1.000000000 0.000000000\n", - "\n", - " restructuring\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " resuiting\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " resuits\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98666667 0.01333333\n", - "\n", - " result\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.978333333 0.021666667\n", - "\n", - " resulted\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.995833333 0.004166667\n", - "\n", - " resulting\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.977500000 0.022500000\n", - "\n", - " results\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.935000000 0.065000000\n", - "\n", - " resume\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 0.997500000 0.002500000\n", - "\n", - " resumes\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " retail\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.977500000 0.022500000\n", - "\n", - " retailers\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " retailler\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " retails\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " retain\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.998333333 0.001666667\n", - "\n", - " retains\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " retaking\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " retired\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " retiree\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " retirement\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " retreat\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " retrieval\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " retrieve\n", - "trainSet$label F T\n", - " ham 0.9965963240 0.0034036760\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " retro\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " retroactive\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " retrofit\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " return\n", - "trainSet$label F T\n", - " ham 0.97685500 0.02314500\n", - " spam 0.98833333 0.01166667\n", - "\n", - " returned\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.991666667 0.008333333\n", - "\n", - " returning\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " returns\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.994166667 0.005833333\n", - "\n", - " reuters\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " rev\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 1.000000000 0.000000000\n", - "\n", - " revealed\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.994166667 0.005833333\n", - "\n", - " revealing\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " reveffo\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 1.000000000 0.000000000\n", - "\n", - " revenue\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.982500000 0.017500000\n", - "\n", - " revenues\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.98666667 0.01333333\n", - "\n", - " reverse\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " reversed\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " reves\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " review\n", - "trainSet$label F T\n", - " ham 0.96392103 0.03607897\n", - " spam 0.97416667 0.02583333\n", - "\n", - " reviewed\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.998333333 0.001666667\n", - "\n", - " reviewers\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " reviewing\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.997500000 0.002500000\n", - "\n", - " reviews\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995000000 0.005000000\n", - "\n", - " revise\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.995833333 0.004166667\n", - "\n", - " revised\n", - "trainSet$label F T\n", - " ham 0.963240300 0.036759700\n", - " spam 0.998333333 0.001666667\n", - "\n", - " revising\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " revision\n", - "trainSet$label F T\n", - " ham 0.97515317 0.02484683\n", - " spam 1.00000000 0.00000000\n", - "\n", - " revisions\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 1.000000000 0.000000000\n", - "\n", - " revolutionary\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9841666667 0.0158333333\n", - "\n", - " reward\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " rewards\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.998333333 0.001666667\n", - "\n", - " rewrite\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " rewriter\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " reynolds\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " rfid\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " rfp\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " rgsa\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " rhonda\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.998333333 0.001666667\n", - "\n", - " ric\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " rica\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " rice\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " rich\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.990833333 0.009166667\n", - "\n", - " richard\n", - "trainSet$label F T\n", - " ham 0.98400272 0.01599728\n", - " spam 0.99750000 0.00250000\n", - "\n", - " richardson\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.998333333 0.001666667\n", - "\n", - " richars\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " richmond\n", - "trainSet$label F T\n", - " ham 0.9938733833 0.0061266167\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " rick\n", - "trainSet$label F T\n", - " ham 0.9863853 0.0136147\n", - " spam 1.0000000 0.0000000\n", - "\n", - " ricks\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ricky\n", - "trainSet$label F T\n", - " ham 0.98570456 0.01429544\n", - " spam 0.99750000 0.00250000\n", - "\n", - " rico\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " rid\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99500000 0.00500000\n", - "\n", - " ride\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99500000 0.00500000\n", - "\n", - " rider\n", - "trainSet$label F T\n", - " ham 0.9976174268 0.0023825732\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " ridia\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " rien\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " riesz\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " rig\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " right\n", - "trainSet$label F T\n", - " ham 0.96766508 0.03233492\n", - " spam 0.94333333 0.05666667\n", - "\n", - " rights\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.984166667 0.015833333\n", - "\n", - " riley\n", - "trainSet$label F T\n", - " ham 0.98332199 0.01667801\n", - " spam 1.00000000 0.00000000\n", - "\n", - " ring\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " ringing\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " rings\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " rio\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " ripley\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " ription\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " rise\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.994166667 0.005833333\n", - "\n", - " rising\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " risk\n", - "trainSet$label F T\n", - " ham 0.97957794 0.02042206\n", - " spam 0.96250000 0.03750000\n", - "\n", - " risks\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9675000000 0.0325000000\n", - "\n", - " rita\n", - "trainSet$label F T\n", - " ham 0.96460177 0.03539823\n", - " spam 1.00000000 0.00000000\n", - "\n", - " river\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.990833333 0.009166667\n", - "\n", - " rivers\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 1.000000000 0.000000000\n", - "\n", - " riverside\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " rmm\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " rnd\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.985 0.015\n", - "\n", - " road\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.987500000 0.012500000\n", - "\n", - " roaring\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " rob\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.996666667 0.003333333\n", - "\n", - " roberson\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " robert\n", - "trainSet$label F T\n", - " ham 0.903335602 0.096664398\n", - " spam 0.994166667 0.005833333\n", - "\n", - " roberts\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.998333333 0.001666667\n", - "\n", - " robin\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.996666667 0.003333333\n", - "\n", - " robinson\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.998333333 0.001666667\n", - "\n", - " robotics\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.97083333 0.02916667\n", - "\n", - " rock\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.981666667 0.018333333\n", - "\n", - " rocket\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " rod\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " rodessa\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " rodgers\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " rodney\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " rodriguez\n", - "trainSet$label F T\n", - " ham 0.96970728 0.03029272\n", - " spam 1.00000000 0.00000000\n", - "\n", - " roger\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " rogers\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " rohm\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " role\n", - "trainSet$label F T\n", - " ham 0.991150442 0.008849558\n", - " spam 0.995833333 0.004166667\n", - "\n", - " roles\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " rolex\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98166667 0.01833333\n", - "\n", - " roll\n", - "trainSet$label F T\n", - " ham 0.986725664 0.013274336\n", - " spam 0.995833333 0.004166667\n", - "\n", - " rolled\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.998333333 0.001666667\n", - "\n", - " rolling\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 1.000000000 0.000000000\n", - "\n", - " rollout\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " rom\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.993333333 0.006666667\n", - "\n", - " romano\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " romeo\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ron\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ronald\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ronn\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " ronnie\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " roof\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " room\n", - "trainSet$label F T\n", - " ham 0.988427502 0.011572498\n", - " spam 0.994166667 0.005833333\n", - "\n", - " rooms\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.992500000 0.007500000\n", - "\n", - " roos\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " roper\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " rose\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.998333333 0.001666667\n", - "\n", - " ross\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " roster\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " rotating\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " rough\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " round\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.990000000 0.010000000\n", - "\n", - " route\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " router\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " routine\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " row\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.995833333 0.004166667\n", - "\n", - " rows\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " rowspan\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " roxanne\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " roy\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995000000 0.005000000\n", - "\n", - " royal\n", - "trainSet$label F T\n", - " ham 0.98808713 0.01191287\n", - " spam 0.99750000 0.00250000\n", - "\n", - " royalty\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " rozycki\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " rrc\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " rsn\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " rss\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " rsvp\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " rsweb\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " rtackett\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " rtgage\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " rtu\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " rubble\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " rugged\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " rule\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.995000000 0.005000000\n", - "\n", - " rules\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.993333333 0.006666667\n", - "\n", - " ruling\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " run\n", - "trainSet$label F T\n", - " ham 0.98196052 0.01803948\n", - " spam 0.97916667 0.02083333\n", - "\n", - " running\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 0.988333333 0.011666667\n", - "\n", - " runs\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " rush\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " rusk\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " russ\n", - "trainSet$label F T\n", - " ham 0.9931926481 0.0068073519\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " russell\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " russia\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " rusty\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.997500000 0.002500000\n", - "\n", - " ruth\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.998333333 0.001666667\n", - "\n", - " ryan\n", - "trainSet$label F T\n", - " ham 0.9959155888 0.0040844112\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " saave\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " sabine\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " sabra\n", - "trainSet$label F T\n", - " ham 0.9976174268 0.0023825732\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " sabrae\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 1.000000000 0.000000000\n", - "\n", - " sacrifice\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " sad\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " saf\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " safari\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " safe\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.961666667 0.038333333\n", - "\n", - " safeguard\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " safely\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " safety\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.990833333 0.009166667\n", - "\n", - " said\n", - "trainSet$label F T\n", - " ham 0.96289993 0.03710007\n", - " spam 0.96666667 0.03333333\n", - "\n", - " saies\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " sailing\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " salaam\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " salaries\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " salary\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.997500000 0.002500000\n", - "\n", - " salazar\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " saldana\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " saldivar\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " sale\n", - "trainSet$label F T\n", - " ham 0.93192648 0.06807352\n", - " spam 0.94833333 0.05166667\n", - "\n", - " sales\n", - "trainSet$label F T\n", - " ham 0.96187883 0.03812117\n", - " spam 0.94583333 0.05416667\n", - "\n", - " sally\n", - "trainSet$label F T\n", - " ham 0.9891082369 0.0108917631\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " saloonkeep\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " salt\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995833333 0.004166667\n", - "\n", - " sam\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " sample\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.995833333 0.004166667\n", - "\n", - " samples\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " samson\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.998333333 0.001666667\n", - "\n", - " samsung\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " samuel\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.997500000 0.002500000\n", - "\n", - " san\n", - "trainSet$label F T\n", - " ham 0.989448604 0.010551396\n", - " spam 0.994166667 0.005833333\n", - "\n", - " sanchez\n", - "trainSet$label F T\n", - " ham 0.9952348536 0.0047651464\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " sand\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.991666667 0.008333333\n", - "\n", - " sanders\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " sandi\n", - "trainSet$label F T\n", - " ham 0.99012934 0.00987066\n", - " spam 1.00000000 0.00000000\n", - "\n", - " sandoval\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " sandpaper\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " sandra\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 1.000000000 0.000000000\n", - "\n", - " sands\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " sandy\n", - "trainSet$label F T\n", - " ham 0.9972770592 0.0027229408\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " sanjay\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " sans\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " santa\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " santiago\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " sap\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.998333333 0.001666667\n", - "\n", - " sara\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " sarah\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " sarco\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " sarmiento\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " sat\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.987500000 0.012500000\n", - "\n", - " satellite\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " satisfaction\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9850000000 0.0150000000\n", - "\n", - " satisfactory\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.996666667 0.003333333\n", - "\n", - " satisfied\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9891666667 0.0108333333\n", - "\n", - " satisfy\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " saturday\n", - "trainSet$label F T\n", - " ham 0.98264125 0.01735875\n", - " spam 1.00000000 0.00000000\n", - "\n", - " satx\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " saudi\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " sav\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " save\n", - "trainSet$label F T\n", - " ham 0.991150442 0.008849558\n", - " spam 0.917500000 0.082500000\n", - "\n", - " saved\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.994166667 0.005833333\n", - "\n", - " saves\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " saving\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.991666667 0.008333333\n", - "\n", - " savings\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.982500000 0.017500000\n", - "\n", - " saw\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.989166667 0.010833333\n", - "\n", - " saxet\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 1.000000000 0.000000000\n", - "\n", - " say\n", - "trainSet$label F T\n", - " ham 0.9894486 0.0105514\n", - " spam 0.9600000 0.0400000\n", - "\n", - " saying\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.998333333 0.001666667\n", - "\n", - " says\n", - "trainSet$label F T\n", - " ham 0.98774677 0.01225323\n", - " spam 0.98416667 0.01583333\n", - "\n", - " sbr\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " scada\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " scale\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.995833333 0.004166667\n", - "\n", - " scan\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " scanner\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " scarborough\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " scenario\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " scene\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " schedule\n", - "trainSet$label F T\n", - " ham 0.975493533 0.024506467\n", - " spam 0.995833333 0.004166667\n", - "\n", - " scheduled\n", - "trainSet$label F T\n", - " ham 0.9622192 0.0377808\n", - " spam 0.9975000 0.0025000\n", - "\n", - " scheduler\n", - "trainSet$label F T\n", - " ham 0.991150442 0.008849558\n", - " spam 1.000000000 0.000000000\n", - "\n", - " schedulers\n", - "trainSet$label F T\n", - " ham 0.98808713 0.01191287\n", - " spam 1.00000000 0.00000000\n", - "\n", - " schedules\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " scheduling\n", - "trainSet$label F T\n", - " ham 0.96732471 0.03267529\n", - " spam 1.00000000 0.00000000\n", - "\n", - " schematic\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " schneider\n", - "trainSet$label F T\n", - " ham 0.9870660313 0.0129339687\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " school\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.989166667 0.010833333\n", - "\n", - " schoolchildren\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " schools\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " schoolyard\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " schott\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " schrab\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " schumack\n", - "trainSet$label F T\n", - " ham 0.98093941 0.01906059\n", - " spam 1.00000000 0.00000000\n", - "\n", - " schwarz\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 1.000000000 0.000000000\n", - "\n", - " schwieger\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " science\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " scientific\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " scoop\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " scope\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " scott\n", - "trainSet$label F T\n", - " ham 0.97719537 0.02280463\n", - " spam 0.99750000 0.00250000\n", - "\n", - " scotty\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " scrap\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " screen\n", - "trainSet$label F T\n", - " ham 0.992852280 0.007147720\n", - " spam 0.995833333 0.004166667\n", - "\n", - " screens\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9908333333 0.0091666667\n", - "\n", - " screw\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " scribner\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 1.000000000 0.000000000\n", - "\n", - " script\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " scroll\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.993333333 0.006666667\n", - "\n", - " scsi\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " scuba\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " sds\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 1.000000000 0.000000000\n", - "\n", - " sdsnom\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 1.000000000 0.000000000\n", - "\n", - " sea\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.993333333 0.006666667\n", - "\n", - " seadrift\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " seal\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " seales\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " seaman\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 1.000000000 0.000000000\n", - "\n", - " sean\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.997500000 0.002500000\n", - "\n", - " search\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.976666667 0.023333333\n", - "\n", - " searching\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.993333333 0.006666667\n", - "\n", - " sears\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " season\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.992500000 0.007500000\n", - "\n", - " seasonal\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " seat\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " seating\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " seats\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " sec\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.98250000 0.01750000\n", - "\n", - " second\n", - "trainSet$label F T\n", - " ham 0.98536419 0.01463581\n", - " spam 0.96083333 0.03916667\n", - "\n", - " secondary\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " seconds\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.990833333 0.009166667\n", - "\n", - " secret\n", - "trainSet$label F T\n", - " ham 1.00 0.00\n", - " spam 0.99 0.01\n", - "\n", - " secretary\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " secrets\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " section\n", - "trainSet$label F T\n", - " ham 0.98570456 0.01429544\n", - " spam 0.94250000 0.05750000\n", - "\n", - " sectionl\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " sections\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " sector\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.991666667 0.008333333\n", - "\n", - " sectors\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995833333 0.004166667\n", - "\n", - " secure\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.966666667 0.033333333\n", - "\n", - " secured\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9891666667 0.0108333333\n", - "\n", - " securing\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " securities\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.961666667 0.038333333\n", - "\n", - " security\n", - "trainSet$label F T\n", - " ham 0.99285228 0.00714772\n", - " spam 0.94500000 0.05500000\n", - "\n", - " see\n", - "trainSet$label F T\n", - " ham 0.76106195 0.23893805\n", - " spam 0.91166667 0.08833333\n", - "\n", - " seeing\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.997500000 0.002500000\n", - "\n", - " seek\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.966666667 0.033333333\n", - "\n", - " seeking\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.993333333 0.006666667\n", - "\n", - " seeks\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " seem\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.994166667 0.005833333\n", - "\n", - " seemed\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.997500000 0.002500000\n", - "\n", - " seems\n", - "trainSet$label F T\n", - " ham 0.990810075 0.009189925\n", - " spam 0.997500000 0.002500000\n", - "\n", - " seen\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.981666667 0.018333333\n", - "\n", - " sees\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " segment\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " segments\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " seib\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " seiected\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " sel\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " select\n", - "trainSet$label F T\n", - " ham 0.99149081 0.00850919\n", - " spam 0.99250000 0.00750000\n", - "\n", - " selected\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.967500000 0.032500000\n", - "\n", - " selecting\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " selection\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.990000000 0.010000000\n", - "\n", - " self\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.987500000 0.012500000\n", - "\n", - " sell\n", - "trainSet$label F T\n", - " ham 0.98059905 0.01940095\n", - " spam 0.96083333 0.03916667\n", - "\n", - " seller\n", - "trainSet$label F T\n", - " ham 0.9911504425 0.0088495575\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " selling\n", - "trainSet$label F T\n", - " ham 0.98706603 0.01293397\n", - " spam 0.98916667 0.01083333\n", - "\n", - " sells\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.998333333 0.001666667\n", - "\n", - " seltzer\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " semen\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " semester\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " seminar\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " sempra\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " senate\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " send\n", - "trainSet$label F T\n", - " ham 0.94452008 0.05547992\n", - " spam 0.91166667 0.08833333\n", - "\n", - " sender\n", - "trainSet$label F T\n", - " ham 0.9931926481 0.0068073519\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " sending\n", - "trainSet$label F T\n", - " ham 0.98774677 0.01225323\n", - " spam 0.99500000 0.00500000\n", - "\n", - " sends\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.995000000 0.005000000\n", - "\n", - " seneca\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " senior\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.994166667 0.005833333\n", - "\n", - " sense\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.995000000 0.005000000\n", - "\n", - " sensitive\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " sent\n", - "trainSet$label F T\n", - " ham 0.89006127 0.10993873\n", - " spam 0.91833333 0.08166667\n", - "\n", - " sep\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.998333333 0.001666667\n", - "\n", - " separate\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.996666667 0.003333333\n", - "\n", - " separately\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " separation\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " sepo\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " sept\n", - "trainSet$label F T\n", - " ham 0.9717494894 0.0282505106\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " september\n", - "trainSet$label F T\n", - " ham 0.956092580 0.043907420\n", - " spam 0.995833333 0.004166667\n", - "\n", - " sequence\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " serial\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98666667 0.01333333\n", - "\n", - " series\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.992500000 0.007500000\n", - "\n", - " serious\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9908333333 0.0091666667\n", - "\n", - " serve\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.988333333 0.011666667\n", - "\n", - " served\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.997500000 0.002500000\n", - "\n", - " server\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.975000000 0.025000000\n", - "\n", - " servers\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " service\n", - "trainSet$label F T\n", - " ham 0.96902655 0.03097345\n", - " spam 0.93083333 0.06916667\n", - "\n", - " services\n", - "trainSet$label F T\n", - " ham 0.96426140 0.03573860\n", - " spam 0.95416667 0.04583333\n", - "\n", - " serving\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " session\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.996666667 0.003333333\n", - "\n", - " sessions\n", - "trainSet$label F T\n", - " ham 0.9969366916 0.0030633084\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " set\n", - "trainSet$label F T\n", - " ham 0.93567052 0.06432948\n", - " spam 0.96250000 0.03750000\n", - "\n", - " sets\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.995833333 0.004166667\n", - "\n", - " settelement\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " setting\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 0.996666667 0.003333333\n", - "\n", - " settings\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " settle\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.996666667 0.003333333\n", - "\n", - " settlement\n", - "trainSet$label F T\n", - " ham 0.99149081 0.00850919\n", - " spam 1.00000000 0.00000000\n", - "\n", - " settlements\n", - "trainSet$label F T\n", - " ham 0.98196052 0.01803948\n", - " spam 0.99750000 0.00250000\n", - "\n", - " settling\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " setup\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.997500000 0.002500000\n", - "\n", - " seven\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.990833333 0.009166667\n", - "\n", - " sever\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.998333333 0.001666667\n", - "\n", - " several\n", - "trainSet$label F T\n", - " ham 0.97379170 0.02620830\n", - " spam 0.98666667 0.01333333\n", - "\n", - " severance\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " severe\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " severely\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " severson\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 1.000000000 0.000000000\n", - "\n", - " sex\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9541666667 0.0458333333\n", - "\n", - " sexual\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9758333333 0.0241666667\n", - "\n", - " sexually\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " sexy\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.990833333 0.009166667\n", - "\n", - " sha\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " shah\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " shahnaz\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " shail\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " shake\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " shal\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " shale\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " shall\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.973333333 0.026666667\n", - "\n", - " shane\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " shanghai\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " shank\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " shankman\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " shankster\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " shannon\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.998333333 0.001666667\n", - "\n", - " shape\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.991666667 0.008333333\n", - "\n", - " shaped\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " share\n", - "trainSet$label F T\n", - " ham 0.990810075 0.009189925\n", - " spam 0.977500000 0.022500000\n", - "\n", - " shared\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.993333333 0.006666667\n", - "\n", - " sharehoider\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " shareholder\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9850000000 0.0150000000\n", - "\n", - " shareholders\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99250000 0.00750000\n", - "\n", - " shares\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9700000000 0.0300000000\n", - "\n", - " shareware\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " shari\n", - "trainSet$label F T\n", - " ham 0.9945541184 0.0054458816\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " sharing\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.996666667 0.003333333\n", - "\n", - " sharma\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " sharon\n", - "trainSet$label F T\n", - " ham 0.9921715453 0.0078284547\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " sharp\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9925000000 0.0075000000\n", - "\n", - " shatalmic\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " shaun\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " shawn\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " shawna\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 1.000000000 0.000000000\n", - "\n", - " shed\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " sheet\n", - "trainSet$label F T\n", - " ham 0.98774677 0.01225323\n", - " spam 0.99500000 0.00500000\n", - "\n", - " sheets\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.994166667 0.005833333\n", - "\n", - " sheila\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 1.000000000 0.000000000\n", - "\n", - " shell\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 0.995833333 0.004166667\n", - "\n", - " shelley\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " shells\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " shelly\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " shelton\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " shepherd\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " shepperd\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " sheri\n", - "trainSet$label F T\n", - " ham 0.99149081 0.00850919\n", - " spam 1.00000000 0.00000000\n", - "\n", - " sheridan\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " sherlyn\n", - "trainSet$label F T\n", - " ham 0.97889721 0.02110279\n", - " spam 1.00000000 0.00000000\n", - "\n", - " sherry\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.998333333 0.001666667\n", - "\n", - " shi\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " shift\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.997500000 0.002500000\n", - "\n", - " shiip\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " shimek\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " shining\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " ship\n", - "trainSet$label F T\n", - " ham 0.99285228 0.00714772\n", - " spam 0.97583333 0.02416667\n", - "\n", - " shipment\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.995000000 0.005000000\n", - "\n", - " shipped\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.971666667 0.028333333\n", - "\n", - " shipper\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 1.000000000 0.000000000\n", - "\n", - " shippers\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " shipping\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.948333333 0.051666667\n", - "\n", - " shirley\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " shirt\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " shirts\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " shively\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " shlpp\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " shlpped\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " shoemake\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " shoes\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " shona\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " shoot\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995833333 0.004166667\n", - "\n", - " shooting\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " shop\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.978333333 0.021666667\n", - "\n", - " shopping\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.993333333 0.006666667\n", - "\n", - " shops\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " shore\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " shoreline\n", - "trainSet$label F T\n", - " ham 0.9952348536 0.0047651464\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " short\n", - "trainSet$label F T\n", - " ham 0.98638530 0.01361470\n", - " spam 0.97666667 0.02333333\n", - "\n", - " shortage\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " shortages\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " shortcut\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " shorted\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " shorter\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " shortly\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.995000000 0.005000000\n", - "\n", - " shortname\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " shot\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.994166667 0.005833333\n", - "\n", - " shots\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " shouid\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98833333 0.01166667\n", - "\n", - " shoulder\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " shouldn\n", - "trainSet$label F T\n", - " ham 0.9969366916 0.0030633084\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " shout\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " shove\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " show\n", - "trainSet$label F T\n", - " ham 0.95609258 0.04390742\n", - " spam 0.96750000 0.03250000\n", - "\n", - " showed\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.997500000 0.002500000\n", - "\n", - " shower\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " showing\n", - "trainSet$label F T\n", - " ham 0.979918312 0.020081688\n", - " spam 0.994166667 0.005833333\n", - "\n", - " shown\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.968333333 0.031666667\n", - "\n", - " shows\n", - "trainSet$label F T\n", - " ham 0.97072839 0.02927161\n", - " spam 0.99500000 0.00500000\n", - "\n", - " shrink\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9925000000 0.0075000000\n", - "\n", - " shrinkage\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " shuler\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " shults\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " shut\n", - "trainSet$label F T\n", - " ham 0.98264125 0.01735875\n", - " spam 0.99750000 0.00250000\n", - "\n", - " shutdown\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " shy\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " sick\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.989166667 0.010833333\n", - "\n", - " sid\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " side\n", - "trainSet$label F T\n", - " ham 0.98706603 0.01293397\n", - " spam 0.97250000 0.02750000\n", - "\n", - " sidebacks\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98833333 0.01166667\n", - "\n", - " sidelines\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " sides\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " sie\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " sierra\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " sigma\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " sign\n", - "trainSet$label F T\n", - " ham 0.98604493 0.01395507\n", - " spam 0.98416667 0.01583333\n", - "\n", - " signature\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.994166667 0.005833333\n", - "\n", - " signatures\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " signed\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.991666667 0.008333333\n", - "\n", - " signer\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " significant\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 0.987500000 0.012500000\n", - "\n", - " significantly\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.993333333 0.006666667\n", - "\n", - " signing\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " signs\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " sildenafil\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " silence\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " silent\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " silicon\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " silver\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.991666667 0.008333333\n", - "\n", - " similar\n", - "trainSet$label F T\n", - " ham 0.99149081 0.00850919\n", - " spam 0.98083333 0.01916667\n", - "\n", - " simple\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.98166667 0.01833333\n", - "\n", - " simplified\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " simplify\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " simply\n", - "trainSet$label F T\n", - " ham 0.99012934 0.00987066\n", - " spam 0.97250000 0.02750000\n", - "\n", - " simulators\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " simultaneously\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " simunek\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " since\n", - "trainSet$label F T\n", - " ham 0.95473111 0.04526889\n", - " spam 0.95500000 0.04500000\n", - "\n", - " sincere\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " sincerely\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.977500000 0.022500000\n", - "\n", - " sing\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " singapore\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " singing\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " singla\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " single\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.985833333 0.014166667\n", - "\n", - " singles\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " sinus\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " sioux\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " sir\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98416667 0.01583333\n", - "\n", - " sirius\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " sister\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995000000 0.005000000\n", - "\n", - " sit\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.992500000 0.007500000\n", - "\n", - " sitara\n", - "trainSet$label F T\n", - " ham 0.8910824 0.1089176\n", - " spam 1.0000000 0.0000000\n", - "\n", - " site\n", - "trainSet$label F T\n", - " ham 0.98672566 0.01327434\n", - " spam 0.92083333 0.07916667\n", - "\n", - " sites\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.985000000 0.015000000\n", - "\n", - " sitting\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.995833333 0.004166667\n", - "\n", - " situation\n", - "trainSet$label F T\n", - " ham 0.987406399 0.012593601\n", - " spam 0.994166667 0.005833333\n", - "\n", - " situations\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " six\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.985833333 0.014166667\n", - "\n", - " siz\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " size\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.946666667 0.053333333\n", - "\n", - " sized\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " sizes\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " skel\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " skelaxin\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " skill\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.995833333 0.004166667\n", - "\n", - " skills\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.996666667 0.003333333\n", - "\n", - " skin\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9883333333 0.0116666667\n", - "\n", - " skins\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " sky\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.990833333 0.009166667\n", - "\n", - " skydive\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " skymiles\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " skyrocket\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " sleep\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9866666667 0.0133333333\n", - "\n", - " sleeping\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98916667 0.01083333\n", - "\n", - " sleeve\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " sleight\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " slide\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " slightly\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " slim\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.997500000 0.002500000\n", - "\n", - " slocum\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " slot\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " slots\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " slow\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.994166667 0.005833333\n", - "\n", - " sluts\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " sma\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " smal\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " small\n", - "trainSet$label F T\n", - " ham 0.98366236 0.01633764\n", - " spam 0.97000000 0.03000000\n", - "\n", - " smallcap\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " smaller\n", - "trainSet$label F T\n", - " ham 0.9969366916 0.0030633084\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " smallest\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " smart\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9866666667 0.0133333333\n", - "\n", - " smi\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " smil\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " smile\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " smith\n", - "trainSet$label F T\n", - " ham 0.941797141 0.058202859\n", - " spam 0.995833333 0.004166667\n", - "\n", - " smoke\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " smoked\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " smoking\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9883333333 0.0116666667\n", - "\n", - " smooth\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.997500000 0.002500000\n", - "\n", - " smtp\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.997500000 0.002500000\n", - "\n", - " smuggle\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " smuggling\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " snapshot\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " snow\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " soar\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.991666667 0.008333333\n", - "\n", - " soaring\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " social\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " society\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " sofftwaares\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " soft\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.95833333 0.04166667\n", - "\n", - " softabs\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " softtabs\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.991666667 0.008333333\n", - "\n", - " software\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.932500000 0.067500000\n", - "\n", - " softwares\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " sohne\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " soignet\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " soiicitation\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " sol\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " sold\n", - "trainSet$label F T\n", - " ham 0.98876787 0.01123213\n", - " spam 0.97916667 0.02083333\n", - "\n", - " soldier\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " soldiers\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " sole\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.995000000 0.005000000\n", - "\n", - " solely\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.998333333 0.001666667\n", - "\n", - " solent\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " solicit\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " solicitation\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9716666667 0.0283333333\n", - "\n", - " solid\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98833333 0.01166667\n", - "\n", - " solmonson\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 1.000000000 0.000000000\n", - "\n", - " solution\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.959166667 0.040833333\n", - "\n", - " solutions\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.985000000 0.015000000\n", - "\n", - " solve\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " solved\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " solving\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " som\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " soma\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.97583333 0.02416667\n", - "\n", - " somebody\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " somehow\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.97000000 0.03000000\n", - "\n", - " someone\n", - "trainSet$label F T\n", - " ham 0.96221920 0.03778080\n", - " spam 0.98166667 0.01833333\n", - "\n", - " something\n", - "trainSet$label F T\n", - " ham 0.97004765 0.02995235\n", - " spam 0.98166667 0.01833333\n", - "\n", - " sometime\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 1.000000000 0.000000000\n", - "\n", - " sometimes\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.994166667 0.005833333\n", - "\n", - " somewhat\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " somewhere\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.997500000 0.002500000\n", - "\n", - " son\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.987500000 0.012500000\n", - "\n", - " sonar\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " sonat\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " song\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.994166667 0.005833333\n", - "\n", - " songs\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " sony\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9683333333 0.0316666667\n", - "\n", - " soon\n", - "trainSet$label F T\n", - " ham 0.96324030 0.03675970\n", - " spam 0.97416667 0.02583333\n", - "\n", - " sooner\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.995833333 0.004166667\n", - "\n", - " sophisticated\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " sordo\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " sorenson\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 1.000000000 0.000000000\n", - "\n", - " sorry\n", - "trainSet$label F T\n", - " ham 0.971749489 0.028250511\n", - " spam 0.991666667 0.008333333\n", - "\n", - " sort\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.997500000 0.002500000\n", - "\n", - " sorts\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " sought\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " sound\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.989166667 0.010833333\n", - "\n", - " sounds\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.995833333 0.004166667\n", - "\n", - " source\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.968333333 0.031666667\n", - "\n", - " sources\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.97666667 0.02333333\n", - "\n", - " sourcing\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " south\n", - "trainSet$label F T\n", - " ham 0.98774677 0.01225323\n", - " spam 0.97750000 0.02250000\n", - "\n", - " southeast\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " southern\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.995000000 0.005000000\n", - "\n", - " southwest\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 1.000000000 0.000000000\n", - "\n", - " souza\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 1.000000000 0.000000000\n", - "\n", - " spa\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " space\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.990000000 0.010000000\n", - "\n", - " spacer\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " spain\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " spam\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9566666667 0.0433333333\n", - "\n", - " span\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " spanbr\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " spanish\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " spank\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " sparks\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " spe\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " speak\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.990833333 0.009166667\n", - "\n", - " speaker\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " speakers\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995833333 0.004166667\n", - "\n", - " speaking\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.996666667 0.003333333\n", - "\n", - " spec\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.998333333 0.001666667\n", - "\n", - " specia\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " special\n", - "trainSet$label F T\n", - " ham 0.98400272 0.01599728\n", - " spam 0.91166667 0.08833333\n", - "\n", - " specialist\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.997500000 0.002500000\n", - "\n", - " specializes\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " specializing\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " specially\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9875 0.0125\n", - "\n", - " specials\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.975833333 0.024166667\n", - "\n", - " specialty\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " specific\n", - "trainSet$label F T\n", - " ham 0.98570456 0.01429544\n", - " spam 0.98833333 0.01166667\n", - "\n", - " specifically\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.993333333 0.006666667\n", - "\n", - " specifics\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.998333333 0.001666667\n", - "\n", - " specified\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " specify\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " speckels\n", - "trainSet$label F T\n", - " ham 0.990810075 0.009189925\n", - " spam 1.000000000 0.000000000\n", - "\n", - " specs\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " spectacular\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " specuiative\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " speculative\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98083333 0.01916667\n", - "\n", - " speed\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.985833333 0.014166667\n", - "\n", - " speeds\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " speedway\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " speedy\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " spence\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " spencer\n", - "trainSet$label F T\n", - " ham 0.9911504425 0.0088495575\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " spend\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.992500000 0.007500000\n", - "\n", - " spending\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.995833333 0.004166667\n", - "\n", - " spends\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " spent\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.996666667 0.003333333\n", - "\n", - " sperm\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.990833333 0.009166667\n", - "\n", - " spike\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " spinaker\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " spinnaker\n", - "trainSet$label F T\n", - " ham 0.992852280 0.007147720\n", - " spam 0.998333333 0.001666667\n", - "\n", - " spinner\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " spirit\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.995833333 0.004166667\n", - "\n", - " spite\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " spl\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " split\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 0.995833333 0.004166667\n", - "\n", - " spoke\n", - "trainSet$label F T\n", - " ham 0.9758339006 0.0241660994\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " spoken\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " spokesman\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " sponsor\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.997500000 0.002500000\n", - "\n", - " sponsored\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " sponsors\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.997500000 0.002500000\n", - "\n", - " sport\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " sporting\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " sports\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.995833333 0.004166667\n", - "\n", - " spot\n", - "trainSet$label F T\n", - " ham 0.971749489 0.028250511\n", - " spam 0.994166667 0.005833333\n", - "\n", - " spots\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " spouse\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " sprang\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " spread\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " spreadsheet\n", - "trainSet$label F T\n", - " ham 0.9632403 0.0367597\n", - " spam 1.0000000 0.0000000\n", - "\n", - " spreadsheets\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 1.000000000 0.000000000\n", - "\n", - " spring\n", - "trainSet$label F T\n", - " ham 0.9884275 0.0115725\n", - " spam 0.9975000 0.0025000\n", - "\n", - " springs\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.997500000 0.002500000\n", - "\n", - " spur\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " spyware\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " sql\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9908333333 0.0091666667\n", - "\n", - " square\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.991666667 0.008333333\n", - "\n", - " src\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.985 0.015\n", - "\n", - " srge\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " sri\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " srm\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ssl\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " sta\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " staab\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " stability\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " stablilized\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " stacey\n", - "trainSet$label F T\n", - " ham 0.9734513274 0.0265486726\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " stack\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.998333333 0.001666667\n", - "\n", - " stacy\n", - "trainSet$label F T\n", - " ham 0.9952348536 0.0047651464\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " staff\n", - "trainSet$label F T\n", - " ham 0.98400272 0.01599728\n", - " spam 0.98666667 0.01333333\n", - "\n", - " staffing\n", - "trainSet$label F T\n", - " ham 0.9969366916 0.0030633084\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " stage\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.994166667 0.005833333\n", - "\n", - " stake\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " stakes\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " stalin\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " stamina\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " stan\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " stand\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.987500000 0.012500000\n", - "\n", - " standard\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.982500000 0.017500000\n", - "\n", - " standards\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.996666667 0.003333333\n", - "\n", - " standby\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " standing\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " stands\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.997500000 0.002500000\n", - "\n", - " stanley\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " star\n", - "trainSet$label F T\n", - " ham 0.98332199 0.01667801\n", - " spam 0.99250000 0.00750000\n", - "\n", - " stars\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " start\n", - "trainSet$label F T\n", - " ham 0.96970728 0.03029272\n", - " spam 0.96166667 0.03833333\n", - "\n", - " started\n", - "trainSet$label F T\n", - " ham 0.988087134 0.011912866\n", - " spam 0.990833333 0.009166667\n", - "\n", - " starting\n", - "trainSet$label F T\n", - " ham 0.98332199 0.01667801\n", - " spam 0.98250000 0.01750000\n", - "\n", - " startle\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " starts\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.994166667 0.005833333\n", - "\n", - " startup\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.996666667 0.003333333\n", - "\n", - " state\n", - "trainSet$label F T\n", - " ham 0.98638530 0.01361470\n", - " spam 0.97333333 0.02666667\n", - "\n", - " stated\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.989166667 0.010833333\n", - "\n", - " statement\n", - "trainSet$label F T\n", - " ham 0.9863853 0.0136147\n", - " spam 0.9875000 0.0125000\n", - "\n", - " statements\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.960833333 0.039166667\n", - "\n", - " states\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.953333333 0.046666667\n", - "\n", - " statesmen\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " static\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " stating\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " station\n", - "trainSet$label F T\n", - " ham 0.98910824 0.01089176\n", - " spam 0.99750000 0.00250000\n", - "\n", - " stations\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " status\n", - "trainSet$label F T\n", - " ham 0.981279782 0.018720218\n", - " spam 0.994166667 0.005833333\n", - "\n", - " stay\n", - "trainSet$label F T\n", - " ham 0.986385296 0.013614704\n", - " spam 0.990833333 0.009166667\n", - "\n", - " stayed\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " staying\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.996666667 0.003333333\n", - "\n", - " stays\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.995833333 0.004166667\n", - "\n", - " ste\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " steady\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " steagall\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " steel\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " stella\n", - "trainSet$label F T\n", - " ham 0.989448604 0.010551396\n", - " spam 0.998333333 0.001666667\n", - "\n", - " step\n", - "trainSet$label F T\n", - " ham 0.99285228 0.00714772\n", - " spam 0.98833333 0.01166667\n", - "\n", - " stephanie\n", - "trainSet$label F T\n", - " ham 0.98570456 0.01429544\n", - " spam 0.99750000 0.00250000\n", - "\n", - " stephen\n", - "trainSet$label F T\n", - " ham 0.9894486045 0.0105513955\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " steppe\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " steps\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.995833333 0.004166667\n", - "\n", - " sterling\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.997500000 0.002500000\n", - "\n", - " stern\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " steve\n", - "trainSet$label F T\n", - " ham 0.9523485364 0.0476514636\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " steven\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.998333333 0.001666667\n", - "\n", - " stevens\n", - "trainSet$label F T\n", - " ham 0.9962559564 0.0037440436\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " stewart\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " stick\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " sticker\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " still\n", - "trainSet$label F T\n", - " ham 0.94554118 0.05445882\n", - " spam 0.96166667 0.03833333\n", - "\n", - " stingray\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " stipulate\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " stivers\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 1.000000000 0.000000000\n", - "\n", - " stoc\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " stock\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.945833333 0.054166667\n", - "\n", - " stocks\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.95583333 0.04416667\n", - "\n", - " stokes\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " stomach\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " stone\n", - "trainSet$label F T\n", - " ham 0.969366916 0.030633084\n", - " spam 0.995833333 0.004166667\n", - "\n", - " stones\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " stood\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.994166667 0.005833333\n", - "\n", - " stop\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 0.897500000 0.102500000\n", - "\n", - " stopped\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.997500000 0.002500000\n", - "\n", - " stops\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " storage\n", - "trainSet$label F T\n", - " ham 0.985364193 0.014635807\n", - " spam 0.991666667 0.008333333\n", - "\n", - " store\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.977500000 0.022500000\n", - "\n", - " stores\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.993333333 0.006666667\n", - "\n", - " storey\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " stories\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.993333333 0.006666667\n", - "\n", - " storm\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " story\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.991666667 0.008333333\n", - "\n", - " stoxo\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " str\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " straight\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.991666667 0.008333333\n", - "\n", - " straightening\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " straightforward\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " strange\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " stranger\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 1.000000000 0.000000000\n", - "\n", - " strangers\n", - "trainSet$label F T\n", - " ham 0.98298162 0.01701838\n", - " spam 1.00000000 0.00000000\n", - "\n", - " strap\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " strategic\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.995833333 0.004166667\n", - "\n", - " strategies\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.991666667 0.008333333\n", - "\n", - " strategy\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.985000000 0.015000000\n", - "\n", - " stratified\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " stratton\n", - "trainSet$label F T\n", - " ham 0.9972770592 0.0027229408\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " stream\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.995000000 0.005000000\n", - "\n", - " streaming\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " streamline\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " streams\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " street\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 0.990000000 0.010000000\n", - "\n", - " streets\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " strength\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995000000 0.005000000\n", - "\n", - " strengthen\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " strengths\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " stress\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.994166667 0.005833333\n", - "\n", - " stressed\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " stretch\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.998333333 0.001666667\n", - "\n", - " stretchers\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " strict\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " strictly\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.990000000 0.010000000\n", - "\n", - " strike\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " strip\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " strive\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " stroke\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " strong\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.975000000 0.025000000\n", - "\n", - " stronger\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " strongest\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " strongly\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9925000000 0.0075000000\n", - "\n", - " strongstrongemfont\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " structural\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " structure\n", - "trainSet$label F T\n", - " ham 0.992852280 0.007147720\n", - " spam 0.994166667 0.005833333\n", - "\n", - " structured\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " structuring\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " struggled\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " stuart\n", - "trainSet$label F T\n", - " ham 0.9965963240 0.0034036760\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " stubs\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " stud\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " student\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " students\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.996666667 0.003333333\n", - "\n", - " studies\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " studio\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.985 0.015\n", - "\n", - " study\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.993333333 0.006666667\n", - "\n", - " stuff\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.989166667 0.010833333\n", - "\n", - " stumpage\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " stupid\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " style\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.987500000 0.012500000\n", - "\n", - " sub\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.995833333 0.004166667\n", - "\n", - " subcommittee\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " subject\n", - "trainSet$label F T\n", - " ham 0.61980939 0.38019061\n", - " spam 0.92333333 0.07666667\n", - "\n", - " submission\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " submissions\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " submit\n", - "trainSet$label F T\n", - " ham 0.987066031 0.012933969\n", - " spam 0.995833333 0.004166667\n", - "\n", - " submitted\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 0.998333333 0.001666667\n", - "\n", - " submitting\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " subscribe\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.998333333 0.001666667\n", - "\n", - " subscribed\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " subscriber\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " subscribers\n", - "trainSet$label F T\n", - " ham 1.00 0.00\n", - " spam 0.97 0.03\n", - "\n", - " subscription\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.993333333 0.006666667\n", - "\n", - " subsequent\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " subsequently\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " subsidiaries\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " subsidiary\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " substance\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " substantial\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.993333333 0.006666667\n", - "\n", - " subtotal\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 1.000000000 0.000000000\n", - "\n", - " succeed\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " success\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 0.980000000 0.020000000\n", - "\n", - " successfu\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " successful\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.987500000 0.012500000\n", - "\n", - " successfully\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.995833333 0.004166667\n", - "\n", - " succession\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " sudden\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " sue\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " suemaur\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " suffer\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " suffered\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " suffice\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " sufficient\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " sugar\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99250000 0.00750000\n", - "\n", - " suggest\n", - "trainSet$label F T\n", - " ham 0.986725664 0.013274336\n", - " spam 0.994166667 0.005833333\n", - "\n", - " suggested\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.996666667 0.003333333\n", - "\n", - " suggestion\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " suggestions\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.971666667 0.028333333\n", - "\n", - " suit\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " suite\n", - "trainSet$label F T\n", - " ham 0.97617427 0.02382573\n", - " spam 0.96416667 0.03583333\n", - "\n", - " sukaly\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " sullivan\n", - "trainSet$label F T\n", - " ham 0.990810075 0.009189925\n", - " spam 0.996666667 0.003333333\n", - "\n", - " sum\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9808333333 0.0191666667\n", - "\n", - " summary\n", - "trainSet$label F T\n", - " ham 0.986725664 0.013274336\n", - " spam 0.996666667 0.003333333\n", - "\n", - " summer\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.995000000 0.005000000\n", - "\n", - " sumner\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " sun\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.978333333 0.021666667\n", - "\n", - " sunday\n", - "trainSet$label F T\n", - " ham 0.987746767 0.012253233\n", - " spam 0.995833333 0.004166667\n", - "\n", - " sunny\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " sunrise\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " sunsail\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " suntrust\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " sup\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " super\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.955833333 0.044166667\n", - "\n", - " superb\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " superfast\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " superior\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.995833333 0.004166667\n", - "\n", - " superty\n", - "trainSet$label F T\n", - " ham 0.98400272 0.01599728\n", - " spam 1.00000000 0.00000000\n", - "\n", - " superviagra\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " supervisor\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 1.000000000 0.000000000\n", - "\n", - " supplement\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " supplied\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " supplier\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.994166667 0.005833333\n", - "\n", - " suppliers\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.998333333 0.001666667\n", - "\n", - " supplies\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.991666667 0.008333333\n", - "\n", - " supply\n", - "trainSet$label F T\n", - " ham 0.95234854 0.04765146\n", - " spam 0.98083333 0.01916667\n", - "\n", - " support\n", - "trainSet$label F T\n", - " ham 0.97413206 0.02586794\n", - " spam 0.97083333 0.02916667\n", - "\n", - " supported\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.997500000 0.002500000\n", - "\n", - " supporting\n", - "trainSet$label F T\n", - " ham 0.9976174268 0.0023825732\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " supports\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " suppose\n", - "trainSet$label F T\n", - " ham 0.9976174268 0.0023825732\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " supposed\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 1.000000000 0.000000000\n", - "\n", - " suppresses\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " supra\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " supramax\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " sur\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " sure\n", - "trainSet$label F T\n", - " ham 0.93941457 0.06058543\n", - " spam 0.97666667 0.02333333\n", - "\n", - " surface\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " surfing\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " surge\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " surprise\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " surprised\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " surprisingly\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " survey\n", - "trainSet$label F T\n", - " ham 0.992852280 0.007147720\n", - " spam 0.998333333 0.001666667\n", - "\n", - " surveyed\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " surveys\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " survival\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " survive\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " survivor\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " susan\n", - "trainSet$label F T\n", - " ham 0.9509870660 0.0490129340\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " susie\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " suspect\n", - "trainSet$label F T\n", - " ham 0.9969366916 0.0030633084\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " suspend\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " suspended\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " suspension\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " sustained\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " sutton\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.997500000 0.002500000\n", - "\n", - " suzanne\n", - "trainSet$label F T\n", - " ham 0.990810075 0.009189925\n", - " spam 1.000000000 0.000000000\n", - "\n", - " svajian\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 1.000000000 0.000000000\n", - "\n", - " svcs\n", - "trainSet$label F T\n", - " ham 0.984683458 0.015316542\n", - " spam 0.998333333 0.001666667\n", - "\n", - " swamp\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " swap\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " swarthmore\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " swbell\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " sweeney\n", - "trainSet$label F T\n", - " ham 0.9894486 0.0105514\n", - " spam 1.0000000 0.0000000\n", - "\n", - " sweep\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " sweepstakes\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " sweet\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " sweitzer\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " swiber\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " swift\n", - "trainSet$label F T\n", - " ham 0.989108237 0.010891763\n", - " spam 0.998333333 0.001666667\n", - "\n", - " swing\n", - "trainSet$label F T\n", - " ham 0.97038802 0.02961198\n", - " spam 0.99750000 0.00250000\n", - "\n", - " swings\n", - "trainSet$label F T\n", - " ham 0.9969366916 0.0030633084\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " swinney\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " swisher\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " swiss\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " switch\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " switzerland\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " sybase\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " sylvan\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " sylvia\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.998333333 0.001666667\n", - "\n", - " symbo\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " symbol\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.97583333 0.02416667\n", - "\n", - " syn\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " synthetic\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " syslync\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " system\n", - "trainSet$label F T\n", - " ham 0.93226685 0.06773315\n", - " spam 0.93166667 0.06833333\n", - "\n", - " systems\n", - "trainSet$label F T\n", - " ham 0.98672566 0.01327434\n", - " spam 0.97416667 0.02583333\n", - "\n", - " systemworks\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " szajac\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " tab\n", - "trainSet$label F T\n", - " ham 0.9959155888 0.0040844112\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " table\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.987500000 0.012500000\n", - "\n", - " tablet\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " tablets\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " tabs\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.97166667 0.02833333\n", - "\n", - " tackett\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 1.000000000 0.000000000\n", - "\n", - " tacton\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " tadalafil\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98666667 0.01333333\n", - "\n", - " tag\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9883333333 0.0116666667\n", - "\n", - " tagg\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " tago\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 1.000000000 0.000000000\n", - "\n", - " tags\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " tail\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " tailgate\n", - "trainSet$label F T\n", - " ham 0.98808713 0.01191287\n", - " spam 1.00000000 0.00000000\n", - "\n", - " take\n", - "trainSet$label F T\n", - " ham 0.93533016 0.06466984\n", - " spam 0.89583333 0.10416667\n", - "\n", - " taken\n", - "trainSet$label F T\n", - " ham 0.98468346 0.01531654\n", - " spam 0.98416667 0.01583333\n", - "\n", - " takes\n", - "trainSet$label F T\n", - " ham 0.98638530 0.01361470\n", - " spam 0.98416667 0.01583333\n", - "\n", - " taking\n", - "trainSet$label F T\n", - " ham 0.98298162 0.01701838\n", - " spam 0.97916667 0.02083333\n", - "\n", - " talent\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " talk\n", - "trainSet$label F T\n", - " ham 0.97889721 0.02110279\n", - " spam 0.98666667 0.01333333\n", - "\n", - " talked\n", - "trainSet$label F T\n", - " ham 0.9877467665 0.0122532335\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " talking\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.986666667 0.013333333\n", - "\n", - " tammie\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " tammy\n", - "trainSet$label F T\n", - " ham 0.9921715453 0.0078284547\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " tampon\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " tamu\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " tank\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " tap\n", - "trainSet$label F T\n", - " ham 0.938733833 0.061266167\n", - " spam 0.998333333 0.001666667\n", - "\n", - " tape\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995833333 0.004166667\n", - "\n", - " tapes\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " tara\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.997500000 0.002500000\n", - "\n", - " target\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.975000000 0.025000000\n", - "\n", - " targeted\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.992500000 0.007500000\n", - "\n", - " targeting\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " targets\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " targus\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.97166667 0.02833333\n", - "\n", - " tariff\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " tariffs\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " tasks\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.996666667 0.003333333\n", - "\n", - " taste\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " taught\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " tax\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.980833333 0.019166667\n", - "\n", - " taxes\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.990833333 0.009166667\n", - "\n", - " taylor\n", - "trainSet$label F T\n", - " ham 0.947923758 0.052076242\n", - " spam 0.998333333 0.001666667\n", - "\n", - " tbody\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " tci\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " tdimg\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " tdtd\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " teach\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9925000000 0.0075000000\n", - "\n", - " teacher\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " team\n", - "trainSet$label F T\n", - " ham 0.95881552 0.04118448\n", - " spam 0.98416667 0.01583333\n", - "\n", - " teamlead\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " teamleadership\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " teams\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.997500000 0.002500000\n", - "\n", - " tears\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " tech\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.991666667 0.008333333\n", - "\n", - " techlite\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " technical\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.995000000 0.005000000\n", - "\n", - " technician\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " techniques\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9925000000 0.0075000000\n", - "\n", - " technoiogies\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.990833333 0.009166667\n", - "\n", - " technoiogy\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.991666667 0.008333333\n", - "\n", - " technologies\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.975000000 0.025000000\n", - "\n", - " technology\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.954166667 0.045833333\n", - "\n", - " teco\n", - "trainSet$label F T\n", - " ham 0.92988428 0.07011572\n", - " spam 1.00000000 0.00000000\n", - "\n", - " ted\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " tee\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " teen\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " teenage\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " teenager\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " teens\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " teeth\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " tejas\n", - "trainSet$label F T\n", - " ham 0.98604493 0.01395507\n", - " spam 1.00000000 0.00000000\n", - "\n", - " tejones\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " tel\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.961666667 0.038333333\n", - "\n", - " telecommunications\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " telecoms\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " telephone\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.980000000 0.020000000\n", - "\n", - " telephony\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " television\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.995000000 0.005000000\n", - "\n", - " televisions\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " tell\n", - "trainSet$label F T\n", - " ham 0.98196052 0.01803948\n", - " spam 0.98166667 0.01833333\n", - "\n", - " telling\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " tells\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " temperature\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " template\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " templeton\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " temporarily\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " temporary\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99500000 0.00500000\n", - "\n", - " tempt\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " ten\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.989166667 0.010833333\n", - "\n", - " tenaska\n", - "trainSet$label F T\n", - " ham 0.96187883 0.03812117\n", - " spam 1.00000000 0.00000000\n", - "\n", - " tenn\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " tennessee\n", - "trainSet$label F T\n", - " ham 0.9952348536 0.0047651464\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " tennis\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " tenuate\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " teresa\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " term\n", - "trainSet$label F T\n", - " ham 0.96630361 0.03369639\n", - " spam 0.97583333 0.02416667\n", - "\n", - " termed\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 1.000000000 0.000000000\n", - "\n", - " terminal\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " terminals\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " terminate\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.997500000 0.002500000\n", - "\n", - " terminated\n", - "trainSet$label F T\n", - " ham 0.99149081 0.00850919\n", - " spam 1.00000000 0.00000000\n", - "\n", - " termination\n", - "trainSet$label F T\n", - " ham 0.9908100749 0.0091899251\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " terms\n", - "trainSet$label F T\n", - " ham 0.98842750 0.01157250\n", - " spam 0.96666667 0.03333333\n", - "\n", - " territory\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " terrorism\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " terrorist\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " terry\n", - "trainSet$label F T\n", - " ham 0.98400272 0.01599728\n", - " spam 0.99750000 0.00250000\n", - "\n", - " tess\n", - "trainSet$label F T\n", - " ham 0.9925119129 0.0074880871\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " tessie\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " test\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.987500000 0.012500000\n", - "\n", - " tested\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " tester\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " testimonials\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " testing\n", - "trainSet$label F T\n", - " ham 0.9945541184 0.0054458816\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " tests\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " tetco\n", - "trainSet$label F T\n", - " ham 0.991150442 0.008849558\n", - " spam 1.000000000 0.000000000\n", - "\n", - " tetra\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " tex\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " texaco\n", - "trainSet$label F T\n", - " ham 0.991150442 0.008849558\n", - " spam 0.998333333 0.001666667\n", - "\n", - " texas\n", - "trainSet$label F T\n", - " ham 0.88495575 0.11504425\n", - " spam 0.98916667 0.01083333\n", - "\n", - " texlan\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " texoma\n", - "trainSet$label F T\n", - " ham 0.9894486 0.0105514\n", - " spam 1.0000000 0.0000000\n", - "\n", - " text\n", - "trainSet$label F T\n", - " ham 0.99285228 0.00714772\n", - " spam 0.94833333 0.05166667\n", - "\n", - " textarea\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " tgc\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " tglo\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " tgp\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " thank\n", - "trainSet$label F T\n", - " ham 0.92579986 0.07420014\n", - " spam 0.94666667 0.05333333\n", - "\n", - " thanks\n", - "trainSet$label F T\n", - " ham 0.63002042 0.36997958\n", - " spam 0.94166667 0.05833333\n", - "\n", - " thanksgiving\n", - "trainSet$label F T\n", - " ham 0.9972770592 0.0027229408\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " thatexpress\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " theft\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " thelma\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " theme\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " therapy\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " thereafter\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " thereby\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " therefore\n", - "trainSet$label F T\n", - " ham 0.97651464 0.02348536\n", - " spam 0.98250000 0.01750000\n", - "\n", - " therein\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98416667 0.01583333\n", - "\n", - " thereof\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " theresa\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 1.000000000 0.000000000\n", - "\n", - " theriot\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " theta\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " thick\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " thicket\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " thin\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " thine\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " thing\n", - "trainSet$label F T\n", - " ham 0.990810075 0.009189925\n", - " spam 0.971666667 0.028333333\n", - "\n", - " things\n", - "trainSet$label F T\n", - " ham 0.97685500 0.02314500\n", - " spam 0.97583333 0.02416667\n", - "\n", - " think\n", - "trainSet$label F T\n", - " ham 0.93498979 0.06501021\n", - " spam 0.97333333 0.02666667\n", - "\n", - " thinking\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.997500000 0.002500000\n", - "\n", - " thinks\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.994166667 0.005833333\n", - "\n", - " third\n", - "trainSet$label F T\n", - " ham 0.98876787 0.01123213\n", - " spam 0.95583333 0.04416667\n", - "\n", - " thirty\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99500000 0.00500000\n", - "\n", - " thlt\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " thomas\n", - "trainSet$label F T\n", - " ham 0.97651464 0.02348536\n", - " spam 0.99250000 0.00750000\n", - "\n", - " thompson\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.997500000 0.002500000\n", - "\n", - " thompsonville\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 1.000000000 0.000000000\n", - "\n", - " thorough\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.985000000 0.015000000\n", - "\n", - " thou\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " though\n", - "trainSet$label F T\n", - " ham 0.98196052 0.01803948\n", - " spam 0.98083333 0.01916667\n", - "\n", - " thought\n", - "trainSet$label F T\n", - " ham 0.97481280 0.02518720\n", - " spam 0.98166667 0.01833333\n", - "\n", - " thoughts\n", - "trainSet$label F T\n", - " ham 0.991150442 0.008849558\n", - " spam 0.997500000 0.002500000\n", - "\n", - " thousand\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.960000000 0.040000000\n", - "\n", - " thousands\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9741666667 0.0258333333\n", - "\n", - " thr\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " three\n", - "trainSet$label F T\n", - " ham 0.97617427 0.02382573\n", - " spam 0.96166667 0.03833333\n", - "\n", - " thresa\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " throughout\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.987500000 0.012500000\n", - "\n", - " throughput\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " throw\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99500000 0.00500000\n", - "\n", - " thru\n", - "trainSet$label F T\n", - " ham 0.970728387 0.029271613\n", - " spam 0.996666667 0.003333333\n", - "\n", - " thruway\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " thu\n", - "trainSet$label F T\n", - " ham 0.98774677 0.01225323\n", - " spam 0.99500000 0.00500000\n", - "\n", - " thumb\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " thurs\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " thursday\n", - "trainSet$label F T\n", - " ham 0.954390742 0.045609258\n", - " spam 0.990833333 0.009166667\n", - "\n", - " thus\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.990000000 0.010000000\n", - "\n", - " tick\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " ticker\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " ticket\n", - "trainSet$label F T\n", - " ham 0.91558884 0.08441116\n", - " spam 0.99000000 0.01000000\n", - "\n", - " ticketing\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " tickets\n", - "trainSet$label F T\n", - " ham 0.964601770 0.035398230\n", - " spam 0.998333333 0.001666667\n", - "\n", - " ticnet\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " tie\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.995833333 0.004166667\n", - "\n", - " tied\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.998333333 0.001666667\n", - "\n", - " tier\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.995833333 0.004166667\n", - "\n", - " tiered\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " tiffany\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " tiger\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " tight\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995000000 0.005000000\n", - "\n", - " till\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.991666667 0.008333333\n", - "\n", - " tillison\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " tim\n", - "trainSet$label F T\n", - " ham 0.991150442 0.008849558\n", - " spam 0.998333333 0.001666667\n", - "\n", - " time\n", - "trainSet$label F T\n", - " ham 0.8897209 0.1102791\n", - " spam 0.8191667 0.1808333\n", - "\n", - " timed\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " timeline\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " timelines\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " timely\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.997500000 0.002500000\n", - "\n", - " times\n", - "trainSet$label F T\n", - " ham 0.98536419 0.01463581\n", - " spam 0.97583333 0.02416667\n", - "\n", - " timing\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.984166667 0.015833333\n", - "\n", - " timothy\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " timpowell\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " tina\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.998333333 0.001666667\n", - "\n", - " tion\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " tip\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " tippery\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " tips\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " tired\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9883333333 0.0116666667\n", - "\n", - " tires\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " tirr\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " tisdale\n", - "trainSet$label F T\n", - " ham 0.98264125 0.01735875\n", - " spam 1.00000000 0.00000000\n", - "\n", - " tissue\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " title\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.955000000 0.045000000\n", - "\n", - " titles\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.98083333 0.01916667\n", - "\n", - " tivoli\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " tks\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " tnray\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " tobacco\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " tocks\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " today\n", - "trainSet$label F T\n", - " ham 0.92818244 0.07181756\n", - " spam 0.88500000 0.11500000\n", - "\n", - " todays\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " todd\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 1.000000000 0.000000000\n", - "\n", - " together\n", - "trainSet$label F T\n", - " ham 0.97549353 0.02450647\n", - " spam 0.98583333 0.01416667\n", - "\n", - " togs\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " tol\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " told\n", - "trainSet$label F T\n", - " ham 0.98162015 0.01837985\n", - " spam 0.98916667 0.01083333\n", - "\n", - " toll\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " tom\n", - "trainSet$label F T\n", - " ham 0.9509870660 0.0490129340\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " tomcat\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " tommy\n", - "trainSet$label F T\n", - " ham 0.9965963240 0.0034036760\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " tomorrow\n", - "trainSet$label F T\n", - " ham 0.964601770 0.035398230\n", - " spam 0.996666667 0.003333333\n", - "\n", - " ton\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " tone\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " tongue\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9825000000 0.0175000000\n", - "\n", - " toni\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.998333333 0.001666667\n", - "\n", - " tonight\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.990000000 0.010000000\n", - "\n", - " tonk\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " tons\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " tony\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.996666667 0.003333333\n", - "\n", - " tonya\n", - "trainSet$label F T\n", - " ham 0.9965963240 0.0034036760\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " took\n", - "trainSet$label F T\n", - " ham 0.98672566 0.01327434\n", - " spam 0.98500000 0.01500000\n", - "\n", - " tool\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.990833333 0.009166667\n", - "\n", - " toolbar\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " tools\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.990833333 0.009166667\n", - "\n", - " top\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 0.952500000 0.047500000\n", - "\n", - " topic\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.995833333 0.004166667\n", - "\n", - " topica\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 1.000000000 0.000000000\n", - "\n", - " topics\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.997500000 0.002500000\n", - "\n", - " tor\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " torch\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " tori\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " toronto\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " torrey\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " toshiba\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.97166667 0.02833333\n", - "\n", - " total\n", - "trainSet$label F T\n", - " ham 0.94417971 0.05582029\n", - " spam 0.96166667 0.03833333\n", - "\n", - " totaling\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " totally\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.993333333 0.006666667\n", - "\n", - " totals\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 1.000000000 0.000000000\n", - "\n", - " touch\n", - "trainSet$label F T\n", - " ham 0.992852280 0.007147720\n", - " spam 0.993333333 0.006666667\n", - "\n", - " touched\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.997500000 0.002500000\n", - "\n", - " tough\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " tour\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.995000000 0.005000000\n", - "\n", - " tournament\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " tournaments\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " toward\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.997500000 0.002500000\n", - "\n", - " towards\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.994166667 0.005833333\n", - "\n", - " town\n", - "trainSet$label F T\n", - " ham 0.9925119129 0.0074880871\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " toy\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " tpa\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " trabulsi\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " trace\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " tracing\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " track\n", - "trainSet$label F T\n", - " ham 0.986385296 0.013614704\n", - " spam 0.993333333 0.006666667\n", - "\n", - " tracked\n", - "trainSet$label F T\n", - " ham 0.98230088 0.01769912\n", - " spam 1.00000000 0.00000000\n", - "\n", - " tracker\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " tracking\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.991666667 0.008333333\n", - "\n", - " tracks\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " tracy\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " trade\n", - "trainSet$label F T\n", - " ham 0.97345133 0.02654867\n", - " spam 0.96500000 0.03500000\n", - "\n", - " traded\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.993333333 0.006666667\n", - "\n", - " trademark\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " trademarks\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9700000000 0.0300000000\n", - "\n", - " trader\n", - "trainSet$label F T\n", - " ham 0.98604493 0.01395507\n", - " spam 1.00000000 0.00000000\n", - "\n", - " traders\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 0.995833333 0.004166667\n", - "\n", - " trades\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.998333333 0.001666667\n", - "\n", - " tradestar\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " trading\n", - "trainSet$label F T\n", - " ham 0.96902655 0.03097345\n", - " spam 0.97666667 0.02333333\n", - "\n", - " tradition\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " traditional\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " traffic\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " trail\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " trailer\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " trailers\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " train\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " training\n", - "trainSet$label F T\n", - " ham 0.98774677 0.01225323\n", - " spam 0.99750000 0.00250000\n", - "\n", - " tram\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " tramadol\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " trans\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " transact\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " transacted\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " transaction\n", - "trainSet$label F T\n", - " ham 0.97038802 0.02961198\n", - " spam 0.98250000 0.01750000\n", - "\n", - " transactional\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " transactions\n", - "trainSet$label F T\n", - " ham 0.9874064 0.0125936\n", - " spam 0.9950000 0.0050000\n", - "\n", - " transco\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 1.000000000 0.000000000\n", - "\n", - " transcription\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " transfer\n", - "trainSet$label F T\n", - " ham 0.99285228 0.00714772\n", - " spam 0.97166667 0.02833333\n", - "\n", - " transferred\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " transferring\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " transfers\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " transforming\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " transistion\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " transition\n", - "trainSet$label F T\n", - " ham 0.9853641933 0.0146358067\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " transmission\n", - "trainSet$label F T\n", - " ham 0.99149081 0.00850919\n", - " spam 0.99750000 0.00250000\n", - "\n", - " transmitted\n", - "trainSet$label F T\n", - " ham 0.9965963240 0.0034036760\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " transport\n", - "trainSet$label F T\n", - " ham 0.948264125 0.051735875\n", - " spam 0.993333333 0.006666667\n", - "\n", - " transportation\n", - "trainSet$label F T\n", - " ham 0.98264125 0.01735875\n", - " spam 0.99500000 0.00500000\n", - "\n", - " transported\n", - "trainSet$label F T\n", - " ham 0.9952348536 0.0047651464\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " transports\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " tras\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " travel\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.992500000 0.007500000\n", - "\n", - " traveler\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " travelers\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " traveling\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " travis\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " treasure\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " treasury\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " treat\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " treated\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.989166667 0.010833333\n", - "\n", - " treating\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " treatment\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.978333333 0.021666667\n", - "\n", - " tree\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " trees\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " tremendous\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " trend\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " trends\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " trevino\n", - "trainSet$label F T\n", - " ham 0.9904697073 0.0095302927\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " trey\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 1.000000000 0.000000000\n", - "\n", - " tri\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 0.993333333 0.006666667\n", - "\n", - " trial\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9866666667 0.0133333333\n", - "\n", - " tribute\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " tricia\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " tricks\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " tried\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.980000000 0.020000000\n", - "\n", - " trigger\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " trillion\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " trini\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " trip\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.994166667 0.005833333\n", - "\n", - " triphasil\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " triple\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99500000 0.00500000\n", - "\n", - " trips\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.994166667 0.005833333\n", - "\n", - " trisha\n", - "trainSet$label F T\n", - " ham 0.9942137509 0.0057862491\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " trivia\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " trochta\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " troops\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " trouble\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.995000000 0.005000000\n", - "\n", - " troubles\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " troy\n", - "trainSet$label F T\n", - " ham 0.9863853 0.0136147\n", - " spam 1.0000000 0.0000000\n", - "\n", - " trtd\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " trtrtd\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " truck\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " true\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.986666667 0.013333333\n", - "\n", - " truly\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.992500000 0.007500000\n", - "\n", - " truong\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " truro\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " trust\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.990833333 0.009166667\n", - "\n", - " trusted\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " trustworthy\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " truth\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " try\n", - "trainSet$label F T\n", - " ham 0.97957794 0.02042206\n", - " spam 0.95666667 0.04333333\n", - "\n", - " trying\n", - "trainSet$label F T\n", - " ham 0.97821647 0.02178353\n", - " spam 0.99250000 0.00750000\n", - "\n", - " tsp\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " tsteel\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " tube\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " tudor\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " tue\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.989166667 0.010833333\n", - "\n", - " tues\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " tuesday\n", - "trainSet$label F T\n", - " ham 0.96085773 0.03914227\n", - " spam 0.99000000 0.01000000\n", - "\n", - " tufco\n", - "trainSet$label F T\n", - " ham 0.98706603 0.01293397\n", - " spam 1.00000000 0.00000000\n", - "\n", - " tulsa\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.998333333 0.001666667\n", - "\n", - " tune\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.998333333 0.001666667\n", - "\n", - " tunnels\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " turbine\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " turbotax\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " turkey\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " turn\n", - "trainSet$label F T\n", - " ham 0.990810075 0.009189925\n", - " spam 0.978333333 0.021666667\n", - "\n", - " turnaround\n", - "trainSet$label F T\n", - " ham 0.9962559564 0.0037440436\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " turned\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.990833333 0.009166667\n", - "\n", - " turning\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995000000 0.005000000\n", - "\n", - " turnkey\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " twa\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " twelve\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " twenty\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9866666667 0.0133333333\n", - "\n", - " twice\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.995000000 0.005000000\n", - "\n", - " twit\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " two\n", - "trainSet$label F T\n", - " ham 0.94043567 0.05956433\n", - " spam 0.94083333 0.05916667\n", - "\n", - " txu\n", - "trainSet$label F T\n", - " ham 0.97072839 0.02927161\n", - " spam 1.00000000 0.00000000\n", - "\n", - " tyler\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " type\n", - "trainSet$label F T\n", - " ham 0.97515317 0.02484683\n", - " spam 0.96750000 0.03250000\n", - "\n", - " typed\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " types\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.993333333 0.006666667\n", - "\n", - " typically\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.998333333 0.001666667\n", - "\n", - " uacp\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " uae\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.97333333 0.02666667\n", - "\n", - " uauthorize\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " udve\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " uhc\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " ulead\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " ultimate\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.992500000 0.007500000\n", - "\n", - " ultimately\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " ultram\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " ume\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " unable\n", - "trainSet$label F T\n", - " ham 0.988087134 0.011912866\n", - " spam 0.998333333 0.001666667\n", - "\n", - " unaccounted\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 1.000000000 0.000000000\n", - "\n", - " unassigned\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " unauthorised\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " unauthorized\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.996666667 0.003333333\n", - "\n", - " uncertainties\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9675 0.0325\n", - "\n", - " unchristian\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " unclaimed\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " und\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9933333333 0.0066666667\n", - "\n", - " underground\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " understand\n", - "trainSet$label F T\n", - " ham 0.982981620 0.017018380\n", - " spam 0.994166667 0.005833333\n", - "\n", - " understanding\n", - "trainSet$label F T\n", - " ham 0.98162015 0.01837985\n", - " spam 0.99250000 0.00750000\n", - "\n", - " understands\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.977500000 0.022500000\n", - "\n", - " understood\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.975833333 0.024166667\n", - "\n", - " undertake\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " undervalued\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98166667 0.01833333\n", - "\n", - " underway\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " undiscovered\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " undue\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98833333 0.01166667\n", - "\n", - " une\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " unfinaled\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " unfortunately\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 0.995000000 0.005000000\n", - "\n", - " unheard\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " unify\n", - "trainSet$label F T\n", - " ham 0.96562287 0.03437713\n", - " spam 1.00000000 0.00000000\n", - "\n", - " union\n", - "trainSet$label F T\n", - " ham 0.98264125 0.01735875\n", - " spam 0.99500000 0.00500000\n", - "\n", - " unique\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9733333333 0.0266666667\n", - "\n", - " unit\n", - "trainSet$label F T\n", - " ham 0.982300885 0.017699115\n", - " spam 0.993333333 0.006666667\n", - "\n", - " united\n", - "trainSet$label F T\n", - " ham 0.991150442 0.008849558\n", - " spam 0.964166667 0.035833333\n", - "\n", - " units\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.990833333 0.009166667\n", - "\n", - " universal\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " universitat\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " university\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99250000 0.00750000\n", - "\n", - " unix\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " unknown\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.993333333 0.006666667\n", - "\n", - " unlawful\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " unless\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.990000000 0.010000000\n", - "\n", - " unlike\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " unlimited\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9875000000 0.0125000000\n", - "\n", - " unmetered\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " unnecessary\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " unopened\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " unparalleled\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " unpathed\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " unprecedented\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " unresolved\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " unscrupulous\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " unsere\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " unshipped\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " unsub\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " unsubscribe\n", - "trainSet$label F T\n", - " ham 0.9874064 0.0125936\n", - " spam 0.9550000 0.0450000\n", - "\n", - " unsubscription\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98666667 0.01333333\n", - "\n", - " unsuitable\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " unusual\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " unwanted\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " upcoming\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.995000000 0.005000000\n", - "\n", - " update\n", - "trainSet$label F T\n", - " ham 0.96664398 0.03335602\n", - " spam 0.98166667 0.01833333\n", - "\n", - " updated\n", - "trainSet$label F T\n", - " ham 0.97651464 0.02348536\n", - " spam 0.99000000 0.01000000\n", - "\n", - " updates\n", - "trainSet$label F T\n", - " ham 0.990810075 0.009189925\n", - " spam 0.994166667 0.005833333\n", - "\n", - " updating\n", - "trainSet$label F T\n", - " ham 0.9965963240 0.0034036760\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " upgrade\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.993333333 0.006666667\n", - "\n", - " upgrades\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " upload\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " upon\n", - "trainSet$label F T\n", - " ham 0.98944860 0.01055140\n", - " spam 0.96916667 0.03083333\n", - "\n", - " upper\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " ups\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " upset\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " upsets\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " upstream\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 1.000000000 0.000000000\n", - "\n", - " upto\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " upward\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " upwards\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " ural\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " urbanek\n", - "trainSet$label F T\n", - " ham 0.99285228 0.00714772\n", - " spam 1.00000000 0.00000000\n", - "\n", - " urge\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.991666667 0.008333333\n", - "\n", - " urgent\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.987500000 0.012500000\n", - "\n", - " urgently\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " uribe\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " url\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.991666667 0.008333333\n", - "\n", - " usa\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.960833333 0.039166667\n", - "\n", - " usage\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.991666667 0.008333333\n", - "\n", - " usb\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9900000000 0.0100000000\n", - "\n", - " usd\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.989166667 0.010833333\n", - "\n", - " use\n", - "trainSet$label F T\n", - " ham 0.94622192 0.05377808\n", - " spam 0.90083333 0.09916667\n", - "\n", - " used\n", - "trainSet$label F T\n", - " ham 0.97277059 0.02722941\n", - " spam 0.96166667 0.03833333\n", - "\n", - " useful\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " user\n", - "trainSet$label F T\n", - " ham 0.98978897 0.01021103\n", - " spam 0.98083333 0.01916667\n", - "\n", - " username\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " users\n", - "trainSet$label F T\n", - " ham 0.99149081 0.00850919\n", - " spam 0.98750000 0.01250000\n", - "\n", - " uses\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.991666667 0.008333333\n", - "\n", - " using\n", - "trainSet$label F T\n", - " ham 0.97072839 0.02927161\n", - " spam 0.95500000 0.04500000\n", - "\n", - " usr\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " usual\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.998333333 0.001666667\n", - "\n", - " usually\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.995000000 0.005000000\n", - "\n", - " utah\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " utilities\n", - "trainSet$label F T\n", - " ham 0.9727705922 0.0272294078\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " utility\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.998333333 0.001666667\n", - "\n", - " utilize\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.995833333 0.004166667\n", - "\n", - " utilized\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " utilizes\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " utilizing\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.994166667 0.005833333\n", - "\n", - " utmost\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " uvre\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " vacation\n", - "trainSet$label F T\n", - " ham 0.9850238257 0.0149761743\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " vagra\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " vaiium\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " vaiue\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " val\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " valadez\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 1.000000000 0.000000000\n", - "\n", - " valdes\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " valentin\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " valerie\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " valero\n", - "trainSet$label F T\n", - " ham 0.9894486 0.0105514\n", - " spam 1.0000000 0.0000000\n", - "\n", - " valid\n", - "trainSet$label F T\n", - " ham 0.97515317 0.02484683\n", - " spam 0.99000000 0.01000000\n", - "\n", - " validate\n", - "trainSet$label F T\n", - " ham 0.9982981620 0.0017018380\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " validation\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.998333333 0.001666667\n", - "\n", - " validity\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " valign\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " valium\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.96916667 0.03083333\n", - "\n", - " valley\n", - "trainSet$label F T\n", - " ham 0.971749489 0.028250511\n", - " spam 0.998333333 0.001666667\n", - "\n", - " vallum\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " valtrex\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " valuable\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.991666667 0.008333333\n", - "\n", - " value\n", - "trainSet$label F T\n", - " ham 0.98706603 0.01293397\n", - " spam 0.97833333 0.02166667\n", - "\n", - " valued\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.990000000 0.010000000\n", - "\n", - " values\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.997500000 0.002500000\n", - "\n", - " valve\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 1.000000000 0.000000000\n", - "\n", - " valves\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " valving\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " van\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.997500000 0.002500000\n", - "\n", - " vance\n", - "trainSet$label F T\n", - " ham 0.942477876 0.057522124\n", - " spam 0.998333333 0.001666667\n", - "\n", - " vances\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " vancouver\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " vandenberg\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " vanessa\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " vaniqa\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " var\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " variance\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 1.000000000 0.000000000\n", - "\n", - " variances\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 1.000000000 0.000000000\n", - "\n", - " variety\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.986666667 0.013333333\n", - "\n", - " various\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.980833333 0.019166667\n", - "\n", - " varou\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.991666667 0.008333333\n", - "\n", - " vary\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.995000000 0.005000000\n", - "\n", - " vast\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " vastar\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " vaughn\n", - "trainSet$label F T\n", - " ham 0.9952348536 0.0047651464\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " vcsc\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " vegas\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.985833333 0.014166667\n", - "\n", - " vehicle\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " vela\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " vendor\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " vente\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " venturatos\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 1.000000000 0.000000000\n", - "\n", - " venture\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.991666667 0.008333333\n", - "\n", - " ventures\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.995833333 0.004166667\n", - "\n", - " vera\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " verdana\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " verge\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.985 0.015\n", - "\n", - " verification\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.994166667 0.005833333\n", - "\n", - " verified\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 0.997500000 0.002500000\n", - "\n", - " verify\n", - "trainSet$label F T\n", - " ham 0.981620150 0.018379850\n", - " spam 0.996666667 0.003333333\n", - "\n", - " verizon\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " vernon\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " veronica\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " versen\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " version\n", - "trainSet$label F T\n", - " ham 0.98876787 0.01123213\n", - " spam 0.96750000 0.03250000\n", - "\n", - " versions\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " versionsfeatures\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " versus\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.994166667 0.005833333\n", - "\n", - " vertical\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " vest\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " veterans\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " via\n", - "trainSet$label F T\n", - " ham 0.97515317 0.02484683\n", - " spam 0.93583333 0.06416667\n", - "\n", - " viable\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " viagr\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " viagra\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.93583333 0.06416667\n", - "\n", - " vic\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " vice\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.997500000 0.002500000\n", - "\n", - " vicente\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " vicodin\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98083333 0.01916667\n", - "\n", - " victor\n", - "trainSet$label F T\n", - " ham 0.98230088 0.01769912\n", - " spam 1.00000000 0.00000000\n", - "\n", - " victoria\n", - "trainSet$label F T\n", - " ham 0.989448604 0.010551396\n", - " spam 0.998333333 0.001666667\n", - "\n", - " video\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 0.980833333 0.019166667\n", - "\n", - " videos\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9866666667 0.0133333333\n", - "\n", - " vidor\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " view\n", - "trainSet$label F T\n", - " ham 0.98944860 0.01055140\n", - " spam 0.96083333 0.03916667\n", - "\n", - " viewed\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " viewing\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.997500000 0.002500000\n", - "\n", - " views\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " viewsonic\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.97166667 0.02833333\n", - "\n", - " viiagra\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " viiagrra\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " viicodin\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " vikings\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " village\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " villanueva\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " villarreal\n", - "trainSet$label F T\n", - " ham 0.99012934 0.00987066\n", - " spam 1.00000000 0.00000000\n", - "\n", - " ville\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " viltz\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " vintage\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.997500000 0.002500000\n", - "\n", - " vinyl\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " violence\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " vioxx\n", - "trainSet$label F T\n", - " ham 1.00 0.00\n", - " spam 0.99 0.01\n", - "\n", - " vir\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " virgin\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " virginia\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " virtual\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995833333 0.004166667\n", - "\n", - " virtue\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " virus\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " viruses\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " visa\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " visio\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " vision\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.993333333 0.006666667\n", - "\n", - " visit\n", - "trainSet$label F T\n", - " ham 0.98366236 0.01633764\n", - " spam 0.91333333 0.08666667\n", - "\n", - " visiting\n", - "trainSet$label F T\n", - " ham 0.9972770592 0.0027229408\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " visitors\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " visits\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99000000 0.01000000\n", - "\n", - " visual\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9875000000 0.0125000000\n", - "\n", - " vlagr\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " vlagra\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98416667 0.01583333\n", - "\n", - " vlt\n", - "trainSet$label F T\n", - " ham 0.9683458135 0.0316541865\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " vnf\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 1.000000000 0.000000000\n", - "\n", - " vocalscape\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " voice\n", - "trainSet$label F T\n", - " ham 0.98400272 0.01599728\n", - " spam 0.98166667 0.01833333\n", - "\n", - " voicemail\n", - "trainSet$label F T\n", - " ham 0.9976174268 0.0023825732\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " void\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " voip\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.990833333 0.009166667\n", - "\n", - " vol\n", - "trainSet$label F T\n", - " ham 0.9955752212 0.0044247788\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " volatile\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995833333 0.004166667\n", - "\n", - " volatility\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " vols\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 1.000000000 0.000000000\n", - "\n", - " volume\n", - "trainSet$label F T\n", - " ham 0.86147039 0.13852961\n", - " spam 0.98833333 0.01166667\n", - "\n", - " volumes\n", - "trainSet$label F T\n", - " ham 0.8812117 0.1187883\n", - " spam 1.0000000 0.0000000\n", - "\n", - " volumetric\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " volunteers\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " von\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " vote\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " voted\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " votre\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " vous\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " vuitton\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " vuittonet\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " waco\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " wacog\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " wade\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " wages\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " wagner\n", - "trainSet$label F T\n", - " ham 0.996596324 0.003403676\n", - " spam 1.000000000 0.000000000\n", - "\n", - " wagstaff\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " waha\n", - "trainSet$label F T\n", - " ham 0.9884275 0.0115725\n", - " spam 1.0000000 0.0000000\n", - "\n", - " wait\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 0.981666667 0.018333333\n", - "\n", - " waiting\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 0.978333333 0.021666667\n", - "\n", - " wakey\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " walk\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.997500000 0.002500000\n", - "\n", - " walker\n", - "trainSet$label F T\n", - " ham 0.9850238257 0.0149761743\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " walking\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " wall\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " wallace\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " wallis\n", - "trainSet$label F T\n", - " ham 0.9894486045 0.0105513955\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " walls\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.997500000 0.002500000\n", - "\n", - " wallumrod\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " walt\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " walter\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.998333333 0.001666667\n", - "\n", - " walters\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 1.000000000 0.000000000\n", - "\n", - " walton\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " wamu\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " wanda\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " want\n", - "trainSet$label F T\n", - " ham 0.9128659 0.0871341\n", - " spam 0.8650000 0.1350000\n", - "\n", - " wanted\n", - "trainSet$label F T\n", - " ham 0.97072839 0.02927161\n", - " spam 0.98250000 0.01750000\n", - "\n", - " wanting\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " wants\n", - "trainSet$label F T\n", - " ham 0.98332199 0.01667801\n", - " spam 0.98083333 0.01916667\n", - "\n", - " war\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.98750000 0.01250000\n", - "\n", - " ward\n", - "trainSet$label F T\n", - " ham 0.9945541184 0.0054458816\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " wardle\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " ware\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " warehouse\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " warm\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " warned\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " warner\n", - "trainSet$label F T\n", - " ham 0.9976174268 0.0023825732\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " warning\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.990000000 0.010000000\n", - "\n", - " warranty\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.990833333 0.009166667\n", - "\n", - " washbowl\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " washington\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.998333333 0.001666667\n", - "\n", - " waskom\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " wasn\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 1.000000000 0.000000000\n", - "\n", - " wassup\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " waste\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9916666667 0.0083333333\n", - "\n", - " wastes\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " wasting\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " watch\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 0.950000000 0.050000000\n", - "\n", - " watches\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9875000000 0.0125000000\n", - "\n", - " watching\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.994166667 0.005833333\n", - "\n", - " water\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9925000000 0.0075000000\n", - "\n", - " watson\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.998333333 0.001666667\n", - "\n", - " watts\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " wave\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " wavefront\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " way\n", - "trainSet$label F T\n", - " ham 0.96119809 0.03880191\n", - " spam 0.94166667 0.05833333\n", - "\n", - " waymark\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " wayne\n", - "trainSet$label F T\n", - " ham 0.993533016 0.006466984\n", - " spam 0.998333333 0.001666667\n", - "\n", - " ways\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.995833333 0.004166667\n", - "\n", - " wealth\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995833333 0.004166667\n", - "\n", - " weapons\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " wear\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " wearing\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " weather\n", - "trainSet$label F T\n", - " ham 0.993873383 0.006126617\n", - " spam 0.997500000 0.002500000\n", - "\n", - " weatherstone\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " weaver\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " web\n", - "trainSet$label F T\n", - " ham 0.97923758 0.02076242\n", - " spam 0.96833333 0.03166667\n", - "\n", - " webb\n", - "trainSet$label F T\n", - " ham 0.9969366916 0.0030633084\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " webcam\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " webmaster\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " website\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 0.966666667 0.033333333\n", - "\n", - " websites\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.98083333 0.01916667\n", - "\n", - " wed\n", - "trainSet$label F T\n", - " ham 0.993192648 0.006807352\n", - " spam 0.989166667 0.010833333\n", - "\n", - " wedding\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " wedelmusic\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " wednesday\n", - "trainSet$label F T\n", - " ham 0.96732471 0.03267529\n", - " spam 0.99250000 0.00750000\n", - "\n", - " week\n", - "trainSet$label F T\n", - " ham 0.93533016 0.06466984\n", - " spam 0.95583333 0.04416667\n", - "\n", - " weekend\n", - "trainSet$label F T\n", - " ham 0.98230088 0.01769912\n", - " spam 0.97666667 0.02333333\n", - "\n", - " weekends\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " weekly\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.995000000 0.005000000\n", - "\n", - " weeks\n", - "trainSet$label F T\n", - " ham 0.98264125 0.01735875\n", - " spam 0.98083333 0.01916667\n", - "\n", - " wehner\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " wei\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " weight\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9625000000 0.0375000000\n", - "\n", - " weightloss\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " weil\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " wein\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " weir\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " weissman\n", - "trainSet$label F T\n", - " ham 0.98025868 0.01974132\n", - " spam 1.00000000 0.00000000\n", - "\n", - " wel\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " welcome\n", - "trainSet$label F T\n", - " ham 0.990810075 0.009189925\n", - " spam 0.990000000 0.010000000\n", - "\n", - " well\n", - "trainSet$label F T\n", - " ham 0.93601089 0.06398911\n", - " spam 0.94500000 0.05500000\n", - "\n", - " wellbore\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " wellbutrin\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " wellhead\n", - "trainSet$label F T\n", - " ham 0.95813479 0.04186521\n", - " spam 1.00000000 0.00000000\n", - "\n", - " wellheads\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " wells\n", - "trainSet$label F T\n", - " ham 0.991490810 0.008509190\n", - " spam 0.993333333 0.006666667\n", - "\n", - " wendy\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " went\n", - "trainSet$label F T\n", - " ham 0.98502383 0.01497617\n", - " spam 0.98750000 0.01250000\n", - "\n", - " wes\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " wesley\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " west\n", - "trainSet$label F T\n", - " ham 0.990469707 0.009530293\n", - " spam 0.990833333 0.009166667\n", - "\n", - " wester\n", - "trainSet$label F T\n", - " ham 0.995234854 0.004765146\n", - " spam 1.000000000 0.000000000\n", - "\n", - " western\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.994166667 0.005833333\n", - "\n", - " westex\n", - "trainSet$label F\n", - " ham 1\n", - " spam 1\n", - "\n", - " westminster\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " westmoreland\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 1.000000000 0.000000000\n", - "\n", - " wet\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " wgr\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.998333333 0.001666667\n", - "\n", - " whalley\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " whatever\n", - "trainSet$label F T\n", - " ham 0.992171545 0.007828455\n", - " spam 0.992500000 0.007500000\n", - "\n", - " whatsoever\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " wheeler\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " whenever\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.995833333 0.004166667\n", - "\n", - " whereby\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " whether\n", - "trainSet$label F T\n", - " ham 0.986725664 0.013274336\n", - " spam 0.990833333 0.009166667\n", - "\n", - " whihc\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " white\n", - "trainSet$label F T\n", - " ham 0.98876787 0.01123213\n", - " spam 0.98083333 0.01916667\n", - "\n", - " whiteboard\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " whitehead\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " whiting\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 1.000000000 0.000000000\n", - "\n", - " whoever\n", - "trainSet$label F T\n", - " ham 0.9979577944 0.0020422056\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " whole\n", - "trainSet$label F T\n", - " ham 0.98604493 0.01395507\n", - " spam 0.98833333 0.01166667\n", - "\n", - " wholesale\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.993333333 0.006666667\n", - "\n", - " wholly\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.996666667 0.003333333\n", - "\n", - " whomever\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 1.000000000 0.000000000\n", - "\n", - " whose\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.991666667 0.008333333\n", - "\n", - " wide\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.960000000 0.040000000\n", - "\n", - " widely\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " widget\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " width\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98833333 0.01166667\n", - "\n", - " wiesepape\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " wife\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.975833333 0.024166667\n", - "\n", - " wifi\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " wiggins\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " wiil\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98583333 0.01416667\n", - "\n", - " wil\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9883333333 0.0116666667\n", - "\n", - " wild\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.98583333 0.01416667\n", - "\n", - " wildest\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " wildfire\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " will\n", - "trainSet$label F T\n", - " ham 0.6361470 0.3638530\n", - " spam 0.7891667 0.2108333\n", - "\n", - " william\n", - "trainSet$label F T\n", - " ham 0.983321988 0.016678012\n", - " spam 0.998333333 0.001666667\n", - "\n", - " williams\n", - "trainSet$label F T\n", - " ham 0.98434309 0.01565691\n", - " spam 0.99750000 0.00250000\n", - "\n", - " williamson\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " willie\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " willing\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.991666667 0.008333333\n", - "\n", - " willingness\n", - "trainSet$label F T\n", - " ham 0.9986385296 0.0013614704\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " wilma\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " wilson\n", - "trainSet$label F T\n", - " ham 0.992511913 0.007488087\n", - " spam 0.997500000 0.002500000\n", - "\n", - " wimberley\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " win\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.990833333 0.009166667\n", - "\n", - " wind\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.992500000 0.007500000\n", - "\n", - " window\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.992500000 0.007500000\n", - "\n", - " windows\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.952500000 0.047500000\n", - "\n", - " windowxp\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " wine\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " winfree\n", - "trainSet$label F T\n", - " ham 0.9884275 0.0115725\n", - " spam 1.0000000 0.0000000\n", - "\n", - " wing\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " wink\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " winn\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " winner\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.995833333 0.004166667\n", - "\n", - " winners\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.992500000 0.007500000\n", - "\n", - " winning\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.991666667 0.008333333\n", - "\n", - " winnings\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " wins\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " winston\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " winter\n", - "trainSet$label F T\n", - " ham 0.995575221 0.004424779\n", - " spam 0.996666667 0.003333333\n", - "\n", - " wiped\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " wir\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " wire\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.991666667 0.008333333\n", - "\n", - " wired\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " wireless\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9891666667 0.0108333333\n", - "\n", - " wisdom\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " wise\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.996666667 0.003333333\n", - "\n", - " wish\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 0.941666667 0.058333333\n", - "\n", - " wishes\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " wit\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " witer\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " withdrawal\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.997500000 0.002500000\n", - "\n", - " withdrawl\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " withers\n", - "trainSet$label F T\n", - " ham 0.98502383 0.01497617\n", - " spam 1.00000000 0.00000000\n", - "\n", - " within\n", - "trainSet$label F T\n", - " ham 0.97311096 0.02688904\n", - " spam 0.93166667 0.06833333\n", - "\n", - " without\n", - "trainSet$label F T\n", - " ham 0.97515317 0.02484683\n", - " spam 0.91000000 0.09000000\n", - "\n", - " wives\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " wiz\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " wizard\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " wkd\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " wlndows\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " woman\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.985000000 0.015000000\n", - "\n", - " wombat\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " women\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.96833333 0.03166667\n", - "\n", - " won\n", - "trainSet$label F T\n", - " ham 0.991150442 0.008849558\n", - " spam 0.977500000 0.022500000\n", - "\n", - " wonder\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " wonderful\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 0.995833333 0.004166667\n", - "\n", - " wondering\n", - "trainSet$label F T\n", - " ham 0.9962559564 0.0037440436\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " wont\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " wood\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99750000 0.00250000\n", - "\n", - " woodland\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " woodlands\n", - "trainSet$label F T\n", - " ham 0.997617427 0.002382573\n", - " spam 1.000000000 0.000000000\n", - "\n", - " woods\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " woodward\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " woodworking\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " wor\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " word\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 0.981666667 0.018333333\n", - "\n", - " words\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.973333333 0.026666667\n", - "\n", - " worid\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " work\n", - "trainSet$label F T\n", - " ham 0.93975494 0.06024506\n", - " spam 0.95166667 0.04833333\n", - "\n", - " workday\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " worked\n", - "trainSet$label F T\n", - " ham 0.989108237 0.010891763\n", - " spam 0.994166667 0.005833333\n", - "\n", - " workers\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " working\n", - "trainSet$label F T\n", - " ham 0.97140912 0.02859088\n", - " spam 0.97916667 0.02083333\n", - "\n", - " works\n", - "trainSet$label F T\n", - " ham 0.98672566 0.01327434\n", - " spam 0.93166667 0.06833333\n", - "\n", - " worksheet\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 1.000000000 0.000000000\n", - "\n", - " worksheets\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " workshop\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " workspace\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " workstation\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " world\n", - "trainSet$label F T\n", - " ham 0.99012934 0.00987066\n", - " spam 0.92000000 0.08000000\n", - "\n", - " worldnet\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " worlds\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " worldwide\n", - "trainSet$label F T\n", - " ham 0.995915589 0.004084411\n", - " spam 0.958333333 0.041666667\n", - "\n", - " worried\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " worry\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 0.99250000 0.00750000\n", - "\n", - " worse\n", - "trainSet$label F T\n", - " ham 0.997277059 0.002722941\n", - " spam 0.995833333 0.004166667\n", - "\n", - " worst\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 0.9983333333 0.0016666667\n", - "\n", - " worth\n", - "trainSet$label F T\n", - " ham 0.994554118 0.005445882\n", - " spam 0.977500000 0.022500000\n", - "\n", - " wouid\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.993333333 0.006666667\n", - "\n", - " wouldn\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " wounded\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " wounding\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " wow\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " wowgao\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " wright\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 0.997500000 0.002500000\n", - "\n", - " wrinkles\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " write\n", - "trainSet$label F T\n", - " ham 0.98672566 0.01327434\n", - " spam 0.97916667 0.02083333\n", - "\n", - " writeoff\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 1.000000000 0.000000000\n", - "\n", - " writing\n", - "trainSet$label F T\n", - " ham 0.998638530 0.001361470\n", - " spam 0.994166667 0.005833333\n", - "\n", - " written\n", - "trainSet$label F T\n", - " ham 0.996255956 0.003744044\n", - " spam 0.989166667 0.010833333\n", - "\n", - " wrong\n", - "trainSet$label F T\n", - " ham 0.989788972 0.010211028\n", - " spam 0.994166667 0.005833333\n", - "\n", - " wrongfu\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " wrongfuily\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " wrongfully\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " wrote\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.995833333 0.004166667\n", - "\n", - " www\n", - "trainSet$label F T\n", - " ham 0.97072839 0.02927161\n", - " spam 0.82500000 0.17500000\n", - "\n", - " wxga\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " wyndham\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " wynne\n", - "trainSet$label F T\n", - " ham 0.96732471 0.03267529\n", - " spam 1.00000000 0.00000000\n", - "\n", - " wyoming\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " wysak\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " wysk\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " xan\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " xanaax\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " xanax\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.96666667 0.03333333\n", - "\n", - " xenical\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " xenlcal\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " xga\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " xil\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " xls\n", - "trainSet$label F T\n", - " ham 0.8590878 0.1409122\n", - " spam 1.0000000 0.0000000\n", - "\n", - " xms\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " xph\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " xpress\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.994166667 0.005833333\n", - "\n", - " xual\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " yahoo\n", - "trainSet$label F T\n", - " ham 0.994894486 0.005105514\n", - " spam 0.969166667 0.030833333\n", - "\n", - " yankee\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " yanowski\n", - "trainSet$label F T\n", - " ham 0.997957794 0.002042206\n", - " spam 1.000000000 0.000000000\n", - "\n", - " yap\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " yard\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " yards\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " yasser\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " yates\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 1.000000000 0.000000000\n", - "\n", - " yea\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " yeah\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " year\n", - "trainSet$label F T\n", - " ham 0.96051736 0.03948264\n", - " spam 0.93500000 0.06500000\n", - "\n", - " yearly\n", - "trainSet$label F T\n", - " ham 0.9989788972 0.0010211028\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " years\n", - "trainSet$label F T\n", - " ham 0.9874064 0.0125936\n", - " spam 0.9575000 0.0425000\n", - "\n", - " yellow\n", - "trainSet$label F T\n", - " ham 0.998298162 0.001701838\n", - " spam 0.996666667 0.003333333\n", - "\n", - " yes\n", - "trainSet$label F T\n", - " ham 0.98740640 0.01259360\n", - " spam 0.98583333 0.01416667\n", - "\n", - " yesterday\n", - "trainSet$label F T\n", - " ham 0.984683458 0.015316542\n", - " spam 0.994166667 0.005833333\n", - "\n", - " yet\n", - "trainSet$label F T\n", - " ham 0.97243022 0.02756978\n", - " spam 0.98333333 0.01666667\n", - "\n", - " yield\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " yokel\n", - "trainSet$label F T\n", - " ham 1.0000000000 0.0000000000\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " yore\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " york\n", - "trainSet$label F T\n", - " ham 0.996936692 0.003063308\n", - " spam 0.992500000 0.007500000\n", - "\n", - " young\n", - "trainSet$label F T\n", - " ham 0.97685500 0.02314500\n", - " spam 0.98166667 0.01833333\n", - "\n", - " younger\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9950000000 0.0050000000\n", - "\n", - " yourseif\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " youth\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9941666667 0.0058333333\n", - "\n", - " ypi\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " ypil\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.995833333 0.004166667\n", - "\n", - " yrs\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9966666667 0.0033333333\n", - "\n", - " yunis\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " yvette\n", - "trainSet$label F T\n", - " ham 0.989788972 0.010211028\n", - " spam 0.998333333 0.001666667\n", - "\n", - " zajac\n", - "trainSet$label F T\n", - " ham 0.994213751 0.005786249\n", - " spam 1.000000000 0.000000000\n", - "\n", - " zanaflex\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " zap\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " zapata\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 1.000000000 0.000000000\n", - "\n", - " zbaqooqk\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.998333333 0.001666667\n", - "\n", - " zealand\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9958333333 0.0041666667\n", - "\n", - " zebutal\n", - "trainSet$label F T\n", - " ham 1.000 0.000\n", - " spam 0.995 0.005\n", - "\n", - " zenith\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9925 0.0075\n", - "\n", - " zero\n", - "trainSet$label F T\n", - " ham 0.966303608 0.033696392\n", - " spam 0.995833333 0.004166667\n", - "\n", - " zeroed\n", - "trainSet$label F T\n", - " ham 0.991831178 0.008168822\n", - " spam 1.000000000 0.000000000\n", - "\n", - " zeroes\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9991666667 0.0008333333\n", - "\n", - " zimbabwe\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " zinc\n", - "trainSet$label F T\n", - " ham 0.9996596324 0.0003403676\n", - " spam 0.9975000000 0.0025000000\n", - "\n", - " zipper\n", - "trainSet$label F T\n", - " ham 0.9993192648 0.0006807352\n", - " spam 1.0000000000 0.0000000000\n", - "\n", - " zisman\n", - "trainSet$label F T\n", - " ham 0.99863853 0.00136147\n", - " spam 1.00000000 0.00000000\n", - "\n", - " zivley\n", - "trainSet$label F T\n", - " ham 0.98910824 0.01089176\n", - " spam 1.00000000 0.00000000\n", - "\n", - " zoloft\n", - "trainSet$label F T\n", - " ham 1.000000000 0.000000000\n", - " spam 0.996666667 0.003333333\n", - "\n", - " zone\n", - "trainSet$label F T\n", - " ham 0.98774677 0.01225323\n", - " spam 0.96583333 0.03416667\n", - "\n", - " zonedubai\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.97416667 0.02583333\n", - "\n", - " zones\n", - "trainSet$label F T\n", - " ham 0.998978897 0.001021103\n", - " spam 0.995833333 0.004166667\n", - "\n", - " zwallet\n", - "trainSet$label F T\n", - " ham 1.0000 0.0000\n", - " spam 0.9975 0.0025\n", - "\n", - " zyban\n", - "trainSet$label F T\n", - " ham 1.00000000 0.00000000\n", - " spam 0.98666667 0.01333333\n" - ] - }, - "metadata": {} - } - ] - }, - { - "cell_type": "markdown", - "source": [ - "Now we test our model:" - ], - "metadata": { - "id": "lhjA1B6EQY_J" - } - }, - { - "cell_type": "code", - "source": [ - "testPredictMsgLabel <- predict(NBbasedSpamFilter, myDTMTestNew,) # predict labels for test cases" - ], - "metadata": { - "id": "M_YaCKNeJ2PJ" - }, - "execution_count": null, - "outputs": [] - }, - { - "cell_type": "markdown", - "source": [ - "Let's check the confusion matrix. Notice we get an accuracy of ~90%!" - ], - "metadata": { - "id": "3hsu_AYoOAeo" - } - }, - { - "cell_type": "code", - "source": [ - "confusionMatrix(testPredictMsgLabel, as.factor(testSet$label), positive = \"spam\") # Print confusion matrix" - ], - "metadata": { - "id": "35-HE9dIOCuo", - "colab": { - "base_uri": "https://localhost:8080/", - "height": 499 - }, - "outputId": "dc811378-8cbd-4440-c268-6ccc7b66fe79" - }, - "execution_count": null, - "outputs": [ - { - "output_type": "display_data", - "data": { - "text/plain": [ - "Confusion Matrix and Statistics\n", - "\n", - " Reference\n", - "Prediction ham spam\n", - " ham 701 60\n", - " spam 33 239\n", - " \n", - " Accuracy : 0.91 \n", - " 95% CI : (0.8908, 0.9267)\n", - " No Information Rate : 0.7106 \n", - " P-Value [Acc > NIR] : < 2.2e-16 \n", - " \n", - " Kappa : 0.7751 \n", - " \n", - " Mcnemar's Test P-Value : 0.007016 \n", - " \n", - " Sensitivity : 0.7993 \n", - " Specificity : 0.9550 \n", - " Pos Pred Value : 0.8787 \n", - " Neg Pred Value : 0.9212 \n", - " Prevalence : 0.2894 \n", - " Detection Rate : 0.2314 \n", - " Detection Prevalence : 0.2633 \n", - " Balanced Accuracy : 0.8772 \n", - " \n", - " 'Positive' Class : spam \n", - " " - ] - }, - "metadata": {} - } - ] - }, - { - "cell_type": "markdown", - "source": [ - "In addition, we can save our model into a `.rds` file so that we can use it or deploy it later on an IDS server" - ], - "metadata": { - "id": "Otp-JMC65hTW" - } - }, - { - "cell_type": "code", - "source": [ - "saveRDS(NBbasedSpamFilter, \"./final_NbbasedSpamFilter.rds\")" - ], - "metadata": { - "id": "xvBM3xLj5vqn" - }, - "execution_count": null, - "outputs": [] - }, - { - "cell_type": "markdown", - "source": [ - "## Doing the Bayesian Infection" - ], - "metadata": { - "id": "F5et0am0xnWV" - } - }, - { - "cell_type": "markdown", - "source": [ - "To bypass the spam filter, we need to **poison** the test data! First, we randomly select non-spam messages are amended at the end of the spam messages in our test data set." - ], - "metadata": { - "id": "BWK71_h36ChL" - } - }, - { - "cell_type": "code", - "source": [ - "spamTestCases <- subset(testSet,label==\"spam\") # select spams in test cases\n", - "hamTestCases <- subset(testSet, label==\"ham\") # select ham in test cases\n", - "hamMsgInmyData<-subset(myData, label==\"ham\") # select ham in our original dataset\n", - "hamMsg2ammend<-hamMsgInmyData[sample(nrow(hamMsgInmyData), nrow(spamTestCases)),]\n", - "# select number of ham messages equal to the spam messages in test cases\n", - "spamTestCases$text <-paste(spamTestCases$text,hamMsg2ammend$text,sep = \" \") # amend selected ham at the end of spams in test cases\n", - "poisTestData<-rbind(hamTestCases,spamTestCases) # create the poisoned test set\n", - "myData[-tr_index,]<-poisTestData # replace the test entries in original dataset with poisoned test cases" - ], - "metadata": { - "id": "q1yYaT8m6ebS" - }, - "execution_count": null, - "outputs": [] - }, - { - "cell_type": "markdown", - "source": [ - "Now, we create the new DTM with poisoned data and select high frequency words:" - ], - "metadata": { - "id": "jRAS72-S7qLw" - } - }, - { - "cell_type": "code", - "source": [ - "myCorpusPoisoned <- VCorpus(VectorSource(myData$text))\n", - "myDTMPoisoned <- DocumentTermMatrix(myCorpusPoisoned, control = list(tolower=T,\n", - "removeNumbers=T,\n", - "removePunctuation=T,\n", - "stopwords = T,\n", - "stem=T))\n", - "freqWords <- findFreqTerms(myDTMPoisoned,5)\n", - "myDTMPoisoned <- myDTMPoisoned[,freqWords]\n", - "myDTMTestPoisoned <- myDTMPoisoned[-tr_index,] # new test set, note that we don't need a training set as we use the same model created above\n", - "myDTMTestNewPoisoned <- apply(myDTMTestPoisoned, MARGIN = 2, convert_counts) # Using the same convert_counts function, we code our poisoned test DTM as above." - ], - "metadata": { - "id": "bA_Z75RH7tbD" - }, - "execution_count": null, - "outputs": [] - }, - { - "cell_type": "markdown", - "source": [ - "Finally, we try again to predict labels, but now for the poisoned test cases." - ], - "metadata": { - "id": "kYi74QWe8Fex" - } - }, - { - "cell_type": "code", - "source": [ - "poisonedTestPredictMsgLabel <- predict(NBbasedSpamFilter, myDTMTestNewPoisoned)\n", - "confusionMatrix(poisonedTestPredictMsgLabel, as.factor(testSet$label), positive = \"spam\") # Print confusion matrix for poisoned data" - ], - "metadata": { - "id": "yLAk5Beo8FOZ", - "colab": { - "base_uri": "https://localhost:8080/", - "height": 499 - }, - "outputId": "f7b51c09-93a0-4ddc-b980-03d48bd28819" - }, - "execution_count": null, - "outputs": [ - { - "output_type": "display_data", - "data": { - "text/plain": [ - "Confusion Matrix and Statistics\n", - "\n", - " Reference\n", - "Prediction ham spam\n", - " ham 640 249\n", - " spam 94 50\n", - " \n", - " Accuracy : 0.668 \n", - " 95% CI : (0.6383, 0.6966)\n", - " No Information Rate : 0.7106 \n", - " P-Value [Acc > NIR] : 0.9987 \n", - " \n", - " Kappa : 0.0463 \n", - " \n", - " Mcnemar's Test P-Value : <2e-16 \n", - " \n", - " Sensitivity : 0.1672 \n", - " Specificity : 0.8719 \n", - " Pos Pred Value : 0.3472 \n", - " Neg Pred Value : 0.7199 \n", - " Prevalence : 0.2894 \n", - " Detection Rate : 0.0484 \n", - " Detection Prevalence : 0.1394 \n", - " Balanced Accuracy : 0.5196 \n", - " \n", - " 'Positive' Class : spam \n", - " " - ] - }, - "metadata": {} - } - ] - }, - { - "cell_type": "markdown", - "source": [ - "As you can see in the confusion matrix, classifications of spam as ham (false negatives) increase in the poisoned test cases. Now our accuracy sits at ~66%!" - ], - "metadata": { - "id": "Zt8Io1DC8Rdh" - } - } - ] -} \ No newline at end of file From a7fb8f4fe2a3e064de31f6c58950b9dfea483484 Mon Sep 17 00:00:00 2001 From: C M-G <43293156+carlosfmorenog@users.noreply.github.com> Date: Mon, 25 Mar 2024 22:20:50 +0000 Subject: [PATCH 05/12] BMVC 2024 --- ...ew.docx => BMVC_MS_Office_2024_review.docx | Bin 303671 -> 303687 bytes README.md | 8 +- bmvc2k.cls | 4 +- bmvc_final.pdf | Bin 383700 -> 396130 bytes bmvc_final.tex | 376 +++++++++--------- bmvc_review.pdf | Bin 400047 -> 415076 bytes 6 files changed, 193 insertions(+), 195 deletions(-) rename BMVC_MS_Office_2023_review.docx => BMVC_MS_Office_2024_review.docx (86%) diff --git a/BMVC_MS_Office_2023_review.docx b/BMVC_MS_Office_2024_review.docx similarity index 86% rename from BMVC_MS_Office_2023_review.docx rename to BMVC_MS_Office_2024_review.docx index b30dbf0d0978de828beaf7cac876762a5be6adfc..220423135c8cfc0aec7391adc6b84a3d1b676df9 100644 GIT binary patch delta 38734 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 delta 38646 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�|vi) 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 Yar1Kd{03OLSecnw;mOIx6(!*R55~n!hyVZp diff --git a/bmvc_final.tex b/bmvc_final.tex index edd636d..e1eb9fd 100644 --- a/bmvc_final.tex +++ b/bmvc_final.tex @@ -1,188 +1,188 @@ -\documentclass{bmvc2k} - -%% Enter your paper number here for the review copy -% \bmvcreviewcopy{??} - -\title{Author Guidelines for the\\ British Machine Vision Conference} - -% Enter the paper's authors in order -% \addauthor{Name}{email/homepage}{INSTITUTION_CODE} -\addauthor{Susan Student}{http://www.vision.inst.ac.uk/~ss}{1} -\addauthor{Petra Prof}{http://www.vision.inst.ac.uk/~pp}{1} -\addauthor{Colin Collaborator}{colin@collaborators.com}{2} - -% Enter the institutions -% \addinstitution{Name\\Address} -\addinstitution{ - The Vision Institute\\ - University of Borsetshire\\ - Wimbleham, UK -} -\addinstitution{ - Collaborators, Inc.\\ - 123 Park Avenue,\\ - New York, USA -} - -\runninghead{Student, Prof, Collaborator}{BMVC Author Guidelines} - -% Any macro definitions you would like to include -% These are not defined in the style file, because they don't begin -% with \bmva, so they might conflict with the user's own macros. -% The \bmvaOneDot macro adds a full stop unless there is one in the -% text already. -\def\eg{\emph{e.g}\bmvaOneDot} -\def\Eg{\emph{E.g}\bmvaOneDot} -\def\etal{\emph{et al}\bmvaOneDot} - -%------------------------------------------------------------------------- -% Document starts here -\begin{document} - -\maketitle - -\begin{abstract} -This document demonstrates the format requirements for papers submitted -to the British Machine Vision Conference. The format is designed for -easy on-screen reading, and to print well at one or two pages per sheet. -Additional features include: pop-up annotations for -citations~\cite{Authors06,Mermin89}; a margin ruler for reviewing; and a -greatly simplified way of entering multiple authors and institutions. - -{\bf All authors are encouraged to read this document}, even if you have -written many papers before. As well as a description of the format, the -document contains many instructions relating to formatting problems and -errors that are common even in the work of authors who {\em have} -written many papers before. -\end{abstract} - -%------------------------------------------------------------------------- -\section{Introduction} -\label{sec:intro} -The proceedings of BMVC are published only in electronic form, but it is still assumed -that readers of the papers may wish to print the paper. This document -illustrates the required paper format, which is designed to read well either printed -with two pages per sheet (``2-up''), or on screen. Note that printing with one page -per sheet will produce a ``large print'' version, which in many cases is not what is desired. -To approximate the old BMVC format, print at one page per sheet, but do not choose -the option to ``scale to fit paper''. - -\LaTeX\ users should use this template in order to prepare their paper. -Users of other packages should emulate the style and layout of this -example. Note that best results will be achieved using {\tt pdflatex}, -which is available in most modern distributions. - -\subsection{Paper length} -Paper length of the final version must not exceed 10~pages, {\em not counting} the acknowledgement and bibliography. -{\bf Only} the acknowledgement and bibliography should be {\em excluded} from the page count: {\bf all} appendices must be counted within the {\em 10-page limit} or supplied as supplementary material. Papers must not have altered margins and formatting from those laid down by this style guide. - -The bibliography should begin immediately after the paper text. It may -be of any length, within reason. It must {\em not} include -annotations, figures, or any other paraphernalia intended to subvert the -paper length requirement. - -\begin{figure} -\begin{tabular}{ccc} -\bmvaHangBox{\fbox{\parbox{2.7cm}{~\\[2.8mm] -\rule{0pt}{1ex}\hspace{2.24mm}\includegraphics[width=2.33cm]{images/eg1_largeprint.png}\\[-0.1pt]}}}& -\bmvaHangBox{\fbox{\includegraphics[width=2.8cm]{images/eg1_largeprint.png}}}& -\bmvaHangBox{\fbox{\includegraphics[width=5.6cm]{images/eg1_2up.png}}}\\ -(a)&(b)&(c) -\end{tabular} -\caption{It is often a good idea for the first figure to attempt to -encapsulate the article, complementing the abstract. This figure illustrates -the various print and on-screen layouts for which this paper format has -been optimised: (a) traditional BMVC print format; (b) on-screen -single-column format, or large-print paper; (c) full-screen two column, or -2-up printing. } -\label{fig:teaser} -\end{figure} - -\subsection{Citations} -When citing a multi-author paper, you may save space by using ``{\em et -alia}'', shortened to ``\etal'' (not ``{\em et.\ al.}'' as ``{\em et}'' is -a complete word.) The provided \verb'\etal' macro is a useful {\em aide -memoire} in this regard. However, use it only when there are three or more -authors. Thus, the following is correct: `` Frobnication has been trendy -lately. It was introduced by Alpher~\cite{Alpher02}, and subsequently -developed by Alpher and Fotheringham-Smythe~\cite{Alpher03}, and Alpher -\etal~\cite{Alpher04}.'' - -This is incorrect: ``... subsequently developed by Alpher \etal~\cite{Alpher03} ...'' -because reference~\cite{Alpher03} has just two authors. If you use the -\verb'\etal' macro, then you need not worry about double periods -when used at the end of a sentence as in Alpher \etal. - -%For this citation style, keep multiple citations in numerical (not -%chronological) order, so prefer -We use {\tt natbib}, so citations in random order are nicely sorted: - \cite{Alpher03,Alpher02,Authors06b,Authors06}. However, we don't use the -compress option, as we want each reference to have its own hyperlink and -popup window. - -%------------------------------------------------------------------------- -\subsection{Footnotes} - -Please use footnotes\footnote {This is what a footnote looks like. It -often distracts the reader from the main flow of the argument.} sparingly. -Indeed, try to avoid footnotes altogether and include necessary peripheral -observations in -the text (within parentheses, if you prefer, as in this sentence). If you -wish to use a footnote, place it at the bottom of the column on the page on -which it is referenced. Use Times 8-point type, single-spaced. - - -\begin{figure*} -\begin{center} -\fbox{\rule{0pt}{2in} \rule{.9\linewidth}{0pt}} -\end{center} - \caption{Example of a short caption, which should be centered.} -\label{fig:short} -\end{figure*} - -\begin{table} -\begin{center} -\begin{tabular}{|l|c|} -\hline -Method & Frobnability \\ -\hline\hline -Theirs & Frumpy \\ -Yours & Frobbly \\ -Ours & Makes one's heart Frob\\ -\hline -\end{tabular} -\end{center} -\caption{Results. Ours is better.} -\end{table} - -\subsection{Mathematics} - -Please number all of your sections and displayed equations. It is -important for readers to be able to refer to any particular equation. Just -because you didn't refer to it in the text doesn't mean some future reader -might not need to refer to it. It is cumbersome to have to use -circumlocutions like ``the equation second from the top of page 3 column -1''. (Note that the ruler will not be present in the final copy, so is not -an alternative to equation numbers). All authors will benefit from reading -Mermin's description~\cite{Mermin89} of how to write mathematics. - - -%------------------------------------------------------------------------- -\subsection{References} - -List and number all bibliographical references in 9-point Times, -single-spaced, at the end of your paper. When referenced in the text, -enclose the citation number in square brackets, for -example~\cite{Authors06}. Where appropriate, include the name(s) of -editors of referenced books. - - -%------------------------------------------------------------------------ -\subsection{Color} - -Color is valuable, and will be visible to readers of the electronic copy. -However ensure that, when printed on a monochrome printer, no important -information is lost by the conversion to grayscale. - -\bibliography{egbib} -\end{document} +\documentclass{bmvc2k} + +%% Enter your paper number here for the review copy +% \bmvcreviewcopy{??} + +\title{Author Guidelines for the\\ British Machine Vision Conference 2024} + +% Enter the paper's authors in order +% \addauthor{Name}{email/homepage}{INSTITUTION_CODE} +\addauthor{Susan Student}{http://www.vision.inst.ac.uk/~ss}{1} +\addauthor{Petra Prof}{http://www.vision.inst.ac.uk/~pp}{1} +\addauthor{Colin Collaborator}{colin@collaborators.com}{2} + +% Enter the institutions +% \addinstitution{Name\\Address} +\addinstitution{ + The Vision Institute\\ + University of Borsetshire\\ + Wimbleham, UK +} +\addinstitution{ + Collaborators, Inc.\\ + 123 Park Avenue,\\ + New York, USA +} + +\runninghead{Student, Prof, Collaborator}{BMVC Author Guidelines} + +% Any macro definitions you would like to include +% These are not defined in the style file, because they don't begin +% with \bmva, so they might conflict with the user's own macros. +% The \bmvaOneDot macro adds a full stop unless there is one in the +% text already. +\def\eg{\emph{e.g}\bmvaOneDot} +\def\Eg{\emph{E.g}\bmvaOneDot} +\def\etal{\emph{et al}\bmvaOneDot} + +%------------------------------------------------------------------------- +% Document starts here +\begin{document} + +\maketitle + +\begin{abstract} +This document demonstrates the format requirements for papers submitted +to the British Machine Vision Conference. The format is designed for +easy on-screen reading, and to print well at one or two pages per sheet. +Additional features include: pop-up annotations for +citations~\cite{Authors06,Mermin89}; a margin ruler for reviewing; and a +greatly simplified way of entering multiple authors and institutions. + +{\bf All authors are encouraged to read this document}, even if you have +written many papers before. As well as a description of the format, the +document contains many instructions relating to formatting problems and +errors that are common even in the work of authors who {\em have} +written many papers before. +\end{abstract} + +%------------------------------------------------------------------------- +\section{Introduction} +\label{sec:intro} +The proceedings of BMVC are published only in electronic form, but it is still assumed +that readers of the papers may wish to print the paper. This document +illustrates the required paper format, which is designed to read well either printed +with two pages per sheet (``2-up''), or on screen. Note that printing with one page +per sheet will produce a ``large print'' version, which in many cases is not what is desired. +To approximate the old BMVC format, print at one page per sheet, but do not choose +the option to ``scale to fit paper''. + +\LaTeX\ users should use this template in order to prepare their paper. +Users of other packages should emulate the style and layout of this +example. Note that best results will be achieved using {\tt pdflatex}, +which is available in most modern distributions. + +\subsection{Paper length} +Paper length of the final version must not exceed 10~pages, {\em not counting} the acknowledgement and bibliography. +{\bf Only} the acknowledgement and bibliography should be {\em excluded} from the page count: {\bf all} appendices must be counted within the {\em 10-page limit} or supplied as supplementary material. Papers must not have altered margins and formatting from those laid down by this style guide. + +The bibliography should begin immediately after the paper text. It may +be of any length, within reason. It must {\em not} include +annotations, figures, or any other paraphernalia intended to subvert the +paper length requirement. + +\begin{figure} +\begin{tabular}{ccc} +\bmvaHangBox{\fbox{\parbox{2.7cm}{~\\[2.8mm] +\rule{0pt}{1ex}\hspace{2.24mm}\includegraphics[width=2.33cm]{images/eg1_largeprint.png}\\[-0.1pt]}}}& +\bmvaHangBox{\fbox{\includegraphics[width=2.8cm]{images/eg1_largeprint.png}}}& +\bmvaHangBox{\fbox{\includegraphics[width=5.6cm]{images/eg1_2up.png}}}\\ +(a)&(b)&(c) +\end{tabular} +\caption{It is often a good idea for the first figure to attempt to +encapsulate the article, complementing the abstract. This figure illustrates +the various print and on-screen layouts for which this paper format has +been optimised: (a) traditional BMVC print format; (b) on-screen +single-column format, or large-print paper; (c) full-screen two column, or +2-up printing. } +\label{fig:teaser} +\end{figure} + +\subsection{Citations} +When citing a multi-author paper, you may save space by using ``{\em et +alia}'', shortened to ``\etal'' (not ``{\em et.\ al.}'' as ``{\em et}'' is +a complete word.) The provided \verb'\etal' macro is a useful {\em aide +memoire} in this regard. However, use it only when there are three or more +authors. Thus, the following is correct: `` Frobnication has been trendy +lately. It was introduced by Alpher~\cite{Alpher02}, and subsequently +developed by Alpher and Fotheringham-Smythe~\cite{Alpher03}, and Alpher +\etal~\cite{Alpher04}.'' + +This is incorrect: ``... subsequently developed by Alpher \etal~\cite{Alpher03} ...'' +because reference~\cite{Alpher03} has just two authors. If you use the +\verb'\etal' macro, then you need not worry about double periods +when used at the end of a sentence as in Alpher \etal. + +%For this citation style, keep multiple citations in numerical (not +%chronological) order, so prefer +We use {\tt natbib}, so citations in random order are nicely sorted: + \cite{Alpher03,Alpher02,Authors06b,Authors06}. However, we don't use the +compress option, as we want each reference to have its own hyperlink and +popup window. + +%------------------------------------------------------------------------- +\subsection{Footnotes} + +Please use footnotes\footnote {This is what a footnote looks like. It +often distracts the reader from the main flow of the argument.} sparingly. +Indeed, try to avoid footnotes altogether and include necessary peripheral +observations in +the text (within parentheses, if you prefer, as in this sentence). If you +wish to use a footnote, place it at the bottom of the column on the page on +which it is referenced. Use Times 8-point type, single-spaced. + + +\begin{figure*} +\begin{center} +\fbox{\rule{0pt}{2in} \rule{.9\linewidth}{0pt}} +\end{center} + \caption{Example of a short caption, which should be centered.} +\label{fig:short} +\end{figure*} + +\begin{table} +\begin{center} +\begin{tabular}{|l|c|} +\hline +Method & Frobnability \\ +\hline\hline +Theirs & Frumpy \\ +Yours & Frobbly \\ +Ours & Makes one's heart Frob\\ +\hline +\end{tabular} +\end{center} +\caption{Results. Ours is better.} +\end{table} + +\subsection{Mathematics} + +Please number all of your sections and displayed equations. It is +important for readers to be able to refer to any particular equation. Just +because you didn't refer to it in the text doesn't mean some future reader +might not need to refer to it. It is cumbersome to have to use +circumlocutions like ``the equation second from the top of page 3 column +1''. (Note that the ruler will not be present in the final copy, so is not +an alternative to equation numbers). All authors will benefit from reading +Mermin's description~\cite{Mermin89} of how to write mathematics. + + +%------------------------------------------------------------------------- +\subsection{References} + +List and number all bibliographical references in 9-point Times, +single-spaced, at the end of your paper. When referenced in the text, +enclose the citation number in square brackets, for +example~\cite{Authors06}. Where appropriate, include the name(s) of +editors of referenced books. + + +%------------------------------------------------------------------------ +\subsection{Color} + +Color is valuable, and will be visible to readers of the electronic copy. +However ensure that, when printed on a monochrome printer, no important +information is lost by the conversion to grayscale. + +\bibliography{egbib} +\end{document} diff --git a/bmvc_review.pdf b/bmvc_review.pdf index 151f981d5f738d3e1bd881063e6d7f72e09ccdd4..64b60548fbb9c75dda004783db2f8674ae5cb63c 100644 GIT binary patch delta 66452 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 Dk51+Z delta 51634 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≀u<0Anm+e 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 PlW}AMV((rjPiMqG5GQGe From cff83da32f3de00941f76b02d833abe2a97cf235 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Moreno-Garc=C3=ADa?= <43293156+carlosfmorenog@users.noreply.github.com> Date: Mon, 25 Mar 2024 22:21:44 +0000 Subject: [PATCH 06/12] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b7df1c9..3e9a69e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# BMVC Paper Templates +# BMVC Paper Templates, 2024 Version This folder provides all the files necessary to produce both the review and final proceedings version of the paper. From 1d48808fcc59c8319ac03f7bc5f6bcddb75edf63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Moreno-Garc=C3=ADa?= <43293156+carlosfmorenog@users.noreply.github.com> Date: Mon, 25 Mar 2024 22:22:51 +0000 Subject: [PATCH 07/12] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3e9a69e..9bf3083 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Essentially to produce the review paper you must include the command: in the LaTeX preamble. -The `??` is the paper number your are assigned when registering your paper on the OpenReview submission web site: +The `??` is the paper number your are assigned when registering your paper on the OpenReview submission website: A word template is also provided: `BMVC_MS_Office_2024review.docx` From 948ed1f3345fbe05ddac1ed405e02ed07770ef97 Mon Sep 17 00:00:00 2001 From: C M-G <43293156+carlosfmorenog@users.noreply.github.com> Date: Thu, 28 Mar 2024 14:24:08 +0000 Subject: [PATCH 08/12] red message in abstract --- bmvc_final.pdf | Bin 396130 -> 396688 bytes bmvc_final.tex | 2 +- bmvc_review.pdf | Bin 415076 -> 415337 bytes bmvc_review.tex | 2 +- 4 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bmvc_final.pdf b/bmvc_final.pdf index edef6ea2bd785fa6198bb0c7195a69857458ce2f..aeb45830ac84fec6d0125757937fe7c5b8c02d54 100644 GIT binary patch delta 17287 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 tC Date: Fri, 4 Apr 2025 15:16:50 +0100 Subject: [PATCH 09/12] Created using Colab --- CMM560_Topic_8/CMM560_T8_Lab_Solved.ipynb | 1385 +++++++++++++++++++++ 1 file changed, 1385 insertions(+) create mode 100644 CMM560_Topic_8/CMM560_T8_Lab_Solved.ipynb diff --git a/CMM560_Topic_8/CMM560_T8_Lab_Solved.ipynb b/CMM560_Topic_8/CMM560_T8_Lab_Solved.ipynb new file mode 100644 index 0000000..6d25138 --- /dev/null +++ b/CMM560_Topic_8/CMM560_T8_Lab_Solved.ipynb @@ -0,0 +1,1385 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "id": "view-in-github", + "colab_type": "text" + }, + "source": [ + "\"Open" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "yqb-3eVyFW57" + }, + "source": [ + "# Topic 8 Laboratory (Solved)" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "gIPcUCIRFW5_" + }, + "source": [ + "In this activity, you will use imbalanced datasets from the [Keel](https://sci2s.ugr.es/keel/imbalanced.php) public repository to appropriately evaluate performance metric in two popular classifiers." + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "5VaUrwAXFW6A" + }, + "source": [ + "## Performance Evaluation in Binary Datasets" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "qqSpEG6dFW6C" + }, + "source": [ + "### Making sense of the necessary data" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "N9Qm6DRNFW6D" + }, + "source": [ + "We will use the [glass](https://sci2s.ugr.es/keel/dataset/data/imbalanced/glass-names.txt) dataset. This one has 214 samples of 7 different types of glasses. Each glass sample has 9 features, each corresponding to a different element that composes a glass sample: Rl(??), Na, Mg, Al, Si, K, Ca, Ba and Fe." + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "b4N6qlhxFW6G" + }, + "source": [ + "Since we will start with binary datasets, we will first use the [glass0](https://sci2s.ugr.es/keel/keel-dataset/datasets/imbalanced/imb_IRlowerThan9/names/glass0-names.txt) version of the dataset. The only difference of this one with respect of the original one is that a certain glass class called `class 0` is compared against the rest of the glass classes." + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "vm66-SfMFW6I" + }, + "source": [ + "Click [here](https://sci2s.ugr.es/keel/dataset.php?cod=141) to visit the *glass0* description website. If you go to the bottom (where it says **Files and additional references**) you an download the **complete dataset**. Unzip to get a file with the extension *.dat*. **OR**, you can simply download `glass0.dat` from Moodle!" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "_4XSC08RFW6J" + }, + "source": [ + "### Loading the Data" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "dL0K9OxAFW6L" + }, + "source": [ + "To import the dataset **directly from the source** to Colab, run the following cell. You are using Linix commands to get and unzip the file!" + ] + }, + { + "cell_type": "code", + "source": [ + "## Run this cell to import glass0.dat to Colab\n", + "!wget -O data.zip https://sci2s.ugr.es/keel/dataset/data/imbalanced/glass0.zip\n", + "!unzip data.zip" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "vuEnUA9SFjIe", + "outputId": "6ccf9f47-2dad-42c4-8e98-f0bcf7872e53" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "--2023-03-09 13:16:57-- https://sci2s.ugr.es/keel/dataset/data/imbalanced/glass0.zip\n", + "Resolving sci2s.ugr.es (sci2s.ugr.es)... 150.214.190.154\n", + "Connecting to sci2s.ugr.es (sci2s.ugr.es)|150.214.190.154|:443... connected.\n", + "HTTP request sent, awaiting response... 200 OK\n", + "Length: 5490 (5.4K) [application/zip]\n", + "Saving to: ‘data.zip’\n", + "\n", + "data.zip 100%[===================>] 5.36K --.-KB/s in 0s \n", + "\n", + "2023-03-09 13:16:58 (17.8 MB/s) - ‘data.zip’ saved [5490/5490]\n", + "\n", + "Archive: data.zip\n", + "replace glass0.dat? [y]es, [n]o, [A]ll, [N]one, [r]ename: n\n" + ] + } + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "C-bHYmiKFW6N", + "outputId": "e36a9595-4f52-46cb-bf78-bfcd364886d4" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "[[ 1.51588824 12.87795 3.43036 ... 8.04468 0.\n", + " 0.1224 ]\n", + " [ 1.5176423 12.9777 3.53812 ... 8.52888 0.\n", + " 0. ]\n", + " [ 1.52212996 14.20795 3.82099 ... 9.5726 0.\n", + " 0. ]\n", + " ...\n", + " [ 1.51837126 14.321 3.25974 ... 5.78508 1.62855\n", + " 0. ]\n", + " [ 1.51657164 14.7998 0. ... 8.2814 1.71045\n", + " 0. ]\n", + " [ 1.51732338 14.95275 0. ... 8.61496 1.5498\n", + " 0. ]] (214, 9)\n", + "[' positive' ' positive' ' positive' ' positive' ' positive' ' positive'\n", + " ' positive' ' positive' ' positive' ' positive' ' positive' ' positive'\n", + " ' positive' ' positive' ' positive' ' positive' ' positive' ' positive'\n", + " ' positive' ' positive' ' positive' ' positive' ' positive' ' positive'\n", + " ' positive' ' positive' ' positive' ' positive' ' positive' ' positive'\n", + " ' positive' ' positive' ' positive' ' positive' ' positive' ' positive'\n", + " ' positive' ' positive' ' positive' ' positive' ' positive' ' positive'\n", + " ' positive' ' positive' ' positive' ' positive' ' positive' ' positive'\n", + " ' positive' ' positive' ' positive' ' positive' ' positive' ' positive'\n", + " ' positive' ' positive' ' positive' ' positive' ' positive' ' positive'\n", + " ' positive' ' positive' ' positive' ' positive' ' positive' ' positive'\n", + " ' positive' ' positive' ' positive' ' positive' ' negative' ' negative'\n", + " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", + " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", + " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", + " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", + " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", + " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", + " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", + " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", + " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", + " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", + " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", + " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", + " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", + " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", + " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", + " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", + " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", + " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", + " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", + " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", + " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", + " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", + " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", + " ' negative' ' negative' ' negative' ' negative'] (214,)\n" + ] + } + ], + "source": [ + "# Load data and target\n", + "import numpy as np\n", + "\n", + "data = np.genfromtxt('/content/glass0.dat',\n", + " usecols=range(9), # this only brings the first nine columns of the dataset\n", + " skip_header=14, # The first 14 lines of the .dat contain a description\n", + " delimiter=',')\n", + "\n", + "\n", + "target_names = np.genfromtxt('/content/glass0.dat',\n", + " usecols=range(9,10), # This brings the last column of the dataset, which has the class\n", + " dtype = None,\n", + " encoding = None, # This helps us get the strings in a numpy array\n", + " skip_header=14,\n", + " delimiter=',')\n", + "\n", + "print(data,data.shape)\n", + "print(target_names,target_names.shape)" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "alvjq-zPFW6P" + }, + "source": [ + "Notice that once again, we will store the data and the target in separate variables. Moreover, we will generate a new target variable called `target` with `positive=0` and `negative=1` using the **list comprehension** technique:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "6xKNISsyFW6Q", + "outputId": "089486ed-9878-4ff3-956e-390880b09de1" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n", + " 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1\n", + " 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n", + " 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n", + " 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n", + " 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1] (214,)\n" + ] + } + ], + "source": [ + "target = []\n", + "target = [0 if i == ' positive' else 1 for i in target_names]\n", + "target=np.array(target)\n", + "print(target,target.shape)" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "dIrHLI36FW6R" + }, + "source": [ + "Notice that we chose 0 to be the positive and 1 to be the negative since the [glass0 documentation](https://sci2s.ugr.es/keel/dataset.php?cod=141) said so!" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "5uXtAbh1FW6R" + }, + "source": [ + "### Training the Classifiers" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "b3ZCfvDuFW6S" + }, + "source": [ + "Now we need to train a supervised learning model to evaluate. In this case we will use two popular classification models so that we can compare which is better for this dataset: **Support Vector Machine (SVM)** vs. **Random Forests (RF)**:" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "bK6SsH1yFW6S" + }, + "source": [ + "First we need to split our dataset into training and testing sets (80% train, 20% test). You have already done this in the past!" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "hkbLC6PsFW6T", + "outputId": "33371204-3fb9-4c50-fa46-c5fbb48d2267" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Number of positive and negative samples in the training set: 56 115\n", + "Number of positive and negative samples in the test set: 14 29\n" + ] + } + ], + "source": [ + "## Use this cell to split your dataset into training and testing w/ stratification\n", + "from sklearn.model_selection import train_test_split\n", + "X_train, X_test, y_train, y_test = train_test_split(data,target,stratify=target,test_size=0.2)\n", + "print('Number of positive and negative samples in the training set: ',np.count_nonzero(y_train == 0),np.count_nonzero(y_train == 1))\n", + "print('Number of positive and negative samples in the test set: ',np.count_nonzero(y_test == 0),np.count_nonzero(y_test == 1))" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "VW7U9PG2FW6U" + }, + "source": [ + "Now train a SVM model called `model_svm` using the training data and predict the test data. Store the fitted model in a variable called `clf_svm` and the prediction results in a variable called `y_svm`." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "Kf2_wutqFW6V", + "outputId": "28bc174f-87c2-4ce2-f279-5d9a3c3d2a7b" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "[0 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 0 1 1 0 1 1 0 0 1 1 1 1 0 0 1 0 1 1 1 0\n", + " 0 1 1 1 1 1] (43,)\n" + ] + } + ], + "source": [ + "## Use this cell to train a SVM model to predict the labels of the test data\n", + "from sklearn.svm import SVC\n", + "model_svm = SVC(kernel='linear')\n", + "clf_svm = model_svm.fit(X_train,y_train)\n", + "y_svm = model_svm.predict(X_test)\n", + "print(y_svm,y_svm.shape)" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "VeMq-yS1FW6W" + }, + "source": [ + "Likewise, train a RF model called `model_rf` (using the `RandomForestClassifier()` function contained in `sklearn.ensemble` package) on the same training data and predict the test data. Store the results in variables called `clf_rf` and `y_rf`." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "jQvhcWavFW6X", + "outputId": "c6075de5-5d80-4089-973a-11c09890bd6b" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "[1 1 0 0 1 1 1 1 1 1 1 0 1 0 1 1 1 0 1 1 0 1 0 0 0 1 1 0 1 0 0 1 0 1 1 1 0\n", + " 0 1 1 1 0 0] (43,)\n" + ] + } + ], + "source": [ + "## Use this cell to train a RF model to predict the labels of the test data\n", + "from sklearn.ensemble import RandomForestClassifier\n", + "model_rf = RandomForestClassifier(n_estimators = 1000, random_state = 42)\n", + "clf_rf = model_rf.fit(X_train, y_train)\n", + "y_rf = model_rf.predict(X_test)\n", + "print(y_rf,y_rf.shape)" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "GeTaYYEsFW6X" + }, + "source": [ + "Both `y_svm` and `y_rf` should be *numpy* array vectors of size (43,)" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "s-soiiYLFW6Y" + }, + "source": [ + "### Performance Evaluation Metrics" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "x5l-zc5MFW6Y" + }, + "source": [ + "In week 3 lab, we saw that once that we predict the values for the test set, we can compare both the `y_test` vector with the predicted vectors (in our case `y_svm` and `y_rf`) to obtain the results. If you recall, it was quite tricky to do this as we had more classes in the vector! Therefore, this time we will do it slightly different..." + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "v-Xkiv91FW6Y" + }, + "source": [ + "#### Accuracy" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "DCH6i6upFW6Z" + }, + "source": [ + "By now you should know that everything in Python can be imported! Performance metrics can be imported as well. We will first use accuracy (although it should be very clear by now that this one is not suitable for imbalanced datasets)." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "8fub_QCxFW6Z", + "outputId": "1d6dfd68-5639-40cd-dc76-36ece0409362" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Accuracy of SVM: 0.6976744186046512\n", + "Accuracy of RF: 0.8837209302325582\n" + ] + } + ], + "source": [ + "from sklearn.metrics import accuracy_score\n", + "print('Accuracy of SVM: ', accuracy_score(y_svm, y_test))\n", + "print('Accuracy of RF: ', accuracy_score(y_rf, y_test))" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "4eNi7JZbFW6a" + }, + "source": [ + "**Which is the best classifier in terms of accuracy?**" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "LJzxydfoFW6a" + }, + "source": [ + "**Answer:** RF, since [some sources](https://elitedatascience.com/imbalanced-classes) suggest that decision-tree based models learn better from imbalance data compared to vector-based models." + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "hncFQayeFW6a" + }, + "source": [ + "#### AUC-ROC" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "intE_0qJFW6b" + }, + "source": [ + "In this week's lecture we saw that one of the most robust metrics for accuracy in the *imbalanced* world is the area under the receiver operating characteristic curve (or AUC-ROC for short). To get this metric, we need to retrain our models, this time in a probabilistic way!" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "mrTkRVEGFW6c" + }, + "source": [ + "This means that by setting the input `probability=True` when generating our SVM model (RF doesn't need it) and by changing `predict` to `predict_proba`, we will not obtain a fixed output, but instead a probability (value between 0 and 1) of the classification to be 0 or 1 respectively." + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "5IGpcKmmFW6c" + }, + "source": [ + "To keep the previous models/classes/predictions in our workspace, train new (probabilistic) models in the following cell and store the trained models as `model_svm_proba` and `model_rf_proba`, the classifiers as `clf_svm_proba` and `clf_rf_proba`, and the outputs as `y_svm_proba` and `y_rf_proba`:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "mBiiqjplFW6d", + "outputId": "ce268bd7-9425-44db-aeed-05f2735af670" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "[[0.5 0.5 ]\n", + " [0.00290506 0.99709494]\n", + " [0.4310463 0.5689537 ]\n", + " [0.33652558 0.66347442]\n", + " [0.42883087 0.57116913]\n", + " [0.33176612 0.66823388]\n", + " [0.29633996 0.70366004]\n", + " [0.28273627 0.71726373]\n", + " [0.0026465 0.9973535 ]\n", + " [0.0070745 0.9929255 ]\n", + " [0.2861486 0.7138514 ]\n", + " [0.72053046 0.27946954]\n", + " [0.00361924 0.99638076]\n", + " [0.4614873 0.5385127 ]\n", + " [0.04359583 0.95640417]\n", + " [0.13361643 0.86638357]\n", + " [0.00497214 0.99502786]\n", + " [0.69386133 0.30613867]\n", + " [0.03977946 0.96022054]\n", + " [0.03867366 0.96132634]\n", + " [0.57147958 0.42852042]\n", + " [0.29655905 0.70344095]\n", + " [0.48076318 0.51923682]\n", + " [0.68973062 0.31026938]\n", + " [0.8230479 0.1769521 ]\n", + " [0.33115286 0.66884714]\n", + " [0.00453551 0.99546449]\n", + " [0.38696399 0.61303601]\n", + " [0.21297886 0.78702114]\n", + " [0.7632129 0.2367871 ]\n", + " [0.72680895 0.27319105]\n", + " [0.3064582 0.6935418 ]\n", + " [0.55173802 0.44826198]\n", + " [0.32977871 0.67022129]\n", + " [0.3402258 0.6597742 ]\n", + " [0.21937489 0.78062511]\n", + " [0.51043782 0.48956218]\n", + " [0.58734293 0.41265707]\n", + " [0.02281678 0.97718322]\n", + " [0.20507039 0.79492961]\n", + " [0.03891567 0.96108433]\n", + " [0.46088941 0.53911059]\n", + " [0.41220668 0.58779332]] (43, 2)\n", + "[[0.243 0.757]\n", + " [0.034 0.966]\n", + " [0.85 0.15 ]\n", + " [0.538 0.462]\n", + " [0.328 0.672]\n", + " [0.31 0.69 ]\n", + " [0.027 0.973]\n", + " [0.205 0.795]\n", + " [0.003 0.997]\n", + " [0. 1. ]\n", + " [0.227 0.773]\n", + " [0.819 0.181]\n", + " [0.008 0.992]\n", + " [0.78 0.22 ]\n", + " [0.259 0.741]\n", + " [0.016 0.984]\n", + " [0.004 0.996]\n", + " [0.879 0.121]\n", + " [0.02 0.98 ]\n", + " [0.029 0.971]\n", + " [0.709 0.291]\n", + " [0.138 0.862]\n", + " [0.686 0.314]\n", + " [0.817 0.183]\n", + " [0.864 0.136]\n", + " [0.395 0.605]\n", + " [0.002 0.998]\n", + " [0.524 0.476]\n", + " [0.094 0.906]\n", + " [0.859 0.141]\n", + " [0.782 0.218]\n", + " [0.3 0.7 ]\n", + " [0.581 0.419]\n", + " [0.064 0.936]\n", + " [0.166 0.834]\n", + " [0.067 0.933]\n", + " [0.812 0.188]\n", + " [0.654 0.346]\n", + " [0.041 0.959]\n", + " [0.391 0.609]\n", + " [0.227 0.773]\n", + " [0.766 0.234]\n", + " [0.945 0.055]] (43, 2)\n" + ] + } + ], + "source": [ + "## Use this cell to re-train the models in a probabilistic way\n", + "model_svm_proba = SVC(kernel='linear', probability=True)\n", + "clf_svm_proba = model_svm_proba.fit(X_train,y_train)\n", + "y_svm_proba = clf_svm_proba.predict_proba(X_test)\n", + "\n", + "model_rf_proba = RandomForestClassifier(n_estimators = 1000, random_state = 42)\n", + "clf_rf_proba = model_rf_proba.fit(X_train, y_train)\n", + "y_rf_proba = clf_rf_proba.predict_proba(X_test)\n", + "\n", + "print(y_svm_proba,y_svm_proba.shape)\n", + "print(y_rf_proba,y_rf_proba.shape)" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "Q51l8sYfFW6e" + }, + "source": [ + "For `y_svm_proba` and `y_rf_proba` you should get *numpy* arrays of shape (43, 2), as now each output contains the probability of each sample to be 0 (first value) or 1 (second value)." + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "AaDbEoDVFW6e" + }, + "source": [ + "Now we will evaluate the AUC-ROC. We will **not** get the plot (as we don't have different thresholds), but rather we will obtain the numeric area under the curve (a value between 0 and 1, the larger the better)." + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "oXWPAWrxFW6e" + }, + "source": [ + "To obtain this values, you can run the following cell (provided that you have correctly calculated `y_svm_proba` and `y_rf_proba` in the previous step):" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "hKil5LVaFW6e", + "outputId": "c1cb64fd-b1f5-43a1-a7af-21a4c01147e2" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "AUC for SVM: 0.14532019704433496\n", + "AUC for RF: 0.05788177339901478\n" + ] + } + ], + "source": [ + "## Testing AUC-ROC considering the probabilities of the positive class (i.e. 0)\n", + "from sklearn.metrics import roc_auc_score\n", + "\n", + "# First, we need to extract only the probabilities of classifying 0 (second column of our numpy arrays)\n", + "# We can do this once again by means of list comprehension\n", + "y_svm_proba_0 = [p[0] for p in y_svm_proba]\n", + "y_rf_proba_0 = [p[0] for p in y_rf_proba]\n", + "\n", + "print('AUC for SVM: ',roc_auc_score(y_test, y_svm_proba_0))\n", + "print('AUC for RF: ',roc_auc_score(y_test, y_rf_proba_0))" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "DCPi7HrvFW6f" + }, + "source": [ + "If you are getting AUC-ROC values **smaller than 0.5** then you can simply invert them (or get the AUC-ROC for the rest/negative class) to get the actual AUC-ROC value for this classifier." + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "ZhFraohzFW6f" + }, + "source": [ + "A comprehensive explanation of why AUC-ROC cannot be smaller than 0.5 can be found [here](https://www.datascienceblog.net/post/machine-learning/interpreting-roc-curves-auc/)." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "y7Fy2Ju0FW6f", + "outputId": "601cd3b8-2e4d-41c4-e455-8350640f63f0" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "AUC for SVM: 0.8546798029556651\n", + "AUC for RF: 0.9421182266009852\n" + ] + } + ], + "source": [ + "## Use this cell to test AUC-ROC considering the probabilities of the rest/negative class (i.e. 1)\n", + "from sklearn.metrics import roc_auc_score\n", + "\n", + "# First, we need to extract only the probabilities of classifying 1 (second column of our numpy arrays)\n", + "# We can do this once again by means of list comprehension\n", + "y_svm_proba_1 = [p[1] for p in y_svm_proba]\n", + "y_rf_proba_1 = [p[1] for p in y_rf_proba]\n", + "\n", + "print('AUC for SVM: ',roc_auc_score(y_test, y_svm_proba_1))\n", + "print('AUC for RF: ',roc_auc_score(y_test, y_rf_proba_1))" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "vDy2_sZcFW6g" + }, + "source": [ + "**Is the classifier that was better in accuracy still better in AUC?**" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "72-aXZOpFW6g" + }, + "source": [ + "**ANSWER:** Depends, but in this case it is." + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "XD60OajcFW6g" + }, + "source": [ + "### Cross Validation" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "B0L-n3qRFW6g" + }, + "source": [ + "Let's see if the previous results were not product of chance or a lucky data split! To do so, we will use cross validation with $k=5$ folds." + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "ed_U3jAAFW6h" + }, + "source": [ + "Using the `KFold()`function contained in the `sklearn.model_selection` package you can split a dataset (in this case, the original one contained in the `data` variable) by using the `get_n_splits()` method" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "iw7qnSulFW6i", + "outputId": "69f7b842-1d39-4619-cbc5-0f449d7d471b" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "KFold(n_splits=5, random_state=None, shuffle=False)\n" + ] + } + ], + "source": [ + "from sklearn.model_selection import KFold\n", + "kf = KFold(n_splits=5)\n", + "kf.get_n_splits(data)\n", + "print(kf)" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "BZESJ1HIFW6i" + }, + "source": [ + "So far you only get a `KFold` object. However, we can put this object inside a for loop to create different training and testing sets in each iteration:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "uZxNffZVFW6i", + "outputId": "4a6091c3-1fc8-4f41-a932-ab9c867ffdd7" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "\n", + "Fold 1:\n", + "TRAIN INDEXES: [ 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60\n", + " 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78\n", + " 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96\n", + " 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114\n", + " 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132\n", + " 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150\n", + " 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168\n", + " 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186\n", + " 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204\n", + " 205 206 207 208 209 210 211 212 213]\n", + "TEST INDEXES: [ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", + " 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42]\n", + "\n", + "Fold 2:\n", + "TRAIN INDEXES: [ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17\n", + " 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35\n", + " 36 37 38 39 40 41 42 86 87 88 89 90 91 92 93 94 95 96\n", + " 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114\n", + " 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132\n", + " 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150\n", + " 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168\n", + " 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186\n", + " 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204\n", + " 205 206 207 208 209 210 211 212 213]\n", + "TEST INDEXES: [43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66\n", + " 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85]\n", + "\n", + "Fold 3:\n", + "TRAIN INDEXES: [ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17\n", + " 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35\n", + " 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53\n", + " 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71\n", + " 72 73 74 75 76 77 78 79 80 81 82 83 84 85 129 130 131 132\n", + " 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150\n", + " 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168\n", + " 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186\n", + " 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204\n", + " 205 206 207 208 209 210 211 212 213]\n", + "TEST INDEXES: [ 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103\n", + " 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121\n", + " 122 123 124 125 126 127 128]\n", + "\n", + "Fold 4:\n", + "TRAIN INDEXES: [ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17\n", + " 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35\n", + " 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53\n", + " 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71\n", + " 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89\n", + " 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107\n", + " 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125\n", + " 126 127 128 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186\n", + " 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204\n", + " 205 206 207 208 209 210 211 212 213]\n", + "TEST INDEXES: [129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146\n", + " 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164\n", + " 165 166 167 168 169 170 171]\n", + "\n", + "Fold 5:\n", + "TRAIN INDEXES: [ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17\n", + " 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35\n", + " 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53\n", + " 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71\n", + " 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89\n", + " 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107\n", + " 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125\n", + " 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143\n", + " 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161\n", + " 162 163 164 165 166 167 168 169 170 171]\n", + "TEST INDEXES: [172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189\n", + " 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207\n", + " 208 209 210 211 212 213]\n" + ] + } + ], + "source": [ + "i=1\n", + "for train_index, test_index in kf.split(data):\n", + " print('\\nFold '+str(i)+':')\n", + " print('TRAIN INDEXES:', train_index)\n", + " print('TEST INDEXES:', test_index)\n", + " X_train, X_test = data[train_index], data[test_index]\n", + " y_train, y_test = target[train_index], target[test_index]\n", + " i+=1" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "1BgJ7AoEFW6k" + }, + "source": [ + "Notice that what is being printed in the cell above are not the samples, but the indexes from where the samples will be taken in each fold!" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "IzLdeWxXFW6m" + }, + "source": [ + "Now use the cell below to implement the **stratified** version of KFolds. Remember that stratification will ensure that both classes are equally present in each set for every fold." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "KY0uftkQFW6o", + "outputId": "bcc018e6-900e-4916-dd07-16f7754080bb" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "StratifiedKFold(n_splits=5, random_state=None, shuffle=False)\n" + ] + } + ], + "source": [ + "## Use this cell to do a KFolds split in a stratified way\n", + "# Hint: Use StratifiedKFold\n", + "from sklearn.model_selection import StratifiedKFold\n", + "kf_strat = StratifiedKFold(n_splits=5)\n", + "kf_strat.get_n_splits(data, target)\n", + "print(kf_strat)" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "LpKr3WEIFW6q" + }, + "source": [ + "To evaluate models using cross validation you **don't** need all of this! In fact, you only use this if you want to store your folds or if you want to implement more complex models." + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "UM8M7pSQFW6q" + }, + "source": [ + "As a matter of fact it is easier to simply import the `cross_validate` function from the `sklearn.model_selection` package and get the scores as follows:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "GQyTV7ZhFW6r", + "outputId": "dec48a90-537a-4574-ed97-0ff372e997ed" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "SVM cross-validated scores: {'fit_time': array([0.00386953, 0.00357461, 0.003335 , 0.00345612, 0.00341058]), 'score_time': array([0.00141716, 0.00561357, 0.00126934, 0.00124955, 0.00125217]), 'test_score': array([0.65116279, 0.72093023, 0.74418605, 0.79069767, 0.76190476])}\n", + "RF cross-validated scores: {'fit_time': array([1.81135798, 1.85232377, 1.77592707, 1.81633162, 1.80905676]), 'score_time': array([0.09191847, 0.08923054, 0.08850193, 0.09602571, 0.13468146]), 'test_score': array([0.90697674, 0.88372093, 0.86046512, 0.88372093, 0.85714286])}\n" + ] + } + ], + "source": [ + "# Cross validatig the original data (the function will do it all)\n", + "from sklearn.model_selection import cross_validate\n", + "\n", + "scores_svm = cross_validate(model_svm, data, target, cv=5)\n", + "print('SVM cross-validated scores: ', scores_svm)\n", + "scores_rf = cross_validate(model_rf, data, target, cv=5)\n", + "print('RF cross-validated scores: ', scores_rf)" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "c0z5eqOeFW6r" + }, + "source": [ + "**From these metrics do you notice any disadvantage of RF?**" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "BtqEMu5VFW6s" + }, + "source": [ + "**Answer:** RF takes longer to fit!" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "co9pp2G4FW6s" + }, + "source": [ + "In fact, these are not the only metrics you can get from cross validation! Using the `cross_val_scores` function from the `sklearn.model_selection` package you can get (almost) all of the measures that we discussed in class. You can check the [scoring documentation](https://scikit-learn.org/stable/modules/model_evaluation.html) to see what you can calculate,and below you will find some examples" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "id": "_J2QvYYIFW6s" + }, + "outputs": [], + "source": [ + "# First we import cross_val_scores\n", + "from sklearn.model_selection import cross_val_score" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "86-AyTqYFW6s", + "outputId": "7d6075f8-afd7-478d-c09f-55153c6c50d1" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Accuracy for SVM: [0.65116279 0.72093023 0.74418605 0.79069767 0.76190476]\n", + "Accuracy for RF: [0.90697674 0.88372093 0.86046512 0.88372093 0.85714286]\n" + ] + } + ], + "source": [ + "# Evaluating Accuracy for each fold\n", + "print('Accuracy for SVM: ',cross_val_score(model_svm, data, target, cv=5, scoring = 'accuracy'))\n", + "print('Accuracy for RF: ',cross_val_score(model_rf, data, target, cv=5, scoring = 'accuracy'))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "ofJujm7dFW6s", + "outputId": "25c338e8-4d88-4be4-ae08-eae1a053004b" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Mean Accuracy for SVM: 0.7337763012181617\n", + "Mean Accuracy for RF: 0.8784053156146179\n" + ] + } + ], + "source": [ + "# Evaluating Mean Accuracy for all folds\n", + "print('Mean Accuracy for SVM: ',np.mean(cross_val_score(model_svm, data, target, cv=5, scoring = 'accuracy')))\n", + "print('Mean Accuracy for RF: ',np.mean(cross_val_score(model_rf, data, target, cv=5, scoring = 'accuracy')))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "kA6YMhNCFW6s", + "outputId": "d0b157b1-16a0-4979-ce81-f5d82fa84242" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Precision for SVM: [0.75 0.84 0.8 0.79411765 0.73684211]\n", + "Precision for RF: [0.93103448 0.92857143 0.96 0.9 0.84375 ]\n", + "Recall for SVM: [0.72413793 0.72413793 0.82758621 0.93103448 1. ]\n", + "Recall for RF: [0.93103448 0.89655172 0.82758621 0.93103448 0.96428571]\n", + "F1-Score for SVM: [0.73684211 0.77777778 0.81355932 0.85714286 0.84848485]\n", + "F1-Score for RF: [0.93103448 0.9122807 0.88888889 0.91525424 0.9 ]\n", + "Mean Precision for SVM: 0.7841919504643962\n", + "Mean Precision for RF: 0.9126711822660099\n", + "Mean Recall for SVM: 0.8413793103448276\n", + "Mean Recall for RF: 0.9100985221674875\n", + "Mean F1-Score for SVM: 0.8067613821405079\n", + "Mean F1-Score for RF: 0.9094916621380061\n" + ] + } + ], + "source": [ + "# Evaluating Precision, Recall and F1-score (both by fold and average)\n", + "print('Precision for SVM: ',cross_val_score(model_svm, data, target, cv=5, scoring = 'precision'))\n", + "print('Precision for RF: ',cross_val_score(model_rf, data, target, cv=5, scoring = 'precision'))\n", + "print('Recall for SVM: ',cross_val_score(model_svm, data, target, cv=5, scoring = 'recall'))\n", + "print('Recall for RF: ',cross_val_score(model_rf, data, target, cv=5, scoring = 'recall'))\n", + "print('F1-Score for SVM: ',cross_val_score(model_svm, data, target, cv=5, scoring = 'f1'))\n", + "print('F1-Score for RF: ',cross_val_score(model_rf, data, target, cv=5, scoring = 'f1'))\n", + "\n", + "print('Mean Precision for SVM: ',np.mean(cross_val_score(model_svm, data, target, cv=5, scoring = 'precision')))\n", + "print('Mean Precision for RF: ',np.mean(cross_val_score(model_rf, data, target, cv=5, scoring = 'precision')))\n", + "print('Mean Recall for SVM: ',np.mean(cross_val_score(model_svm, data, target, cv=5, scoring = 'recall')))\n", + "print('Mean Recall for RF: ',np.mean(cross_val_score(model_rf, data, target, cv=5, scoring = 'recall')))\n", + "print('Mean F1-Score for SVM: ',np.mean(cross_val_score(model_svm, data, target, cv=5, scoring = 'f1')))\n", + "print('Mean F1-Score for RF: ',np.mean(cross_val_score(model_rf, data, target, cv=5, scoring = 'f1')))" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "VdrNMJV6FW6t" + }, + "source": [ + "Notice that in the Keel repository, there is already a version of the glass dataset called **5FCV**. This means that the authors of this repository already provide a \"proper\" partition of this dataset to test cross validation. If you download this version, you will get 10 *.dat* files instead of 1. **Do you know why?**" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "B-NCxQvaFW6u" + }, + "source": [ + "**Answer:** Because there are 5 pairs of files, one for each fold of train and test data." + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "FBKbKbTMFW6u" + }, + "source": [ + "## Bonus" + ] + }, + { + "cell_type": "code", + "source": [ + "## Run this cell to import galss0.dat to Colab\n", + "!wget -O data_cv.zip https://sci2s.ugr.es/keel/dataset/data/imbalanced/glass0-5-fold.zip\n", + "!unzip data_cv.zip" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "KAzK_GxbFry-", + "outputId": "6cb1324b-20d8-438a-829d-a2536e11f953" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "--2023-03-09 13:18:59-- https://sci2s.ugr.es/keel/dataset/data/imbalanced/glass0-5-fold.zip\n", + "Resolving sci2s.ugr.es (sci2s.ugr.es)... 150.214.190.154\n", + "Connecting to sci2s.ugr.es (sci2s.ugr.es)|150.214.190.154|:443... connected.\n", + "HTTP request sent, awaiting response... 200 OK\n", + "Length: 30292 (30K) [application/zip]\n", + "Saving to: ‘data_cv.zip’\n", + "\n", + "data_cv.zip 100%[===================>] 29.58K --.-KB/s in 0.1s \n", + "\n", + "2023-03-09 13:18:59 (283 KB/s) - ‘data_cv.zip’ saved [30292/30292]\n", + "\n", + "Archive: data_cv.zip\n", + "replace glass0-5-1tra.dat? [y]es, [n]o, [A]ll, [N]one, [r]ename: n\n", + "replace glass0-5-1tst.dat? [y]es, [n]o, [A]ll, [N]one, [r]ename: n\n", + "replace glass0-5-2tra.dat? [y]es, [n]o, [A]ll, [N]one, [r]ename: n\n", + "replace glass0-5-2tst.dat? [y]es, [n]o, [A]ll, [N]one, [r]ename: n\n", + "replace glass0-5-3tra.dat? [y]es, [n]o, [A]ll, [N]one, [r]ename: n\n", + "replace glass0-5-3tst.dat? [y]es, [n]o, [A]ll, [N]one, [r]ename: n\n", + "replace glass0-5-4tra.dat? [y]es, [n]o, [A]ll, [N]one, [r]ename: n\n", + "replace glass0-5-4tst.dat? [y]es, [n]o, [A]ll, [N]one, [r]ename: n\n", + "replace glass0-5-5tra.dat? [y]es, [n]o, [A]ll, [N]one, [r]ename: n\n", + "replace glass0-5-5tst.dat? [y]es, [n]o, [A]ll, [N]one, [r]ename: n\n" + ] + } + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "scrolled": true, + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "Ogxb_EzyFW6v", + "outputId": "164286ac-62e3-469e-d60e-242fa4b253d2" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "%%%%%%%%%%%%%FOLD 1%%%%%%%%%%%%%%%%%%%%%%%\n", + "Accuracy of SVM (Fold 1): 0.7209302325581395\n", + "Accuracy of RF (Fold 1): 0.8837209302325582\n", + "%%%%%%%%%%%%%FOLD 2%%%%%%%%%%%%%%%%%%%%%%%\n", + "Accuracy of SVM (Fold 2): 0.7906976744186046\n", + "Accuracy of RF (Fold 2): 0.8372093023255814\n", + "%%%%%%%%%%%%%FOLD 3%%%%%%%%%%%%%%%%%%%%%%%\n", + "Accuracy of SVM (Fold 3): 0.7674418604651163\n", + "Accuracy of RF (Fold 3): 0.8837209302325582\n", + "%%%%%%%%%%%%%FOLD 4%%%%%%%%%%%%%%%%%%%%%%%\n", + "Accuracy of SVM (Fold 4): 0.6511627906976745\n", + "Accuracy of RF (Fold 4): 0.8372093023255814\n", + "%%%%%%%%%%%%%FOLD 5%%%%%%%%%%%%%%%%%%%%%%%\n", + "Accuracy of SVM (Fold 5): 0.8095238095238095\n", + "Accuracy of RF (Fold 5): 0.9285714285714286\n", + "%%%%%%%%FINAL RESULTS%%%%%%%%%%%%%\n", + "Average Accuracy of SVM (All Folds): 0.7479512735326688\n", + "Average Accuracy of RF (All Folds): 0.8740863787375416\n" + ] + } + ], + "source": [ + "accuracy_svm_final = 0\n", + "accuracy_rf_final = 0\n", + "for i in range(5): # Iterate five times\n", + " # Load data for each fold\n", + " print('%%%%%%%%%%%%%FOLD '+str(i+1)+'%%%%%%%%%%%%%%%%%%%%%%%')\n", + " X_train = np.genfromtxt('/content/glass0-5-'+str(i+1)+'tra.dat',\n", + " usecols=range(9), # this only brings the first nine columns of the dataset\n", + " skip_header=14, # The first 14 lines of the .dat contain a description\n", + " delimiter=',')\n", + "\n", + " y_train_names = np.genfromtxt('/content/glass0-5-'+str(i+1)+'tra.dat',\n", + " usecols=range(9,10), # This brings the last column of the dataset, which has the class\n", + " dtype = None,\n", + " encoding = None, # This helps us get the strings in a numpy array\n", + " skip_header=14,\n", + " delimiter=',')\n", + " X_test = np.genfromtxt('/content/glass0-5-'+str(i+1)+'tst.dat',\n", + " usecols=range(9), # this only brings the first nine columns of the dataset\n", + " skip_header=14, # The first 14 lines of the .dat contain a description\n", + " delimiter=',')\n", + " y_test_names = np.genfromtxt('/content/glass0-5-'+str(i+1)+'tst.dat',\n", + " usecols=range(9,10), # This brings the last column of the dataset, which has the class\n", + " dtype = None,\n", + " encoding = None, # This helps us get the strings in a numpy array\n", + " skip_header=14,\n", + " delimiter=',')\n", + " # Convert target into numbers\n", + " y_train = []\n", + " y_train = [0 if i == ' positive' else 1 for i in y_train_names]\n", + " y_train=np.array(y_train)\n", + " y_test = []\n", + " y_test = [0 if i == ' positive' else 1 for i in y_test_names]\n", + " y_test=np.array(y_test)\n", + " # TRAIN-TEST SVM\n", + " model_svm = SVC(kernel='linear')\n", + " clf_svm = model_svm.fit(X_train,y_train)\n", + " y_svm = model_svm.predict(X_test)\n", + " # TRAIN-TEST RF\n", + " model_rf = RandomForestClassifier(n_estimators = 1000, random_state = 42)\n", + " clf_rf = model_rf.fit(X_train, y_train)\n", + " y_rf = model_rf.predict(X_test)\n", + " # Calculate accuracy\n", + " print('Accuracy of SVM (Fold '+str(i+1)+'): ', accuracy_score(y_svm, y_test))\n", + " print('Accuracy of RF (Fold '+str(i+1)+'): ', accuracy_score(y_rf, y_test))\n", + " accuracy_svm_final = accuracy_svm_final + accuracy_score(y_svm, y_test)\n", + " accuracy_rf_final = accuracy_rf_final + accuracy_score(y_rf, y_test)\n", + "print('%%%%%%%%FINAL RESULTS%%%%%%%%%%%%%')\n", + "print('Average Accuracy of SVM (All Folds): ', accuracy_svm_final/5)\n", + "print('Average Accuracy of RF (All Folds): ', accuracy_rf_final/5)" + ] + } + ], + "metadata": { + "hide_input": false, + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.3" + }, + "varInspector": { + "cols": { + "lenName": 16, + "lenType": 16, + "lenVar": 40 + }, + "kernels_config": { + "python": { + "delete_cmd_postfix": "", + "delete_cmd_prefix": "del ", + "library": "var_list.py", + "varRefreshCmd": "print(var_dic_list())" + }, + "r": { + "delete_cmd_postfix": ") ", + "delete_cmd_prefix": "rm(", + "library": "var_list.r", + "varRefreshCmd": "cat(var_dic_list()) " + } + }, + "types_to_exclude": [ + "module", + "function", + "builtin_function_or_method", + "instance", + "_Feature" + ], + "window_display": false + }, + "colab": { + "provenance": [], + "include_colab_link": true + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} \ No newline at end of file From ccee58de709bad19a13d7a34f22a86e9fb814496 Mon Sep 17 00:00:00 2001 From: C M-G <43293156+carlosfmorenog@users.noreply.github.com> Date: Fri, 4 Apr 2025 15:18:48 +0100 Subject: [PATCH 10/12] Delete CMM560_T8_Lab_Solved.ipynb --- CMM560_Topic_8/CMM560_T8_Lab_Solved.ipynb | 1385 --------------------- 1 file changed, 1385 deletions(-) delete mode 100644 CMM560_Topic_8/CMM560_T8_Lab_Solved.ipynb diff --git a/CMM560_Topic_8/CMM560_T8_Lab_Solved.ipynb b/CMM560_Topic_8/CMM560_T8_Lab_Solved.ipynb deleted file mode 100644 index 6d25138..0000000 --- a/CMM560_Topic_8/CMM560_T8_Lab_Solved.ipynb +++ /dev/null @@ -1,1385 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": { - "id": "view-in-github", - "colab_type": "text" - }, - "source": [ - "\"Open" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "yqb-3eVyFW57" - }, - "source": [ - "# Topic 8 Laboratory (Solved)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "gIPcUCIRFW5_" - }, - "source": [ - "In this activity, you will use imbalanced datasets from the [Keel](https://sci2s.ugr.es/keel/imbalanced.php) public repository to appropriately evaluate performance metric in two popular classifiers." - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "5VaUrwAXFW6A" - }, - "source": [ - "## Performance Evaluation in Binary Datasets" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "qqSpEG6dFW6C" - }, - "source": [ - "### Making sense of the necessary data" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "N9Qm6DRNFW6D" - }, - "source": [ - "We will use the [glass](https://sci2s.ugr.es/keel/dataset/data/imbalanced/glass-names.txt) dataset. This one has 214 samples of 7 different types of glasses. Each glass sample has 9 features, each corresponding to a different element that composes a glass sample: Rl(??), Na, Mg, Al, Si, K, Ca, Ba and Fe." - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "b4N6qlhxFW6G" - }, - "source": [ - "Since we will start with binary datasets, we will first use the [glass0](https://sci2s.ugr.es/keel/keel-dataset/datasets/imbalanced/imb_IRlowerThan9/names/glass0-names.txt) version of the dataset. The only difference of this one with respect of the original one is that a certain glass class called `class 0` is compared against the rest of the glass classes." - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "vm66-SfMFW6I" - }, - "source": [ - "Click [here](https://sci2s.ugr.es/keel/dataset.php?cod=141) to visit the *glass0* description website. If you go to the bottom (where it says **Files and additional references**) you an download the **complete dataset**. Unzip to get a file with the extension *.dat*. **OR**, you can simply download `glass0.dat` from Moodle!" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "_4XSC08RFW6J" - }, - "source": [ - "### Loading the Data" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "dL0K9OxAFW6L" - }, - "source": [ - "To import the dataset **directly from the source** to Colab, run the following cell. You are using Linix commands to get and unzip the file!" - ] - }, - { - "cell_type": "code", - "source": [ - "## Run this cell to import glass0.dat to Colab\n", - "!wget -O data.zip https://sci2s.ugr.es/keel/dataset/data/imbalanced/glass0.zip\n", - "!unzip data.zip" - ], - "metadata": { - "colab": { - "base_uri": "https://localhost:8080/" - }, - "id": "vuEnUA9SFjIe", - "outputId": "6ccf9f47-2dad-42c4-8e98-f0bcf7872e53" - }, - "execution_count": null, - "outputs": [ - { - "output_type": "stream", - "name": "stdout", - "text": [ - "--2023-03-09 13:16:57-- https://sci2s.ugr.es/keel/dataset/data/imbalanced/glass0.zip\n", - "Resolving sci2s.ugr.es (sci2s.ugr.es)... 150.214.190.154\n", - "Connecting to sci2s.ugr.es (sci2s.ugr.es)|150.214.190.154|:443... connected.\n", - "HTTP request sent, awaiting response... 200 OK\n", - "Length: 5490 (5.4K) [application/zip]\n", - "Saving to: ‘data.zip’\n", - "\n", - "data.zip 100%[===================>] 5.36K --.-KB/s in 0s \n", - "\n", - "2023-03-09 13:16:58 (17.8 MB/s) - ‘data.zip’ saved [5490/5490]\n", - "\n", - "Archive: data.zip\n", - "replace glass0.dat? [y]es, [n]o, [A]ll, [N]one, [r]ename: n\n" - ] - } - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "colab": { - "base_uri": "https://localhost:8080/" - }, - "id": "C-bHYmiKFW6N", - "outputId": "e36a9595-4f52-46cb-bf78-bfcd364886d4" - }, - "outputs": [ - { - "output_type": "stream", - "name": "stdout", - "text": [ - "[[ 1.51588824 12.87795 3.43036 ... 8.04468 0.\n", - " 0.1224 ]\n", - " [ 1.5176423 12.9777 3.53812 ... 8.52888 0.\n", - " 0. ]\n", - " [ 1.52212996 14.20795 3.82099 ... 9.5726 0.\n", - " 0. ]\n", - " ...\n", - " [ 1.51837126 14.321 3.25974 ... 5.78508 1.62855\n", - " 0. ]\n", - " [ 1.51657164 14.7998 0. ... 8.2814 1.71045\n", - " 0. ]\n", - " [ 1.51732338 14.95275 0. ... 8.61496 1.5498\n", - " 0. ]] (214, 9)\n", - "[' positive' ' positive' ' positive' ' positive' ' positive' ' positive'\n", - " ' positive' ' positive' ' positive' ' positive' ' positive' ' positive'\n", - " ' positive' ' positive' ' positive' ' positive' ' positive' ' positive'\n", - " ' positive' ' positive' ' positive' ' positive' ' positive' ' positive'\n", - " ' positive' ' positive' ' positive' ' positive' ' positive' ' positive'\n", - " ' positive' ' positive' ' positive' ' positive' ' positive' ' positive'\n", - " ' positive' ' positive' ' positive' ' positive' ' positive' ' positive'\n", - " ' positive' ' positive' ' positive' ' positive' ' positive' ' positive'\n", - " ' positive' ' positive' ' positive' ' positive' ' positive' ' positive'\n", - " ' positive' ' positive' ' positive' ' positive' ' positive' ' positive'\n", - " ' positive' ' positive' ' positive' ' positive' ' positive' ' positive'\n", - " ' positive' ' positive' ' positive' ' positive' ' negative' ' negative'\n", - " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", - " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", - " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", - " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", - " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", - " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", - " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", - " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", - " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", - " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", - " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", - " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", - " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", - " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", - " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", - " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", - " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", - " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", - " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", - " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", - " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", - " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", - " ' negative' ' negative' ' negative' ' negative' ' negative' ' negative'\n", - " ' negative' ' negative' ' negative' ' negative'] (214,)\n" - ] - } - ], - "source": [ - "# Load data and target\n", - "import numpy as np\n", - "\n", - "data = np.genfromtxt('/content/glass0.dat',\n", - " usecols=range(9), # this only brings the first nine columns of the dataset\n", - " skip_header=14, # The first 14 lines of the .dat contain a description\n", - " delimiter=',')\n", - "\n", - "\n", - "target_names = np.genfromtxt('/content/glass0.dat',\n", - " usecols=range(9,10), # This brings the last column of the dataset, which has the class\n", - " dtype = None,\n", - " encoding = None, # This helps us get the strings in a numpy array\n", - " skip_header=14,\n", - " delimiter=',')\n", - "\n", - "print(data,data.shape)\n", - "print(target_names,target_names.shape)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "alvjq-zPFW6P" - }, - "source": [ - "Notice that once again, we will store the data and the target in separate variables. Moreover, we will generate a new target variable called `target` with `positive=0` and `negative=1` using the **list comprehension** technique:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "colab": { - "base_uri": "https://localhost:8080/" - }, - "id": "6xKNISsyFW6Q", - "outputId": "089486ed-9878-4ff3-956e-390880b09de1" - }, - "outputs": [ - { - "output_type": "stream", - "name": "stdout", - "text": [ - "[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n", - " 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1\n", - " 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n", - " 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n", - " 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n", - " 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1] (214,)\n" - ] - } - ], - "source": [ - "target = []\n", - "target = [0 if i == ' positive' else 1 for i in target_names]\n", - "target=np.array(target)\n", - "print(target,target.shape)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "dIrHLI36FW6R" - }, - "source": [ - "Notice that we chose 0 to be the positive and 1 to be the negative since the [glass0 documentation](https://sci2s.ugr.es/keel/dataset.php?cod=141) said so!" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "5uXtAbh1FW6R" - }, - "source": [ - "### Training the Classifiers" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "b3ZCfvDuFW6S" - }, - "source": [ - "Now we need to train a supervised learning model to evaluate. In this case we will use two popular classification models so that we can compare which is better for this dataset: **Support Vector Machine (SVM)** vs. **Random Forests (RF)**:" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "bK6SsH1yFW6S" - }, - "source": [ - "First we need to split our dataset into training and testing sets (80% train, 20% test). You have already done this in the past!" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "colab": { - "base_uri": "https://localhost:8080/" - }, - "id": "hkbLC6PsFW6T", - "outputId": "33371204-3fb9-4c50-fa46-c5fbb48d2267" - }, - "outputs": [ - { - "output_type": "stream", - "name": "stdout", - "text": [ - "Number of positive and negative samples in the training set: 56 115\n", - "Number of positive and negative samples in the test set: 14 29\n" - ] - } - ], - "source": [ - "## Use this cell to split your dataset into training and testing w/ stratification\n", - "from sklearn.model_selection import train_test_split\n", - "X_train, X_test, y_train, y_test = train_test_split(data,target,stratify=target,test_size=0.2)\n", - "print('Number of positive and negative samples in the training set: ',np.count_nonzero(y_train == 0),np.count_nonzero(y_train == 1))\n", - "print('Number of positive and negative samples in the test set: ',np.count_nonzero(y_test == 0),np.count_nonzero(y_test == 1))" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "VW7U9PG2FW6U" - }, - "source": [ - "Now train a SVM model called `model_svm` using the training data and predict the test data. Store the fitted model in a variable called `clf_svm` and the prediction results in a variable called `y_svm`." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "colab": { - "base_uri": "https://localhost:8080/" - }, - "id": "Kf2_wutqFW6V", - "outputId": "28bc174f-87c2-4ce2-f279-5d9a3c3d2a7b" - }, - "outputs": [ - { - "output_type": "stream", - "name": "stdout", - "text": [ - "[0 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 0 1 1 0 1 1 0 0 1 1 1 1 0 0 1 0 1 1 1 0\n", - " 0 1 1 1 1 1] (43,)\n" - ] - } - ], - "source": [ - "## Use this cell to train a SVM model to predict the labels of the test data\n", - "from sklearn.svm import SVC\n", - "model_svm = SVC(kernel='linear')\n", - "clf_svm = model_svm.fit(X_train,y_train)\n", - "y_svm = model_svm.predict(X_test)\n", - "print(y_svm,y_svm.shape)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "VeMq-yS1FW6W" - }, - "source": [ - "Likewise, train a RF model called `model_rf` (using the `RandomForestClassifier()` function contained in `sklearn.ensemble` package) on the same training data and predict the test data. Store the results in variables called `clf_rf` and `y_rf`." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "colab": { - "base_uri": "https://localhost:8080/" - }, - "id": "jQvhcWavFW6X", - "outputId": "c6075de5-5d80-4089-973a-11c09890bd6b" - }, - "outputs": [ - { - "output_type": "stream", - "name": "stdout", - "text": [ - "[1 1 0 0 1 1 1 1 1 1 1 0 1 0 1 1 1 0 1 1 0 1 0 0 0 1 1 0 1 0 0 1 0 1 1 1 0\n", - " 0 1 1 1 0 0] (43,)\n" - ] - } - ], - "source": [ - "## Use this cell to train a RF model to predict the labels of the test data\n", - "from sklearn.ensemble import RandomForestClassifier\n", - "model_rf = RandomForestClassifier(n_estimators = 1000, random_state = 42)\n", - "clf_rf = model_rf.fit(X_train, y_train)\n", - "y_rf = model_rf.predict(X_test)\n", - "print(y_rf,y_rf.shape)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "GeTaYYEsFW6X" - }, - "source": [ - "Both `y_svm` and `y_rf` should be *numpy* array vectors of size (43,)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "s-soiiYLFW6Y" - }, - "source": [ - "### Performance Evaluation Metrics" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "x5l-zc5MFW6Y" - }, - "source": [ - "In week 3 lab, we saw that once that we predict the values for the test set, we can compare both the `y_test` vector with the predicted vectors (in our case `y_svm` and `y_rf`) to obtain the results. If you recall, it was quite tricky to do this as we had more classes in the vector! Therefore, this time we will do it slightly different..." - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "v-Xkiv91FW6Y" - }, - "source": [ - "#### Accuracy" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "DCH6i6upFW6Z" - }, - "source": [ - "By now you should know that everything in Python can be imported! Performance metrics can be imported as well. We will first use accuracy (although it should be very clear by now that this one is not suitable for imbalanced datasets)." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "colab": { - "base_uri": "https://localhost:8080/" - }, - "id": "8fub_QCxFW6Z", - "outputId": "1d6dfd68-5639-40cd-dc76-36ece0409362" - }, - "outputs": [ - { - "output_type": "stream", - "name": "stdout", - "text": [ - "Accuracy of SVM: 0.6976744186046512\n", - "Accuracy of RF: 0.8837209302325582\n" - ] - } - ], - "source": [ - "from sklearn.metrics import accuracy_score\n", - "print('Accuracy of SVM: ', accuracy_score(y_svm, y_test))\n", - "print('Accuracy of RF: ', accuracy_score(y_rf, y_test))" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "4eNi7JZbFW6a" - }, - "source": [ - "**Which is the best classifier in terms of accuracy?**" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "LJzxydfoFW6a" - }, - "source": [ - "**Answer:** RF, since [some sources](https://elitedatascience.com/imbalanced-classes) suggest that decision-tree based models learn better from imbalance data compared to vector-based models." - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "hncFQayeFW6a" - }, - "source": [ - "#### AUC-ROC" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "intE_0qJFW6b" - }, - "source": [ - "In this week's lecture we saw that one of the most robust metrics for accuracy in the *imbalanced* world is the area under the receiver operating characteristic curve (or AUC-ROC for short). To get this metric, we need to retrain our models, this time in a probabilistic way!" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "mrTkRVEGFW6c" - }, - "source": [ - "This means that by setting the input `probability=True` when generating our SVM model (RF doesn't need it) and by changing `predict` to `predict_proba`, we will not obtain a fixed output, but instead a probability (value between 0 and 1) of the classification to be 0 or 1 respectively." - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "5IGpcKmmFW6c" - }, - "source": [ - "To keep the previous models/classes/predictions in our workspace, train new (probabilistic) models in the following cell and store the trained models as `model_svm_proba` and `model_rf_proba`, the classifiers as `clf_svm_proba` and `clf_rf_proba`, and the outputs as `y_svm_proba` and `y_rf_proba`:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "colab": { - "base_uri": "https://localhost:8080/" - }, - "id": "mBiiqjplFW6d", - "outputId": "ce268bd7-9425-44db-aeed-05f2735af670" - }, - "outputs": [ - { - "output_type": "stream", - "name": "stdout", - "text": [ - "[[0.5 0.5 ]\n", - " [0.00290506 0.99709494]\n", - " [0.4310463 0.5689537 ]\n", - " [0.33652558 0.66347442]\n", - " [0.42883087 0.57116913]\n", - " [0.33176612 0.66823388]\n", - " [0.29633996 0.70366004]\n", - " [0.28273627 0.71726373]\n", - " [0.0026465 0.9973535 ]\n", - " [0.0070745 0.9929255 ]\n", - " [0.2861486 0.7138514 ]\n", - " [0.72053046 0.27946954]\n", - " [0.00361924 0.99638076]\n", - " [0.4614873 0.5385127 ]\n", - " [0.04359583 0.95640417]\n", - " [0.13361643 0.86638357]\n", - " [0.00497214 0.99502786]\n", - " [0.69386133 0.30613867]\n", - " [0.03977946 0.96022054]\n", - " [0.03867366 0.96132634]\n", - " [0.57147958 0.42852042]\n", - " [0.29655905 0.70344095]\n", - " [0.48076318 0.51923682]\n", - " [0.68973062 0.31026938]\n", - " [0.8230479 0.1769521 ]\n", - " [0.33115286 0.66884714]\n", - " [0.00453551 0.99546449]\n", - " [0.38696399 0.61303601]\n", - " [0.21297886 0.78702114]\n", - " [0.7632129 0.2367871 ]\n", - " [0.72680895 0.27319105]\n", - " [0.3064582 0.6935418 ]\n", - " [0.55173802 0.44826198]\n", - " [0.32977871 0.67022129]\n", - " [0.3402258 0.6597742 ]\n", - " [0.21937489 0.78062511]\n", - " [0.51043782 0.48956218]\n", - " [0.58734293 0.41265707]\n", - " [0.02281678 0.97718322]\n", - " [0.20507039 0.79492961]\n", - " [0.03891567 0.96108433]\n", - " [0.46088941 0.53911059]\n", - " [0.41220668 0.58779332]] (43, 2)\n", - "[[0.243 0.757]\n", - " [0.034 0.966]\n", - " [0.85 0.15 ]\n", - " [0.538 0.462]\n", - " [0.328 0.672]\n", - " [0.31 0.69 ]\n", - " [0.027 0.973]\n", - " [0.205 0.795]\n", - " [0.003 0.997]\n", - " [0. 1. ]\n", - " [0.227 0.773]\n", - " [0.819 0.181]\n", - " [0.008 0.992]\n", - " [0.78 0.22 ]\n", - " [0.259 0.741]\n", - " [0.016 0.984]\n", - " [0.004 0.996]\n", - " [0.879 0.121]\n", - " [0.02 0.98 ]\n", - " [0.029 0.971]\n", - " [0.709 0.291]\n", - " [0.138 0.862]\n", - " [0.686 0.314]\n", - " [0.817 0.183]\n", - " [0.864 0.136]\n", - " [0.395 0.605]\n", - " [0.002 0.998]\n", - " [0.524 0.476]\n", - " [0.094 0.906]\n", - " [0.859 0.141]\n", - " [0.782 0.218]\n", - " [0.3 0.7 ]\n", - " [0.581 0.419]\n", - " [0.064 0.936]\n", - " [0.166 0.834]\n", - " [0.067 0.933]\n", - " [0.812 0.188]\n", - " [0.654 0.346]\n", - " [0.041 0.959]\n", - " [0.391 0.609]\n", - " [0.227 0.773]\n", - " [0.766 0.234]\n", - " [0.945 0.055]] (43, 2)\n" - ] - } - ], - "source": [ - "## Use this cell to re-train the models in a probabilistic way\n", - "model_svm_proba = SVC(kernel='linear', probability=True)\n", - "clf_svm_proba = model_svm_proba.fit(X_train,y_train)\n", - "y_svm_proba = clf_svm_proba.predict_proba(X_test)\n", - "\n", - "model_rf_proba = RandomForestClassifier(n_estimators = 1000, random_state = 42)\n", - "clf_rf_proba = model_rf_proba.fit(X_train, y_train)\n", - "y_rf_proba = clf_rf_proba.predict_proba(X_test)\n", - "\n", - "print(y_svm_proba,y_svm_proba.shape)\n", - "print(y_rf_proba,y_rf_proba.shape)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "Q51l8sYfFW6e" - }, - "source": [ - "For `y_svm_proba` and `y_rf_proba` you should get *numpy* arrays of shape (43, 2), as now each output contains the probability of each sample to be 0 (first value) or 1 (second value)." - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "AaDbEoDVFW6e" - }, - "source": [ - "Now we will evaluate the AUC-ROC. We will **not** get the plot (as we don't have different thresholds), but rather we will obtain the numeric area under the curve (a value between 0 and 1, the larger the better)." - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "oXWPAWrxFW6e" - }, - "source": [ - "To obtain this values, you can run the following cell (provided that you have correctly calculated `y_svm_proba` and `y_rf_proba` in the previous step):" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "colab": { - "base_uri": "https://localhost:8080/" - }, - "id": "hKil5LVaFW6e", - "outputId": "c1cb64fd-b1f5-43a1-a7af-21a4c01147e2" - }, - "outputs": [ - { - "output_type": "stream", - "name": "stdout", - "text": [ - "AUC for SVM: 0.14532019704433496\n", - "AUC for RF: 0.05788177339901478\n" - ] - } - ], - "source": [ - "## Testing AUC-ROC considering the probabilities of the positive class (i.e. 0)\n", - "from sklearn.metrics import roc_auc_score\n", - "\n", - "# First, we need to extract only the probabilities of classifying 0 (second column of our numpy arrays)\n", - "# We can do this once again by means of list comprehension\n", - "y_svm_proba_0 = [p[0] for p in y_svm_proba]\n", - "y_rf_proba_0 = [p[0] for p in y_rf_proba]\n", - "\n", - "print('AUC for SVM: ',roc_auc_score(y_test, y_svm_proba_0))\n", - "print('AUC for RF: ',roc_auc_score(y_test, y_rf_proba_0))" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "DCPi7HrvFW6f" - }, - "source": [ - "If you are getting AUC-ROC values **smaller than 0.5** then you can simply invert them (or get the AUC-ROC for the rest/negative class) to get the actual AUC-ROC value for this classifier." - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "ZhFraohzFW6f" - }, - "source": [ - "A comprehensive explanation of why AUC-ROC cannot be smaller than 0.5 can be found [here](https://www.datascienceblog.net/post/machine-learning/interpreting-roc-curves-auc/)." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "colab": { - "base_uri": "https://localhost:8080/" - }, - "id": "y7Fy2Ju0FW6f", - "outputId": "601cd3b8-2e4d-41c4-e455-8350640f63f0" - }, - "outputs": [ - { - "output_type": "stream", - "name": "stdout", - "text": [ - "AUC for SVM: 0.8546798029556651\n", - "AUC for RF: 0.9421182266009852\n" - ] - } - ], - "source": [ - "## Use this cell to test AUC-ROC considering the probabilities of the rest/negative class (i.e. 1)\n", - "from sklearn.metrics import roc_auc_score\n", - "\n", - "# First, we need to extract only the probabilities of classifying 1 (second column of our numpy arrays)\n", - "# We can do this once again by means of list comprehension\n", - "y_svm_proba_1 = [p[1] for p in y_svm_proba]\n", - "y_rf_proba_1 = [p[1] for p in y_rf_proba]\n", - "\n", - "print('AUC for SVM: ',roc_auc_score(y_test, y_svm_proba_1))\n", - "print('AUC for RF: ',roc_auc_score(y_test, y_rf_proba_1))" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "vDy2_sZcFW6g" - }, - "source": [ - "**Is the classifier that was better in accuracy still better in AUC?**" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "72-aXZOpFW6g" - }, - "source": [ - "**ANSWER:** Depends, but in this case it is." - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "XD60OajcFW6g" - }, - "source": [ - "### Cross Validation" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "B0L-n3qRFW6g" - }, - "source": [ - "Let's see if the previous results were not product of chance or a lucky data split! To do so, we will use cross validation with $k=5$ folds." - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "ed_U3jAAFW6h" - }, - "source": [ - "Using the `KFold()`function contained in the `sklearn.model_selection` package you can split a dataset (in this case, the original one contained in the `data` variable) by using the `get_n_splits()` method" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "colab": { - "base_uri": "https://localhost:8080/" - }, - "id": "iw7qnSulFW6i", - "outputId": "69f7b842-1d39-4619-cbc5-0f449d7d471b" - }, - "outputs": [ - { - "output_type": "stream", - "name": "stdout", - "text": [ - "KFold(n_splits=5, random_state=None, shuffle=False)\n" - ] - } - ], - "source": [ - "from sklearn.model_selection import KFold\n", - "kf = KFold(n_splits=5)\n", - "kf.get_n_splits(data)\n", - "print(kf)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "BZESJ1HIFW6i" - }, - "source": [ - "So far you only get a `KFold` object. However, we can put this object inside a for loop to create different training and testing sets in each iteration:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "colab": { - "base_uri": "https://localhost:8080/" - }, - "id": "uZxNffZVFW6i", - "outputId": "4a6091c3-1fc8-4f41-a932-ab9c867ffdd7" - }, - "outputs": [ - { - "output_type": "stream", - "name": "stdout", - "text": [ - "\n", - "Fold 1:\n", - "TRAIN INDEXES: [ 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60\n", - " 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78\n", - " 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96\n", - " 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114\n", - " 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132\n", - " 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150\n", - " 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168\n", - " 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186\n", - " 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204\n", - " 205 206 207 208 209 210 211 212 213]\n", - "TEST INDEXES: [ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", - " 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42]\n", - "\n", - "Fold 2:\n", - "TRAIN INDEXES: [ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17\n", - " 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35\n", - " 36 37 38 39 40 41 42 86 87 88 89 90 91 92 93 94 95 96\n", - " 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114\n", - " 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132\n", - " 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150\n", - " 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168\n", - " 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186\n", - " 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204\n", - " 205 206 207 208 209 210 211 212 213]\n", - "TEST INDEXES: [43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66\n", - " 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85]\n", - "\n", - "Fold 3:\n", - "TRAIN INDEXES: [ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17\n", - " 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35\n", - " 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53\n", - " 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71\n", - " 72 73 74 75 76 77 78 79 80 81 82 83 84 85 129 130 131 132\n", - " 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150\n", - " 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168\n", - " 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186\n", - " 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204\n", - " 205 206 207 208 209 210 211 212 213]\n", - "TEST INDEXES: [ 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103\n", - " 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121\n", - " 122 123 124 125 126 127 128]\n", - "\n", - "Fold 4:\n", - "TRAIN INDEXES: [ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17\n", - " 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35\n", - " 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53\n", - " 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71\n", - " 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89\n", - " 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107\n", - " 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125\n", - " 126 127 128 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186\n", - " 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204\n", - " 205 206 207 208 209 210 211 212 213]\n", - "TEST INDEXES: [129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146\n", - " 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164\n", - " 165 166 167 168 169 170 171]\n", - "\n", - "Fold 5:\n", - "TRAIN INDEXES: [ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17\n", - " 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35\n", - " 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53\n", - " 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71\n", - " 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89\n", - " 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107\n", - " 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125\n", - " 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143\n", - " 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161\n", - " 162 163 164 165 166 167 168 169 170 171]\n", - "TEST INDEXES: [172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189\n", - " 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207\n", - " 208 209 210 211 212 213]\n" - ] - } - ], - "source": [ - "i=1\n", - "for train_index, test_index in kf.split(data):\n", - " print('\\nFold '+str(i)+':')\n", - " print('TRAIN INDEXES:', train_index)\n", - " print('TEST INDEXES:', test_index)\n", - " X_train, X_test = data[train_index], data[test_index]\n", - " y_train, y_test = target[train_index], target[test_index]\n", - " i+=1" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "1BgJ7AoEFW6k" - }, - "source": [ - "Notice that what is being printed in the cell above are not the samples, but the indexes from where the samples will be taken in each fold!" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "IzLdeWxXFW6m" - }, - "source": [ - "Now use the cell below to implement the **stratified** version of KFolds. Remember that stratification will ensure that both classes are equally present in each set for every fold." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "colab": { - "base_uri": "https://localhost:8080/" - }, - "id": "KY0uftkQFW6o", - "outputId": "bcc018e6-900e-4916-dd07-16f7754080bb" - }, - "outputs": [ - { - "output_type": "stream", - "name": "stdout", - "text": [ - "StratifiedKFold(n_splits=5, random_state=None, shuffle=False)\n" - ] - } - ], - "source": [ - "## Use this cell to do a KFolds split in a stratified way\n", - "# Hint: Use StratifiedKFold\n", - "from sklearn.model_selection import StratifiedKFold\n", - "kf_strat = StratifiedKFold(n_splits=5)\n", - "kf_strat.get_n_splits(data, target)\n", - "print(kf_strat)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "LpKr3WEIFW6q" - }, - "source": [ - "To evaluate models using cross validation you **don't** need all of this! In fact, you only use this if you want to store your folds or if you want to implement more complex models." - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "UM8M7pSQFW6q" - }, - "source": [ - "As a matter of fact it is easier to simply import the `cross_validate` function from the `sklearn.model_selection` package and get the scores as follows:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "colab": { - "base_uri": "https://localhost:8080/" - }, - "id": "GQyTV7ZhFW6r", - "outputId": "dec48a90-537a-4574-ed97-0ff372e997ed" - }, - "outputs": [ - { - "output_type": "stream", - "name": "stdout", - "text": [ - "SVM cross-validated scores: {'fit_time': array([0.00386953, 0.00357461, 0.003335 , 0.00345612, 0.00341058]), 'score_time': array([0.00141716, 0.00561357, 0.00126934, 0.00124955, 0.00125217]), 'test_score': array([0.65116279, 0.72093023, 0.74418605, 0.79069767, 0.76190476])}\n", - "RF cross-validated scores: {'fit_time': array([1.81135798, 1.85232377, 1.77592707, 1.81633162, 1.80905676]), 'score_time': array([0.09191847, 0.08923054, 0.08850193, 0.09602571, 0.13468146]), 'test_score': array([0.90697674, 0.88372093, 0.86046512, 0.88372093, 0.85714286])}\n" - ] - } - ], - "source": [ - "# Cross validatig the original data (the function will do it all)\n", - "from sklearn.model_selection import cross_validate\n", - "\n", - "scores_svm = cross_validate(model_svm, data, target, cv=5)\n", - "print('SVM cross-validated scores: ', scores_svm)\n", - "scores_rf = cross_validate(model_rf, data, target, cv=5)\n", - "print('RF cross-validated scores: ', scores_rf)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "c0z5eqOeFW6r" - }, - "source": [ - "**From these metrics do you notice any disadvantage of RF?**" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "BtqEMu5VFW6s" - }, - "source": [ - "**Answer:** RF takes longer to fit!" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "co9pp2G4FW6s" - }, - "source": [ - "In fact, these are not the only metrics you can get from cross validation! Using the `cross_val_scores` function from the `sklearn.model_selection` package you can get (almost) all of the measures that we discussed in class. You can check the [scoring documentation](https://scikit-learn.org/stable/modules/model_evaluation.html) to see what you can calculate,and below you will find some examples" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "id": "_J2QvYYIFW6s" - }, - "outputs": [], - "source": [ - "# First we import cross_val_scores\n", - "from sklearn.model_selection import cross_val_score" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "colab": { - "base_uri": "https://localhost:8080/" - }, - "id": "86-AyTqYFW6s", - "outputId": "7d6075f8-afd7-478d-c09f-55153c6c50d1" - }, - "outputs": [ - { - "output_type": "stream", - "name": "stdout", - "text": [ - "Accuracy for SVM: [0.65116279 0.72093023 0.74418605 0.79069767 0.76190476]\n", - "Accuracy for RF: [0.90697674 0.88372093 0.86046512 0.88372093 0.85714286]\n" - ] - } - ], - "source": [ - "# Evaluating Accuracy for each fold\n", - "print('Accuracy for SVM: ',cross_val_score(model_svm, data, target, cv=5, scoring = 'accuracy'))\n", - "print('Accuracy for RF: ',cross_val_score(model_rf, data, target, cv=5, scoring = 'accuracy'))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "colab": { - "base_uri": "https://localhost:8080/" - }, - "id": "ofJujm7dFW6s", - "outputId": "25c338e8-4d88-4be4-ae08-eae1a053004b" - }, - "outputs": [ - { - "output_type": "stream", - "name": "stdout", - "text": [ - "Mean Accuracy for SVM: 0.7337763012181617\n", - "Mean Accuracy for RF: 0.8784053156146179\n" - ] - } - ], - "source": [ - "# Evaluating Mean Accuracy for all folds\n", - "print('Mean Accuracy for SVM: ',np.mean(cross_val_score(model_svm, data, target, cv=5, scoring = 'accuracy')))\n", - "print('Mean Accuracy for RF: ',np.mean(cross_val_score(model_rf, data, target, cv=5, scoring = 'accuracy')))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "colab": { - "base_uri": "https://localhost:8080/" - }, - "id": "kA6YMhNCFW6s", - "outputId": "d0b157b1-16a0-4979-ce81-f5d82fa84242" - }, - "outputs": [ - { - "output_type": "stream", - "name": "stdout", - "text": [ - "Precision for SVM: [0.75 0.84 0.8 0.79411765 0.73684211]\n", - "Precision for RF: [0.93103448 0.92857143 0.96 0.9 0.84375 ]\n", - "Recall for SVM: [0.72413793 0.72413793 0.82758621 0.93103448 1. ]\n", - "Recall for RF: [0.93103448 0.89655172 0.82758621 0.93103448 0.96428571]\n", - "F1-Score for SVM: [0.73684211 0.77777778 0.81355932 0.85714286 0.84848485]\n", - "F1-Score for RF: [0.93103448 0.9122807 0.88888889 0.91525424 0.9 ]\n", - "Mean Precision for SVM: 0.7841919504643962\n", - "Mean Precision for RF: 0.9126711822660099\n", - "Mean Recall for SVM: 0.8413793103448276\n", - "Mean Recall for RF: 0.9100985221674875\n", - "Mean F1-Score for SVM: 0.8067613821405079\n", - "Mean F1-Score for RF: 0.9094916621380061\n" - ] - } - ], - "source": [ - "# Evaluating Precision, Recall and F1-score (both by fold and average)\n", - "print('Precision for SVM: ',cross_val_score(model_svm, data, target, cv=5, scoring = 'precision'))\n", - "print('Precision for RF: ',cross_val_score(model_rf, data, target, cv=5, scoring = 'precision'))\n", - "print('Recall for SVM: ',cross_val_score(model_svm, data, target, cv=5, scoring = 'recall'))\n", - "print('Recall for RF: ',cross_val_score(model_rf, data, target, cv=5, scoring = 'recall'))\n", - "print('F1-Score for SVM: ',cross_val_score(model_svm, data, target, cv=5, scoring = 'f1'))\n", - "print('F1-Score for RF: ',cross_val_score(model_rf, data, target, cv=5, scoring = 'f1'))\n", - "\n", - "print('Mean Precision for SVM: ',np.mean(cross_val_score(model_svm, data, target, cv=5, scoring = 'precision')))\n", - "print('Mean Precision for RF: ',np.mean(cross_val_score(model_rf, data, target, cv=5, scoring = 'precision')))\n", - "print('Mean Recall for SVM: ',np.mean(cross_val_score(model_svm, data, target, cv=5, scoring = 'recall')))\n", - "print('Mean Recall for RF: ',np.mean(cross_val_score(model_rf, data, target, cv=5, scoring = 'recall')))\n", - "print('Mean F1-Score for SVM: ',np.mean(cross_val_score(model_svm, data, target, cv=5, scoring = 'f1')))\n", - "print('Mean F1-Score for RF: ',np.mean(cross_val_score(model_rf, data, target, cv=5, scoring = 'f1')))" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "VdrNMJV6FW6t" - }, - "source": [ - "Notice that in the Keel repository, there is already a version of the glass dataset called **5FCV**. This means that the authors of this repository already provide a \"proper\" partition of this dataset to test cross validation. If you download this version, you will get 10 *.dat* files instead of 1. **Do you know why?**" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "B-NCxQvaFW6u" - }, - "source": [ - "**Answer:** Because there are 5 pairs of files, one for each fold of train and test data." - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "FBKbKbTMFW6u" - }, - "source": [ - "## Bonus" - ] - }, - { - "cell_type": "code", - "source": [ - "## Run this cell to import galss0.dat to Colab\n", - "!wget -O data_cv.zip https://sci2s.ugr.es/keel/dataset/data/imbalanced/glass0-5-fold.zip\n", - "!unzip data_cv.zip" - ], - "metadata": { - "colab": { - "base_uri": "https://localhost:8080/" - }, - "id": "KAzK_GxbFry-", - "outputId": "6cb1324b-20d8-438a-829d-a2536e11f953" - }, - "execution_count": null, - "outputs": [ - { - "output_type": "stream", - "name": "stdout", - "text": [ - "--2023-03-09 13:18:59-- https://sci2s.ugr.es/keel/dataset/data/imbalanced/glass0-5-fold.zip\n", - "Resolving sci2s.ugr.es (sci2s.ugr.es)... 150.214.190.154\n", - "Connecting to sci2s.ugr.es (sci2s.ugr.es)|150.214.190.154|:443... connected.\n", - "HTTP request sent, awaiting response... 200 OK\n", - "Length: 30292 (30K) [application/zip]\n", - "Saving to: ‘data_cv.zip’\n", - "\n", - "data_cv.zip 100%[===================>] 29.58K --.-KB/s in 0.1s \n", - "\n", - "2023-03-09 13:18:59 (283 KB/s) - ‘data_cv.zip’ saved [30292/30292]\n", - "\n", - "Archive: data_cv.zip\n", - "replace glass0-5-1tra.dat? [y]es, [n]o, [A]ll, [N]one, [r]ename: n\n", - "replace glass0-5-1tst.dat? [y]es, [n]o, [A]ll, [N]one, [r]ename: n\n", - "replace glass0-5-2tra.dat? [y]es, [n]o, [A]ll, [N]one, [r]ename: n\n", - "replace glass0-5-2tst.dat? [y]es, [n]o, [A]ll, [N]one, [r]ename: n\n", - "replace glass0-5-3tra.dat? [y]es, [n]o, [A]ll, [N]one, [r]ename: n\n", - "replace glass0-5-3tst.dat? [y]es, [n]o, [A]ll, [N]one, [r]ename: n\n", - "replace glass0-5-4tra.dat? [y]es, [n]o, [A]ll, [N]one, [r]ename: n\n", - "replace glass0-5-4tst.dat? [y]es, [n]o, [A]ll, [N]one, [r]ename: n\n", - "replace glass0-5-5tra.dat? [y]es, [n]o, [A]ll, [N]one, [r]ename: n\n", - "replace glass0-5-5tst.dat? [y]es, [n]o, [A]ll, [N]one, [r]ename: n\n" - ] - } - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "scrolled": true, - "colab": { - "base_uri": "https://localhost:8080/" - }, - "id": "Ogxb_EzyFW6v", - "outputId": "164286ac-62e3-469e-d60e-242fa4b253d2" - }, - "outputs": [ - { - "output_type": "stream", - "name": "stdout", - "text": [ - "%%%%%%%%%%%%%FOLD 1%%%%%%%%%%%%%%%%%%%%%%%\n", - "Accuracy of SVM (Fold 1): 0.7209302325581395\n", - "Accuracy of RF (Fold 1): 0.8837209302325582\n", - "%%%%%%%%%%%%%FOLD 2%%%%%%%%%%%%%%%%%%%%%%%\n", - "Accuracy of SVM (Fold 2): 0.7906976744186046\n", - "Accuracy of RF (Fold 2): 0.8372093023255814\n", - "%%%%%%%%%%%%%FOLD 3%%%%%%%%%%%%%%%%%%%%%%%\n", - "Accuracy of SVM (Fold 3): 0.7674418604651163\n", - "Accuracy of RF (Fold 3): 0.8837209302325582\n", - "%%%%%%%%%%%%%FOLD 4%%%%%%%%%%%%%%%%%%%%%%%\n", - "Accuracy of SVM (Fold 4): 0.6511627906976745\n", - "Accuracy of RF (Fold 4): 0.8372093023255814\n", - "%%%%%%%%%%%%%FOLD 5%%%%%%%%%%%%%%%%%%%%%%%\n", - "Accuracy of SVM (Fold 5): 0.8095238095238095\n", - "Accuracy of RF (Fold 5): 0.9285714285714286\n", - "%%%%%%%%FINAL RESULTS%%%%%%%%%%%%%\n", - "Average Accuracy of SVM (All Folds): 0.7479512735326688\n", - "Average Accuracy of RF (All Folds): 0.8740863787375416\n" - ] - } - ], - "source": [ - "accuracy_svm_final = 0\n", - "accuracy_rf_final = 0\n", - "for i in range(5): # Iterate five times\n", - " # Load data for each fold\n", - " print('%%%%%%%%%%%%%FOLD '+str(i+1)+'%%%%%%%%%%%%%%%%%%%%%%%')\n", - " X_train = np.genfromtxt('/content/glass0-5-'+str(i+1)+'tra.dat',\n", - " usecols=range(9), # this only brings the first nine columns of the dataset\n", - " skip_header=14, # The first 14 lines of the .dat contain a description\n", - " delimiter=',')\n", - "\n", - " y_train_names = np.genfromtxt('/content/glass0-5-'+str(i+1)+'tra.dat',\n", - " usecols=range(9,10), # This brings the last column of the dataset, which has the class\n", - " dtype = None,\n", - " encoding = None, # This helps us get the strings in a numpy array\n", - " skip_header=14,\n", - " delimiter=',')\n", - " X_test = np.genfromtxt('/content/glass0-5-'+str(i+1)+'tst.dat',\n", - " usecols=range(9), # this only brings the first nine columns of the dataset\n", - " skip_header=14, # The first 14 lines of the .dat contain a description\n", - " delimiter=',')\n", - " y_test_names = np.genfromtxt('/content/glass0-5-'+str(i+1)+'tst.dat',\n", - " usecols=range(9,10), # This brings the last column of the dataset, which has the class\n", - " dtype = None,\n", - " encoding = None, # This helps us get the strings in a numpy array\n", - " skip_header=14,\n", - " delimiter=',')\n", - " # Convert target into numbers\n", - " y_train = []\n", - " y_train = [0 if i == ' positive' else 1 for i in y_train_names]\n", - " y_train=np.array(y_train)\n", - " y_test = []\n", - " y_test = [0 if i == ' positive' else 1 for i in y_test_names]\n", - " y_test=np.array(y_test)\n", - " # TRAIN-TEST SVM\n", - " model_svm = SVC(kernel='linear')\n", - " clf_svm = model_svm.fit(X_train,y_train)\n", - " y_svm = model_svm.predict(X_test)\n", - " # TRAIN-TEST RF\n", - " model_rf = RandomForestClassifier(n_estimators = 1000, random_state = 42)\n", - " clf_rf = model_rf.fit(X_train, y_train)\n", - " y_rf = model_rf.predict(X_test)\n", - " # Calculate accuracy\n", - " print('Accuracy of SVM (Fold '+str(i+1)+'): ', accuracy_score(y_svm, y_test))\n", - " print('Accuracy of RF (Fold '+str(i+1)+'): ', accuracy_score(y_rf, y_test))\n", - " accuracy_svm_final = accuracy_svm_final + accuracy_score(y_svm, y_test)\n", - " accuracy_rf_final = accuracy_rf_final + accuracy_score(y_rf, y_test)\n", - "print('%%%%%%%%FINAL RESULTS%%%%%%%%%%%%%')\n", - "print('Average Accuracy of SVM (All Folds): ', accuracy_svm_final/5)\n", - "print('Average Accuracy of RF (All Folds): ', accuracy_rf_final/5)" - ] - } - ], - "metadata": { - "hide_input": false, - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - }, - "varInspector": { - "cols": { - "lenName": 16, - "lenType": 16, - "lenVar": 40 - }, - "kernels_config": { - "python": { - "delete_cmd_postfix": "", - "delete_cmd_prefix": "del ", - "library": "var_list.py", - "varRefreshCmd": "print(var_dic_list())" - }, - "r": { - "delete_cmd_postfix": ") ", - "delete_cmd_prefix": "rm(", - "library": "var_list.r", - "varRefreshCmd": "cat(var_dic_list()) " - } - }, - "types_to_exclude": [ - "module", - "function", - "builtin_function_or_method", - "instance", - "_Feature" - ], - "window_display": false - }, - "colab": { - "provenance": [], - "include_colab_link": true - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file From 2f0d662fa2dd39df03413f0858379173de3e0ab0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Moreno-Garc=C3=ADa?= <43293156+carlosfmorenog@users.noreply.github.com> Date: Sat, 14 Mar 2026 22:10:26 +0000 Subject: [PATCH 11/12] Created using Colab --- CMM560_Topic_4/CMM560_T4_Lec.ipynb | 657 +++++++++++++++++++++++++++++ 1 file changed, 657 insertions(+) create mode 100644 CMM560_Topic_4/CMM560_T4_Lec.ipynb diff --git a/CMM560_Topic_4/CMM560_T4_Lec.ipynb b/CMM560_Topic_4/CMM560_T4_Lec.ipynb new file mode 100644 index 0000000..42ff3b2 --- /dev/null +++ b/CMM560_Topic_4/CMM560_T4_Lec.ipynb @@ -0,0 +1,657 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "id": "view-in-github", + "colab_type": "text" + }, + "source": [ + "\"Open" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "qp3OBI3e6jOv" + }, + "source": [ + "# Topic 4 - Data Acquisition, Loading and Storage" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "GJfi6gSs6jO0" + }, + "source": [ + "Today we will learn about:\n", + "- How and where to get data from\n", + "- How images are loaded into a table-like structure\n", + "- How to save that table for better sharing\n", + "- See an image loading tutorial with four versions (Jupyter Notebook, Google Colab, GitHub & Kaggle)" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "M7EGTV1B6jO1" + }, + "source": [ + "## Where to get data?\n", + "\n", + "More resources in our Trello Board!" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "S3a-B7X_6jO2" + }, + "source": [ + "### Kaggle\n", + "\n", + "https://www.kaggle.com/" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "Sca44g2t6jO2" + }, + "source": [ + "They post challenges and they also have a workspace where you can upload your data (public or private) and run Python/R notebooks" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "BOb0BniS6jO3" + }, + "source": [ + "### HuggingFace\n", + "\n", + "https://www.huggingface.co/" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "AAm94RJ36jO4" + }, + "source": [ + "You can **transfer** ML models from here, just be careful!" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "mSAM1SZH6jO4" + }, + "source": [ + "### UCI Machine Learning Repository\n", + "\n", + "https://archive.ics.uci.edu/ml/index.php" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "4R7izJlw6jO4" + }, + "source": [ + "## Pixel Loading" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "36-txkxt6jO5" + }, + "source": [ + "The most basic features in an image" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "3j1Y-mcR6jO5" + }, + "source": [ + "Like atoms for matter!" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "K5KUqReb6jO5" + }, + "source": [ + "An image is converted into a **vector** where each column represents a feature (pixel intensity)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "id": "LxVu6hdC6jO5", + "outputId": "cac24ad0-0151-4c37-8cd4-7d1f84299558" + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 1, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import cv2\n", + "import numpy as np\n", + "import matplotlib.pyplot as plt\n", + "%matplotlib inline\n", + "img = cv2.imread('imgs/logo.png', 0)\n", + "plt.imshow(img,'gray')" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "XGgL5v_t6jO6" + }, + "source": [ + "Now we need to `flatten` the image so that it is represented as a vector" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "id": "_LpwA4mz6jO6", + "outputId": "3a51a554-945c-4c6e-81ee-9d90e8ba35de" + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Shape of original image: (75, 75)\n", + "Flattened image: [234 246 246 ... 246 246 234]\n", + "Shape of flattened image: (5625,)\n" + ] + } + ], + "source": [ + "print(\"Shape of original image: \", img.shape)\n", + "img_vector = img.flatten()\n", + "print(\"Flattened image: \", img_vector)\n", + "print(\"Shape of flattened image: \", img_vector.shape)" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "p5C2uVTa6jO6" + }, + "source": [ + "As more images get imported, we can create an **image dataset** by appending new images into a `numpy` array" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "id": "qlQu3kOv6jO6", + "outputId": "8c847a66-634b-47aa-b35a-526a6a11e91a" + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(75, 75)\n" + ] + }, + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# creating a variable to store the dataset\n", + "dataset = img_vector.copy()\n", + "# Importing and showing a new image\n", + "img2 = cv2.imread('imgs/logotrans.png', 0)\n", + "plt.imshow(img2,'gray')\n", + "print(img2.shape)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "id": "Rvhqezb76jO7", + "outputId": "f366dc73-6b67-45e1-9f9c-c100534c3055" + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Pixels in the image dataset: [[234 246 246 ... 246 246 234]\n", + " [ 0 243 243 ... 242 242 234]]\n", + "Shape of image dataset: (2, 5625)\n" + ] + } + ], + "source": [ + "# Flattening the second image\n", + "img_vector2 = img2.flatten()\n", + "# stacking the second vector created into our dataset\n", + "dataset = np.vstack((dataset,img_vector2))\n", + "# Printing the dataset\n", + "print('Pixels in the image dataset: ',dataset)\n", + "print('Shape of image dataset: ', dataset.shape)" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "53Z15ky16jO7" + }, + "source": [ + "Notice that we can append more images to create a larger dataset!" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "CLDOMzY06jO7" + }, + "source": [ + "However, if we intend to use this dataset for **classification** purposes, then **all images should be of the same size**!" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "PGyZXFue6jO7" + }, + "source": [ + "If a new image with a different size has to be added to `dataset`, then we can use the `resize` function in `OpenCV`" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "id": "D4nW3-pk6jO7", + "outputId": "3bc8dacb-5bb2-4ed3-8383-56278c119a98" + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(150, 150)\n" + ] + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAakAAAGhCAYAAADbf0s2AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjcuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/bCgiHAAAACXBIWXMAAA9hAAAPYQGoP6dpAABXOUlEQVR4nO3de5BkZXk/8G93n9On791z2ZnZ3utQWYOyiGQxVJAEDLCWgkhMgooCXv6AIMhmkcuGXFYr7gpWcJMgWFiWGA1ipQSDKRNZ1CxSmwgubARMQCqTvTI7uzvT93v3+f3B7315+8zpnu7pMzOnZ76fqq6Z6T59+pyemfP0+77P+7we0zRNEBERuZB3qQ+AiIioFQYpIiJyLQYpIiJyLQYpIiJyLQYpIiJyLQYpIiJyLQYpIiJyLQYpIiJyLQYpIiJyLQYpIiJyrSUNUg888ADGx8cRCASwZcsW/OxnP1vKwyEiIpdZsiD13e9+F9u2bcPdd9+NF154Ab/7u7+L9773vTh8+PBSHRIREbmMZ6kKzJ5//vn4rd/6LTz44IPyvre+9a246qqrsHv37rbPbTQaOH78OKLRKDwez0IfKhEROcw0TWSzWSSTSXi9rdtL2iIek1SpVHDgwAHcddddTfdv3boV+/fvn7V9uVxGuVyWPx87dgxve9vbFvw4iYhoYR05cgRr165t+fiSBKlTp06hXq9jdHS06f7R0VFMTk7O2n737t343Oc+N+v+n//850gkEtA0DV6vF36/H16vFx6PBx6PB6ZpgiuREBEtLus1uNFooFKpoNFooFaroVarIZfL4fzzz0c0Gm27ryUJUoK1q840Tdvuux07dmD79u3y50wmg3Xr1iEejzcFKcMwZJBS90lERIvHeg1uNBool8tNQcrn883a1s6SBKnh4WH4fL5ZraapqalZrSsAMAwDhmHMut/r9dreAMgozjErIqLFZ70Gi2uz9Vo9lyUJUn6/H1u2bMHevXvxB3/wB/L+vXv34gMf+EDH+9E0Td58Pp9sURERkXs0Gg00Gg3U63XZFajrekfPXbLuvu3bt+Paa6/Feeedh9/5nd/BQw89hMOHD+PGG2/seB/iZEUXn7Wrj4iIlp56jW40Gl1dp5csSH3oQx/C6dOn8fnPfx6vv/46Nm/ejB/+8IfYsGFDV/sRJ8vgRETkXuq1Wtw6et5SzZPqRSaTQTwex8TEBIaGhpqy+xisiIjcxTTNpuy+er2OdDqNjRs3Ip1OIxaLtXxu3w/g9GGMJSJa0bq5bi+LIMX5UERE7qZeq7u5Zvd9kCIiov7QaDS6fg6DFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuZbjQWr37t145zvfiWg0ipGREVx11VV45ZVXmrYxTRM7d+5EMplEMBjExRdfjJdfftnpQyEioj7neJDat28fPv3pT+M///M/sXfvXtRqNWzduhX5fF5uc++99+K+++7D/fffj+eeew5jY2O47LLLkM1mnT4cIiLqYx7TNM2FfIGTJ09iZGQE+/btw+/93u/BNE0kk0ls27YNd955JwCgXC5jdHQU99xzD2644YY595nJZBCPxzExMYGBgQHoug6v1wvDMODxeBbydIiIqEumaaJcLqNWq6HRaKBWqyGTyWB8fBzpdBqxWKzlcxd8TCqdTgMABgcHAQATExOYnJzE1q1b5TaGYeCiiy7C/v37bfdRLpeRyWSabkREtPwtaJAyTRPbt2/HhRdeiM2bNwMAJicnAQCjo6NN246OjsrHrHbv3o14PC5v69atW8jDJiIil1jQIHXzzTfjl7/8Jb7zne/MeszaLWeaZsuuuh07diCdTsvbkSNHFuR4iYjIXbSF2vEtt9yCJ554Ak8//TTWrl0r7x8bGwPwRotq9erV8v6pqalZrSvBMAwYhrFQh0pERC7leEvKNE3cfPPNeOyxx/CTn/wE4+PjTY+Pj49jbGwMe/fulfdVKhXs27cPF1xwgdOHQ0REfczxltSnP/1pPPLII/jnf/5nRKNROc4Uj8cRDAbh8Xiwbds27Nq1C5s2bcKmTZuwa9cuhEIhXHPNNU4fDhER9THHg9SDDz4IALj44oub7v/GN76Bj3/84wCAO+64A8ViETfddBNmZmZw/vnn48knn0Q0GnX6cIgW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EblW10Hq6aefxvvf/34kk0l4PB58//vfl49Vq1XceeedOPvssxEOh5FMJnHdddfh+PHjTfsol8u45ZZbMDw8jHA4jCuvvBJHjx7t+WSIiGh56TpI5fN5nHPOObj//vtnPVYoFPD888/jL/7iL/D888/jsccew6uvvoorr7yyabtt27bh8ccfx6OPPopnnnkGuVwOV1xxBer1+vzPhIiIlh2P2UP5YY/Hg8cffxxXXXVVy22ee+45/PZv/zYOHTqE9evXI51OY9WqVfjWt76FD33oQwCA48ePY926dfjhD3+I97znPXO+biaTQTwex8TEBAYGBuSyDYZhcICdiMhlTNNEuVxGrVZDo9FArVZDJpPB+Pg40uk0YrFYy+cu+JhUOp2Gx+NBIpEAABw4cADVahVbt26V2ySTSWzevBn79++33Ue5XEYmk2m6ERHR8regQapUKuGuu+7CNddcIyPl5OQk/H4/BgYGmrYdHR3F5OSk7X52796NeDwub+vWrVvIwyYiIpdYsCBVrVbx4Q9/GI1GAw888MCc27dblXPHjh1Ip9PyduTIEacPl5YZLjNPtDwsSJCqVqu4+uqrMTExgb179zb1N46NjaFSqWBmZqbpOVNTUxgdHbXdn2EYiMViTTciIlr+HA9SIkD9+te/xlNPPYWhoaGmx7ds2QJd17F371553+uvv46XXnoJF1xwgdOHQysU150iWh66roKey+Xw2muvyZ8nJiZw8OBBDA4OIplM4o/+6I/w/PPP41/+5V9Qr9flONPg4CD8fj/i8Tg+9alP4bbbbsPQ0BAGBwfx2c9+FmeffTYuvfRS586MiIj6XtdB6he/+AXe/e53y5+3b98OALj++uuxc+dOPPHEEwCAd7zjHU3P++lPf4qLL74YAPDlL38Zmqbh6quvRrFYxCWXXIKHH34YPp9vnqdBRETLUU/zpJYK50kREfUPV8+TIiIimi+uzEsrjl3nAVvgRO7ElhQREbkWW1K04rDVRNQ/GKSIHNJpDhKDJFHn2N1HRESuxZYU0TzNd/ZGu+exlUXUjC0pIiJyLbakiOaJrR6ihceWFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuVbXQerpp5/G+9//fiSTSXg8Hnz/+99vue0NN9wAj8eDPXv2NN1fLpdxyy23YHh4GOFwGFdeeSWOHj3a7aEQEdEy13WQyufzOOecc3D//fe33e773/8+fv7znyOZTM56bNu2bXj88cfx6KOP4plnnkEul8MVV1yBer3e7eEQEdEypnX7hPe+971473vf23abY8eO4eabb8aPfvQjXH755U2PpdNpfP3rX8e3vvUtXHrppQCAb3/721i3bh2eeuopvOc97+n2kIiIaJlyfEyq0Wjg2muvxe23346zzjpr1uMHDhxAtVrF1q1b5X3JZBKbN2/G/v37bfdZLpeRyWSabkREtPw5HqTuueceaJqGz3zmM7aPT05Owu/3Y2BgoOn+0dFRTE5O2j5n9+7diMfj8rZu3TqnD5uIiFzI0SB14MAB/O3f/i0efvhheDyerp5rmmbL5+zYsQPpdFrejhw54sThEhGRyzkapH72s59hamoK69evh6Zp0DQNhw4dwm233YaNGzcCAMbGxlCpVDAzM9P03KmpKYyOjtru1zAMxGKxphsRES1/jgapa6+9Fr/85S9x8OBBeUsmk7j99tvxox/9CACwZcsW6LqOvXv3yue9/vrreOmll3DBBRc4eThERNTnus7uy+VyeO211+TPExMTOHjwIAYHB7F+/XoMDQ01ba/rOsbGxvCbv/mbAIB4PI5PfepTuO222zA0NITBwUF89rOfxdlnny2z/YiIiIB5BKlf/OIXePe73y1/3r59OwDg+uuvx8MPP9zRPr785S9D0zRcffXVKBaLuOSSS/Dwww/D5/N1ezhERLSMeUzTNJf6ILqVyWQQj8cxMTGBgYEB6LoOr9cLwzC6TtggIqKFZZomyuUyarUaGo0GarUaMpkMxsfHkU6n2+YZsHYfERG5FoMUERG5FoMUERG5FoMUERG5FoMUERG5FoMUEREtCq+3+5DT90HK4/HIGxERuZN6re7mmr0sghQREfWPbq7bfR+kTNNEH85HJiJaccS1uptr9rIIUupXIiJyH/Va3U3jouvafW4iTrTRaMDj8aDRaMxrYI6IFlY/dcvzA6/zGo2GvFZ32/vV10GqVquhVqsBgAxQIkh5PB7+sRG5hMfjgaa5/3LTaDRQr9eX+jCWBfUa3Gg0UK1WZd2+Wq2GarXa0X7c/1fTRqPRkDfxM9D85jBQES09r9fbdvVtNxHXEZo/6zVYvVZbr9tz6esgVa/XUa/X5RtSr9flP4K4j0GKaOmJi5IapLxer+taV2qXFM2f9RosWqjiq7h1wl1/IV1qF6S8Xi//2IhcTNd1+Hw+V7Wu1OsIzZ/1GrzigpT4A8rlctA0DZqmwev1olwuw+v1MkgR9QFd1123Bly1WkW5XOZ1o0d2QapSqTSNSeVyOQBzD8n0ZZDKZrMAgAsuuGCJj4SIiHqRzWYRj8dbPt6XK/M2Gg0cP34cpmli/fr1OHLkSNuVHd0sk8lg3bp1PIclthzOAVge58FzcI+FPA/TNJHNZpFMJttOHerLlpTX68XatWuRyWQAALFYrK//EACeg1ssh3MAlsd58BzcY6HOo10LSuDMVyIici0GKSIicq2+DlKGYeCv/uqvYBjGUh/KvPEc3GE5nAOwPM6D5+AebjiPvkycICKilaGvW1JERLS8MUgREZFrMUgREZFrMUgREZFrMUgREZFr9W2QeuCBBzA+Po5AIIAtW7bgZz/72VIfUku7d+/GO9/5TkSjUYyMjOCqq67CK6+80rSNaZrYuXMnkskkgsEgLr74Yrz88stLdMRz2717NzweD7Zt2ybv65dzOHbsGD72sY9haGgIoVAI73jHO3DgwAH5uNvPo1ar4c///M8xPj6OYDCIM844A5///Oeb1udx2zk8/fTTeP/7349kMgmPx4Pvf//7TY93crzlchm33HILhoeHEQ6HceWVV+Lo0aOLeBbtz6NareLOO+/E2WefjXA4jGQyieuuuw7Hjx931XnM9btQ3XDDDfB4PNizZ0/T/Yt6DmYfevTRR01d182vfe1r5q9+9Svz1ltvNcPhsHno0KGlPjRb73nPe8xvfOMb5ksvvWQePHjQvPzyy83169ebuVxObvPFL37RjEaj5ve+9z3zxRdfND/0oQ+Zq1evNjOZzBIeub1nn33W3Lhxo/n2t7/dvPXWW+X9/XAO09PT5oYNG8yPf/zj5s9//nNzYmLCfOqpp8zXXntNbuP28/jrv/5rc2hoyPyXf/kXc2Jiwvynf/onMxKJmHv27JHbuO0cfvjDH5p33323+b3vfc8EYD7++ONNj3dyvDfeeKO5Zs0ac+/evebzzz9vvvvd7zbPOeccs1arueI8UqmUeemll5rf/e53zf/5n/8x/+M//sM8//zzzS1btjTtY6nPY67fhfD444+b55xzjplMJs0vf/nLTY8t5jn0ZZD67d/+bfPGG29suu/MM88077rrriU6ou5MTU2ZAMx9+/aZpmmajUbDHBsbM7/4xS/KbUqlkhmPx82vfvWrS3WYtrLZrLlp0yZz79695kUXXSSDVL+cw5133mleeOGFLR/vh/O4/PLLzU9+8pNN933wgx80P/axj5mm6f5zsF4YOzneVCpl6rpuPvroo3KbY8eOmV6v1/y3f/u3RTt2VbsLvPDss8+aAOQHaLedR6tzOHr0qLlmzRrzpZdeMjds2NAUpBb7HPquu69SqeDAgQPYunVr0/1bt27F/v37l+ioupNOpwEAg4ODAICJiQlMTk42nZNhGLjoootcd06f/vSncfnll+PSSy9tur9fzuGJJ57Aeeedhz/+4z/GyMgIzj33XHzta1+Tj/fDeVx44YX48Y9/jFdffRUA8F//9V945pln8L73vQ9Af5yDqpPjPXDgAKrVatM2yWQSmzdvduU5Cel0Gh6PB4lEAkB/nEej0cC1116L22+/HWedddasxxf7HPquCvqpU6dQr9cxOjradP/o6CgmJyeX6Kg6Z5omtm/fjgsvvBCbN28GAHncdud06NChRT/GVh599FE8//zzeO6552Y91i/n8L//+7948MEHsX37dvzZn/0Znn32WXzmM5+BYRi47rrr+uI87rzzTqTTaZx55pnw+Xyo1+v4whe+gI985CMA+ud3IXRyvJOTk/D7/RgYGJi1jVv/70ulEu666y5cc801soJ4P5zHPffcA03T8JnPfMb28cU+h74LUoJ1NU/z/y8b73Y333wzfvnLX+KZZ56Z9Zibz+nIkSO49dZb8eSTTyIQCLTczs3nALzxKfG8887Drl27AADnnnsuXn75ZTz44IO47rrr5HZuPo/vfve7+Pa3v41HHnkEZ511Fg4ePIht27YhmUzi+uuvl9u5+RzszOd43XpO1WoVH/7wh9FoNPDAAw/Mub1bzuPAgQP427/9Wzz//PNdH89CnUPfdfcNDw/D5/PNithTU1OzPom5zS233IInnngCP/3pT7F27Vp5/9jYGAC4+pwOHDiAqakpbNmyBZqmQdM07Nu3D3/3d38HTdPkcbr5HABg9erVeNvb3tZ031vf+lYcPnwYQH/8Lm6//Xbcdddd+PCHP4yzzz4b1157Lf70T/8Uu3fvBtAf56Dq5HjHxsZQqVQwMzPTchu3qFaruPrqqzExMYG9e/c2rcPk9vP42c9+hqmpKaxfv17+nx86dAi33XYbNm7cCGDxz6HvgpTf78eWLVuwd+/epvv37t3r2uXkTdPEzTffjMceeww/+clPMD4+3vT4+Pg4xsbGms6pUqlg3759rjmnSy65BC+++CIOHjwob+eddx4++tGP4uDBgzjjjDNcfw4A8K53vWtW+v+rr76KDRs2AOiP30WhUJi1kqnP55Mp6P1wDqpOjnfLli3Qdb1pm9dffx0vvfSSq85JBKhf//rXeOqppzA0NNT0uNvP49prr8Uvf/nLpv/zZDKJ22+/HT/60Y8ALME5OJ6KsQhECvrXv/5181e/+pW5bds2MxwOm//3f/+31Idm60/+5E/MeDxu/vu//7v5+uuvy1uhUJDbfPGLXzTj8bj52GOPmS+++KL5kY98xFVpz3bU7D7T7I9zePbZZ01N08wvfOEL5q9//WvzH//xH81QKGR++9vfltu4/Tyuv/56c82aNTIF/bHHHjOHh4fNO+64Q27jtnPIZrPmCy+8YL7wwgsmAPO+++4zX3jhBZn11snx3njjjebatWvNp556ynz++efN3//931/0FPR251GtVs0rr7zSXLt2rXnw4MGm//Vyueya85jrd2Flze4zzcU9h74MUqZpml/5ylfMDRs2mH6/3/yt3/otmc7tRgBsb9/4xjfkNo1Gw/yrv/orc2xszDQMw/y93/s988UXX1y6g+6ANUj1yzn84Ac/MDdv3mwahmGeeeaZ5kMPPdT0uNvPI5PJmLfeequ5fv16MxAImGeccYZ59913N10I3XYOP/3pT23/B66//vqOj7dYLJo333yzOTg4aAaDQfOKK64wDx8+7JrzmJiYaPm//tOf/tQ15zHX78LKLkgt5jlwPSkiInKtvhuTIiKilYNBioiIXItBioiIXItBioiIXItBioiIXItBioiIXItBioiIXItBioiIXItBioiIXItBioiIXItBioiIXOv/AQ2D7ppeUkrJAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Importing and showing a third image\n", + "img3 = cv2.imread('imgs/logoaltered.png', 0)\n", + "plt.imshow(img3,'gray')\n", + "print(img3.shape)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "id": "lDX_WJb_6jO7", + "outputId": "f0ce5d0a-2fff-459f-a3d2-774296224814" + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "New dimensions of the image: (75, 75)\n", + "[[234 246 246 ... 246 246 234]\n", + " [ 0 243 243 ... 242 242 234]\n", + " [239 249 248 ... 248 249 239]] (3, 5625)\n" + ] + } + ], + "source": [ + "# Resizing the image\n", + "img3 = cv2.resize(img3, (75, 75))\n", + "print('New dimensions of the image: ', img3.shape)\n", + "# Flattening the third image\n", + "img_vector3 = img3.flatten()\n", + "# appending the third vector created\n", + "dataset = np.vstack((dataset,img_vector3))\n", + "# Printing the array\n", + "print(dataset, dataset.shape)" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "zMHJmZI06jO7" + }, + "source": [ + "Sometimes, it is useful to **binarise images after importing & resizing** them to:\n", + "\n", + " - Reduce the values for the features\n", + " - Increase quality/standardise samples" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "noDyEzBg6jO7" + }, + "source": [ + "We will talk about this technique on our next session" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "fm0qBzUZ6jO7" + }, + "source": [ + "### Save the dataset as a .csv file" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "id": "DPVSMvPA6jO7" + }, + "outputs": [], + "source": [ + "np.savetxt(\"imgs/dataset.csv\", dataset, delimiter=\",\")" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "cc7T0c-M6jO8" + }, + "source": [ + "Why this makes sense?" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "fNrO4Qkp6jO8" + }, + "source": [ + "To share data easily!" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "ZgKT_9Se6jO8" + }, + "source": [ + "How to do it with colour images?" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "jKEB7KBe6jO8" + }, + "source": [ + "You could have triples, or flatten the three dimensions. In the end, it is always easy to reconstruct provided that you know the images' dimensions!" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "zObxCd8x6jO8" + }, + "source": [ + "### Issues with using pixels as features" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "3JKbuvac6jO8" + }, + "source": [ + "If a $75 \\times 75$ image yielded $5'625$ features (pixels), imagine with larger images!" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "oEgzT1Lm6jO8" + }, + "source": [ + "Moreover, not all pixels contain valuable information" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "vPD6lLsI6jO8" + }, + "source": [ + "This representation is typically not **rotation invariant** nor **structurally** representative of the images" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "-A_cKIUk6jO8" + }, + "source": [ + "Still, they are widely used in machine learning! **Why?!**" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "Uh4Lu7416jO8" + }, + "source": [ + "## Data loading tutorial in Jupyter Notebook" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "M39NnOx06jO8" + }, + "source": [ + "Main issue: Libraries and processing power for next steps" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "heS6HHbk6jO8" + }, + "source": [ + "## Data Loading Tutorial in Google Colab\n", + "\n", + "https://colab.research.google.com/drive/1_oG0raFSN9sMm4XjSwfo4SgFW8pS5Hi8?usp=sharing" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "M4x075tj6jO9" + }, + "source": [ + "Main issue: You cannot share so easily!" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "HS17Adv36jO9" + }, + "source": [ + "Solution: Create a Google account specifically for the project and share the credentials" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "JACTs3QA6jO9" + }, + "source": [ + "## Data Loading Tutorial in GitHub\n", + "\n", + "https://github.com/carlosfmorenog/CMM560_Data_Loading_Tutorial" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "OIHaVEtH6jO9" + }, + "source": [ + "Main issue: Lower space, public (unless you do [this](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token))" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "zOrbcZ2W6jO9" + }, + "source": [ + "The token gives access to all your private repos! So be careful (maybe create an account just for that private project)" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "4ZbA5poH6jO9" + }, + "source": [ + "## Data Loading Tutorial in Kaggle\n", + "\n", + "https://www.kaggle.com/datasets/carlosmorenogarcia/data-loading-tutorial" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "a-OVsSQy6jO9" + }, + "source": [ + "Main issue: \"low space\" (100 GB, more if you make your dataset public)" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "cV2CoXVz6jO9" + }, + "source": [ + "## LAB: Loading your own data into a Jupyter Notebook" + ] + } + ], + "metadata": { + "celltoolbar": "Slideshow", + "hide_input": false, + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.11" + }, + "rise": { + "backimage": "../mybackimage.png", + "enable_chalkboard": true, + "scroll": true + }, + "varInspector": { + "cols": { + "lenName": 16, + "lenType": 16, + "lenVar": 40 + }, + "kernels_config": { + "python": { + "delete_cmd_postfix": "", + "delete_cmd_prefix": "del ", + "library": "var_list.py", + "varRefreshCmd": "print(var_dic_list())" + }, + "r": { + "delete_cmd_postfix": ") ", + "delete_cmd_prefix": "rm(", + "library": "var_list.r", + "varRefreshCmd": "cat(var_dic_list()) " + } + }, + "types_to_exclude": [ + "module", + "function", + "builtin_function_or_method", + "instance", + "_Feature" + ], + "window_display": false + }, + "colab": { + "provenance": [], + "include_colab_link": true + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} \ No newline at end of file From 9e2416c99ff47da121a423dd25937dd57cbf00a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Moreno-Garc=C3=ADa?= <43293156+carlosfmorenog@users.noreply.github.com> Date: Sat, 14 Mar 2026 22:11:06 +0000 Subject: [PATCH 12/12] Delete CMM560_Topic_4 directory --- CMM560_Topic_4/CMM560_T4_Lec.ipynb | 657 ----------------------------- 1 file changed, 657 deletions(-) delete mode 100644 CMM560_Topic_4/CMM560_T4_Lec.ipynb diff --git a/CMM560_Topic_4/CMM560_T4_Lec.ipynb b/CMM560_Topic_4/CMM560_T4_Lec.ipynb deleted file mode 100644 index 42ff3b2..0000000 --- a/CMM560_Topic_4/CMM560_T4_Lec.ipynb +++ /dev/null @@ -1,657 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": { - "id": "view-in-github", - "colab_type": "text" - }, - "source": [ - "\"Open" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "qp3OBI3e6jOv" - }, - "source": [ - "# Topic 4 - Data Acquisition, Loading and Storage" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "GJfi6gSs6jO0" - }, - "source": [ - "Today we will learn about:\n", - "- How and where to get data from\n", - "- How images are loaded into a table-like structure\n", - "- How to save that table for better sharing\n", - "- See an image loading tutorial with four versions (Jupyter Notebook, Google Colab, GitHub & Kaggle)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "M7EGTV1B6jO1" - }, - "source": [ - "## Where to get data?\n", - "\n", - "More resources in our Trello Board!" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "S3a-B7X_6jO2" - }, - "source": [ - "### Kaggle\n", - "\n", - "https://www.kaggle.com/" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "Sca44g2t6jO2" - }, - "source": [ - "They post challenges and they also have a workspace where you can upload your data (public or private) and run Python/R notebooks" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "BOb0BniS6jO3" - }, - "source": [ - "### HuggingFace\n", - "\n", - "https://www.huggingface.co/" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "AAm94RJ36jO4" - }, - "source": [ - "You can **transfer** ML models from here, just be careful!" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "mSAM1SZH6jO4" - }, - "source": [ - "### UCI Machine Learning Repository\n", - "\n", - "https://archive.ics.uci.edu/ml/index.php" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "4R7izJlw6jO4" - }, - "source": [ - "## Pixel Loading" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "36-txkxt6jO5" - }, - "source": [ - "The most basic features in an image" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "3j1Y-mcR6jO5" - }, - "source": [ - "Like atoms for matter!" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "K5KUqReb6jO5" - }, - "source": [ - "An image is converted into a **vector** where each column represents a feature (pixel intensity)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "id": "LxVu6hdC6jO5", - "outputId": "cac24ad0-0151-4c37-8cd4-7d1f84299558" - }, - "outputs": [ - { - "data": { - "text/plain": [ - "" - ] - }, - "execution_count": 1, - "metadata": {}, - "output_type": "execute_result" - }, - { - "data": { - "image/png": "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", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "import cv2\n", - "import numpy as np\n", - "import matplotlib.pyplot as plt\n", - "%matplotlib inline\n", - "img = cv2.imread('imgs/logo.png', 0)\n", - "plt.imshow(img,'gray')" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "XGgL5v_t6jO6" - }, - "source": [ - "Now we need to `flatten` the image so that it is represented as a vector" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "id": "_LpwA4mz6jO6", - "outputId": "3a51a554-945c-4c6e-81ee-9d90e8ba35de" - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Shape of original image: (75, 75)\n", - "Flattened image: [234 246 246 ... 246 246 234]\n", - "Shape of flattened image: (5625,)\n" - ] - } - ], - "source": [ - "print(\"Shape of original image: \", img.shape)\n", - "img_vector = img.flatten()\n", - "print(\"Flattened image: \", img_vector)\n", - "print(\"Shape of flattened image: \", img_vector.shape)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "p5C2uVTa6jO6" - }, - "source": [ - "As more images get imported, we can create an **image dataset** by appending new images into a `numpy` array" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "id": "qlQu3kOv6jO6", - "outputId": "8c847a66-634b-47aa-b35a-526a6a11e91a" - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "(75, 75)\n" - ] - }, - { - "data": { - "image/png": "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", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "# creating a variable to store the dataset\n", - "dataset = img_vector.copy()\n", - "# Importing and showing a new image\n", - "img2 = cv2.imread('imgs/logotrans.png', 0)\n", - "plt.imshow(img2,'gray')\n", - "print(img2.shape)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "id": "Rvhqezb76jO7", - "outputId": "f366dc73-6b67-45e1-9f9c-c100534c3055" - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Pixels in the image dataset: [[234 246 246 ... 246 246 234]\n", - " [ 0 243 243 ... 242 242 234]]\n", - "Shape of image dataset: (2, 5625)\n" - ] - } - ], - "source": [ - "# Flattening the second image\n", - "img_vector2 = img2.flatten()\n", - "# stacking the second vector created into our dataset\n", - "dataset = np.vstack((dataset,img_vector2))\n", - "# Printing the dataset\n", - "print('Pixels in the image dataset: ',dataset)\n", - "print('Shape of image dataset: ', dataset.shape)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "53Z15ky16jO7" - }, - "source": [ - "Notice that we can append more images to create a larger dataset!" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "CLDOMzY06jO7" - }, - "source": [ - "However, if we intend to use this dataset for **classification** purposes, then **all images should be of the same size**!" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "PGyZXFue6jO7" - }, - "source": [ - "If a new image with a different size has to be added to `dataset`, then we can use the `resize` function in `OpenCV`" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "id": "D4nW3-pk6jO7", - "outputId": "3bc8dacb-5bb2-4ed3-8383-56278c119a98" - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "(150, 150)\n" - ] - }, - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAakAAAGhCAYAAADbf0s2AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjcuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/bCgiHAAAACXBIWXMAAA9hAAAPYQGoP6dpAABXOUlEQVR4nO3de5BkZXk/8G93n9On791z2ZnZ3utQWYOyiGQxVJAEDLCWgkhMgooCXv6AIMhmkcuGXFYr7gpWcJMgWFiWGA1ipQSDKRNZ1CxSmwgubARMQCqTvTI7uzvT93v3+f3B7315+8zpnu7pMzOnZ76fqq6Z6T59+pyemfP0+77P+7we0zRNEBERuZB3qQ+AiIioFQYpIiJyLQYpIiJyLQYpIiJyLQYpIiJyLQYpIiJyLQYpIiJyLQYpIiJyLQYpIiJyLQYpIiJyrSUNUg888ADGx8cRCASwZcsW/OxnP1vKwyEiIpdZsiD13e9+F9u2bcPdd9+NF154Ab/7u7+L9773vTh8+PBSHRIREbmMZ6kKzJ5//vn4rd/6LTz44IPyvre+9a246qqrsHv37rbPbTQaOH78OKLRKDwez0IfKhEROcw0TWSzWSSTSXi9rdtL2iIek1SpVHDgwAHcddddTfdv3boV+/fvn7V9uVxGuVyWPx87dgxve9vbFvw4iYhoYR05cgRr165t+fiSBKlTp06hXq9jdHS06f7R0VFMTk7O2n737t343Oc+N+v+n//850gkEtA0DV6vF36/H16vFx6PBx6PB6ZpgiuREBEtLus1uNFooFKpoNFooFaroVarIZfL4fzzz0c0Gm27ryUJUoK1q840Tdvuux07dmD79u3y50wmg3Xr1iEejzcFKcMwZJBS90lERIvHeg1uNBool8tNQcrn883a1s6SBKnh4WH4fL5ZraapqalZrSsAMAwDhmHMut/r9dreAMgozjErIqLFZ70Gi2uz9Vo9lyUJUn6/H1u2bMHevXvxB3/wB/L+vXv34gMf+EDH+9E0Td58Pp9sURERkXs0Gg00Gg3U63XZFajrekfPXbLuvu3bt+Paa6/Feeedh9/5nd/BQw89hMOHD+PGG2/seB/iZEUXn7Wrj4iIlp56jW40Gl1dp5csSH3oQx/C6dOn8fnPfx6vv/46Nm/ejB/+8IfYsGFDV/sRJ8vgRETkXuq1Wtw6et5SzZPqRSaTQTwex8TEBIaGhpqy+xisiIjcxTTNpuy+er2OdDqNjRs3Ip1OIxaLtXxu3w/g9GGMJSJa0bq5bi+LIMX5UERE7qZeq7u5Zvd9kCIiov7QaDS6fg6DFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuZbjQWr37t145zvfiWg0ipGREVx11VV45ZVXmrYxTRM7d+5EMplEMBjExRdfjJdfftnpQyEioj7neJDat28fPv3pT+M///M/sXfvXtRqNWzduhX5fF5uc++99+K+++7D/fffj+eeew5jY2O47LLLkM1mnT4cIiLqYx7TNM2FfIGTJ09iZGQE+/btw+/93u/BNE0kk0ls27YNd955JwCgXC5jdHQU99xzD2644YY595nJZBCPxzExMYGBgQHoug6v1wvDMODxeBbydIiIqEumaaJcLqNWq6HRaKBWqyGTyWB8fBzpdBqxWKzlcxd8TCqdTgMABgcHAQATExOYnJzE1q1b5TaGYeCiiy7C/v37bfdRLpeRyWSabkREtPwtaJAyTRPbt2/HhRdeiM2bNwMAJicnAQCjo6NN246OjsrHrHbv3o14PC5v69atW8jDJiIil1jQIHXzzTfjl7/8Jb7zne/MeszaLWeaZsuuuh07diCdTsvbkSNHFuR4iYjIXbSF2vEtt9yCJ554Ak8//TTWrl0r7x8bGwPwRotq9erV8v6pqalZrSvBMAwYhrFQh0pERC7leEvKNE3cfPPNeOyxx/CTn/wE4+PjTY+Pj49jbGwMe/fulfdVKhXs27cPF1xwgdOHQ0REfczxltSnP/1pPPLII/jnf/5nRKNROc4Uj8cRDAbh8Xiwbds27Nq1C5s2bcKmTZuwa9cuhEIhXHPNNU4fDhER9THHg9SDDz4IALj44oub7v/GN76Bj3/84wCAO+64A8ViETfddBNmZmZw/vnn48knn0Q0GnX6cIgW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EblW10Hq6aefxvvf/34kk0l4PB58//vfl49Vq1XceeedOPvssxEOh5FMJnHdddfh+PHjTfsol8u45ZZbMDw8jHA4jCuvvBJHjx7t+WSIiGh56TpI5fN5nHPOObj//vtnPVYoFPD888/jL/7iL/D888/jsccew6uvvoorr7yyabtt27bh8ccfx6OPPopnnnkGuVwOV1xxBer1+vzPhIiIlh2P2UP5YY/Hg8cffxxXXXVVy22ee+45/PZv/zYOHTqE9evXI51OY9WqVfjWt76FD33oQwCA48ePY926dfjhD3+I97znPXO+biaTQTwex8TEBAYGBuSyDYZhcICdiMhlTNNEuVxGrVZDo9FArVZDJpPB+Pg40uk0YrFYy+cu+JhUOp2Gx+NBIpEAABw4cADVahVbt26V2ySTSWzevBn79++33Ue5XEYmk2m6ERHR8regQapUKuGuu+7CNddcIyPl5OQk/H4/BgYGmrYdHR3F5OSk7X52796NeDwub+vWrVvIwyYiIpdYsCBVrVbx4Q9/GI1GAw888MCc27dblXPHjh1Ip9PyduTIEacPl5YZLjNPtDwsSJCqVqu4+uqrMTExgb179zb1N46NjaFSqWBmZqbpOVNTUxgdHbXdn2EYiMViTTciIlr+HA9SIkD9+te/xlNPPYWhoaGmx7ds2QJd17F371553+uvv46XXnoJF1xwgdOHQysU150iWh66roKey+Xw2muvyZ8nJiZw8OBBDA4OIplM4o/+6I/w/PPP41/+5V9Qr9flONPg4CD8fj/i8Tg+9alP4bbbbsPQ0BAGBwfx2c9+FmeffTYuvfRS586MiIj6XtdB6he/+AXe/e53y5+3b98OALj++uuxc+dOPPHEEwCAd7zjHU3P++lPf4qLL74YAPDlL38Zmqbh6quvRrFYxCWXXIKHH34YPp9vnqdBRETLUU/zpJYK50kREfUPV8+TIiIimi+uzEsrjl3nAVvgRO7ElhQREbkWW1K04rDVRNQ/GKSIHNJpDhKDJFHn2N1HRESuxZYU0TzNd/ZGu+exlUXUjC0pIiJyLbakiOaJrR6ihceWFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuRaDFBERuVbXQerpp5/G+9//fiSTSXg8Hnz/+99vue0NN9wAj8eDPXv2NN1fLpdxyy23YHh4GOFwGFdeeSWOHj3a7aEQEdEy13WQyufzOOecc3D//fe33e773/8+fv7znyOZTM56bNu2bXj88cfx6KOP4plnnkEul8MVV1yBer3e7eEQEdEypnX7hPe+971473vf23abY8eO4eabb8aPfvQjXH755U2PpdNpfP3rX8e3vvUtXHrppQCAb3/721i3bh2eeuopvOc97+n2kIiIaJlyfEyq0Wjg2muvxe23346zzjpr1uMHDhxAtVrF1q1b5X3JZBKbN2/G/v37bfdZLpeRyWSabkREtPw5HqTuueceaJqGz3zmM7aPT05Owu/3Y2BgoOn+0dFRTE5O2j5n9+7diMfj8rZu3TqnD5uIiFzI0SB14MAB/O3f/i0efvhheDyerp5rmmbL5+zYsQPpdFrejhw54sThEhGRyzkapH72s59hamoK69evh6Zp0DQNhw4dwm233YaNGzcCAMbGxlCpVDAzM9P03KmpKYyOjtru1zAMxGKxphsRES1/jgapa6+9Fr/85S9x8OBBeUsmk7j99tvxox/9CACwZcsW6LqOvXv3yue9/vrreOmll3DBBRc4eThERNTnus7uy+VyeO211+TPExMTOHjwIAYHB7F+/XoMDQ01ba/rOsbGxvCbv/mbAIB4PI5PfepTuO222zA0NITBwUF89rOfxdlnny2z/YiIiIB5BKlf/OIXePe73y1/3r59OwDg+uuvx8MPP9zRPr785S9D0zRcffXVKBaLuOSSS/Dwww/D5/N1ezhERLSMeUzTNJf6ILqVyWQQj8cxMTGBgYEB6LoOr9cLwzC6TtggIqKFZZomyuUyarUaGo0GarUaMpkMxsfHkU6n2+YZsHYfERG5FoMUERG5FoMUERG5FoMUERG5FoMUERG5FoMUEREtCq+3+5DT90HK4/HIGxERuZN6re7mmr0sghQREfWPbq7bfR+kTNNEH85HJiJaccS1uptr9rIIUupXIiJyH/Va3U3jouvafW4iTrTRaMDj8aDRaMxrYI6IFlY/dcvzA6/zGo2GvFZ32/vV10GqVquhVqsBgAxQIkh5PB7+sRG5hMfjgaa5/3LTaDRQr9eX+jCWBfUa3Gg0UK1WZd2+Wq2GarXa0X7c/1fTRqPRkDfxM9D85jBQES09r9fbdvVtNxHXEZo/6zVYvVZbr9tz6esgVa/XUa/X5RtSr9flP4K4j0GKaOmJi5IapLxer+taV2qXFM2f9RosWqjiq7h1wl1/IV1qF6S8Xi//2IhcTNd1+Hw+V7Wu1OsIzZ/1GrzigpT4A8rlctA0DZqmwev1olwuw+v1MkgR9QFd1123Bly1WkW5XOZ1o0d2QapSqTSNSeVyOQBzD8n0ZZDKZrMAgAsuuGCJj4SIiHqRzWYRj8dbPt6XK/M2Gg0cP34cpmli/fr1OHLkSNuVHd0sk8lg3bp1PIclthzOAVge58FzcI+FPA/TNJHNZpFMJttOHerLlpTX68XatWuRyWQAALFYrK//EACeg1ssh3MAlsd58BzcY6HOo10LSuDMVyIici0GKSIicq2+DlKGYeCv/uqvYBjGUh/KvPEc3GE5nAOwPM6D5+AebjiPvkycICKilaGvW1JERLS8MUgREZFrMUgREZFrMUgREZFrMUgREZFr9W2QeuCBBzA+Po5AIIAtW7bgZz/72VIfUku7d+/GO9/5TkSjUYyMjOCqq67CK6+80rSNaZrYuXMnkskkgsEgLr74Yrz88stLdMRz2717NzweD7Zt2ybv65dzOHbsGD72sY9haGgIoVAI73jHO3DgwAH5uNvPo1ar4c///M8xPj6OYDCIM844A5///Oeb1udx2zk8/fTTeP/7349kMgmPx4Pvf//7TY93crzlchm33HILhoeHEQ6HceWVV+Lo0aOLeBbtz6NareLOO+/E2WefjXA4jGQyieuuuw7Hjx931XnM9btQ3XDDDfB4PNizZ0/T/Yt6DmYfevTRR01d182vfe1r5q9+9Svz1ltvNcPhsHno0KGlPjRb73nPe8xvfOMb5ksvvWQePHjQvPzyy83169ebuVxObvPFL37RjEaj5ve+9z3zxRdfND/0oQ+Zq1evNjOZzBIeub1nn33W3Lhxo/n2t7/dvPXWW+X9/XAO09PT5oYNG8yPf/zj5s9//nNzYmLCfOqpp8zXXntNbuP28/jrv/5rc2hoyPyXf/kXc2Jiwvynf/onMxKJmHv27JHbuO0cfvjDH5p33323+b3vfc8EYD7++ONNj3dyvDfeeKO5Zs0ac+/evebzzz9vvvvd7zbPOeccs1arueI8UqmUeemll5rf/e53zf/5n/8x/+M//sM8//zzzS1btjTtY6nPY67fhfD444+b55xzjplMJs0vf/nLTY8t5jn0ZZD67d/+bfPGG29suu/MM88077rrriU6ou5MTU2ZAMx9+/aZpmmajUbDHBsbM7/4xS/KbUqlkhmPx82vfvWrS3WYtrLZrLlp0yZz79695kUXXSSDVL+cw5133mleeOGFLR/vh/O4/PLLzU9+8pNN933wgx80P/axj5mm6f5zsF4YOzneVCpl6rpuPvroo3KbY8eOmV6v1/y3f/u3RTt2VbsLvPDss8+aAOQHaLedR6tzOHr0qLlmzRrzpZdeMjds2NAUpBb7HPquu69SqeDAgQPYunVr0/1bt27F/v37l+ioupNOpwEAg4ODAICJiQlMTk42nZNhGLjoootcd06f/vSncfnll+PSSy9tur9fzuGJJ57Aeeedhz/+4z/GyMgIzj33XHzta1+Tj/fDeVx44YX48Y9/jFdffRUA8F//9V945pln8L73vQ9Af5yDqpPjPXDgAKrVatM2yWQSmzdvduU5Cel0Gh6PB4lEAkB/nEej0cC1116L22+/HWedddasxxf7HPquCvqpU6dQr9cxOjradP/o6CgmJyeX6Kg6Z5omtm/fjgsvvBCbN28GAHncdud06NChRT/GVh599FE8//zzeO6552Y91i/n8L//+7948MEHsX37dvzZn/0Znn32WXzmM5+BYRi47rrr+uI87rzzTqTTaZx55pnw+Xyo1+v4whe+gI985CMA+ud3IXRyvJOTk/D7/RgYGJi1jVv/70ulEu666y5cc801soJ4P5zHPffcA03T8JnPfMb28cU+h74LUoJ1NU/z/y8b73Y333wzfvnLX+KZZ56Z9Zibz+nIkSO49dZb8eSTTyIQCLTczs3nALzxKfG8887Drl27AADnnnsuXn75ZTz44IO47rrr5HZuPo/vfve7+Pa3v41HHnkEZ511Fg4ePIht27YhmUzi+uuvl9u5+RzszOd43XpO1WoVH/7wh9FoNPDAAw/Mub1bzuPAgQP427/9Wzz//PNdH89CnUPfdfcNDw/D5/PNithTU1OzPom5zS233IInnngCP/3pT7F27Vp5/9jYGAC4+pwOHDiAqakpbNmyBZqmQdM07Nu3D3/3d38HTdPkcbr5HABg9erVeNvb3tZ031vf+lYcPnwYQH/8Lm6//Xbcdddd+PCHP4yzzz4b1157Lf70T/8Uu3fvBtAf56Dq5HjHxsZQqVQwMzPTchu3qFaruPrqqzExMYG9e/c2rcPk9vP42c9+hqmpKaxfv17+nx86dAi33XYbNm7cCGDxz6HvgpTf78eWLVuwd+/epvv37t3r2uXkTdPEzTffjMceeww/+clPMD4+3vT4+Pg4xsbGms6pUqlg3759rjmnSy65BC+++CIOHjwob+eddx4++tGP4uDBgzjjjDNcfw4A8K53vWtW+v+rr76KDRs2AOiP30WhUJi1kqnP55Mp6P1wDqpOjnfLli3Qdb1pm9dffx0vvfSSq85JBKhf//rXeOqppzA0NNT0uNvP49prr8Uvf/nLpv/zZDKJ22+/HT/60Y8ALME5OJ6KsQhECvrXv/5181e/+pW5bds2MxwOm//3f/+31Idm60/+5E/MeDxu/vu//7v5+uuvy1uhUJDbfPGLXzTj8bj52GOPmS+++KL5kY98xFVpz3bU7D7T7I9zePbZZ01N08wvfOEL5q9//WvzH//xH81QKGR++9vfltu4/Tyuv/56c82aNTIF/bHHHjOHh4fNO+64Q27jtnPIZrPmCy+8YL7wwgsmAPO+++4zX3jhBZn11snx3njjjebatWvNp556ynz++efN3//931/0FPR251GtVs0rr7zSXLt2rXnw4MGm//Vyueya85jrd2Flze4zzcU9h74MUqZpml/5ylfMDRs2mH6/3/yt3/otmc7tRgBsb9/4xjfkNo1Gw/yrv/orc2xszDQMw/y93/s988UXX1y6g+6ANUj1yzn84Ac/MDdv3mwahmGeeeaZ5kMPPdT0uNvPI5PJmLfeequ5fv16MxAImGeccYZ59913N10I3XYOP/3pT23/B66//vqOj7dYLJo333yzOTg4aAaDQfOKK64wDx8+7JrzmJiYaPm//tOf/tQ15zHX78LKLkgt5jlwPSkiInKtvhuTIiKilYNBioiIXItBioiIXItBioiIXItBioiIXItBioiIXItBioiIXItBioiIXItBioiIXItBioiIXItBioiIXOv/AQ2D7ppeUkrJAAAAAElFTkSuQmCC", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "# Importing and showing a third image\n", - "img3 = cv2.imread('imgs/logoaltered.png', 0)\n", - "plt.imshow(img3,'gray')\n", - "print(img3.shape)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "id": "lDX_WJb_6jO7", - "outputId": "f0ce5d0a-2fff-459f-a3d2-774296224814" - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "New dimensions of the image: (75, 75)\n", - "[[234 246 246 ... 246 246 234]\n", - " [ 0 243 243 ... 242 242 234]\n", - " [239 249 248 ... 248 249 239]] (3, 5625)\n" - ] - } - ], - "source": [ - "# Resizing the image\n", - "img3 = cv2.resize(img3, (75, 75))\n", - "print('New dimensions of the image: ', img3.shape)\n", - "# Flattening the third image\n", - "img_vector3 = img3.flatten()\n", - "# appending the third vector created\n", - "dataset = np.vstack((dataset,img_vector3))\n", - "# Printing the array\n", - "print(dataset, dataset.shape)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "zMHJmZI06jO7" - }, - "source": [ - "Sometimes, it is useful to **binarise images after importing & resizing** them to:\n", - "\n", - " - Reduce the values for the features\n", - " - Increase quality/standardise samples" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "noDyEzBg6jO7" - }, - "source": [ - "We will talk about this technique on our next session" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "fm0qBzUZ6jO7" - }, - "source": [ - "### Save the dataset as a .csv file" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "id": "DPVSMvPA6jO7" - }, - "outputs": [], - "source": [ - "np.savetxt(\"imgs/dataset.csv\", dataset, delimiter=\",\")" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "cc7T0c-M6jO8" - }, - "source": [ - "Why this makes sense?" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "fNrO4Qkp6jO8" - }, - "source": [ - "To share data easily!" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "ZgKT_9Se6jO8" - }, - "source": [ - "How to do it with colour images?" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "jKEB7KBe6jO8" - }, - "source": [ - "You could have triples, or flatten the three dimensions. In the end, it is always easy to reconstruct provided that you know the images' dimensions!" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "zObxCd8x6jO8" - }, - "source": [ - "### Issues with using pixels as features" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "3JKbuvac6jO8" - }, - "source": [ - "If a $75 \\times 75$ image yielded $5'625$ features (pixels), imagine with larger images!" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "oEgzT1Lm6jO8" - }, - "source": [ - "Moreover, not all pixels contain valuable information" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "vPD6lLsI6jO8" - }, - "source": [ - "This representation is typically not **rotation invariant** nor **structurally** representative of the images" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "-A_cKIUk6jO8" - }, - "source": [ - "Still, they are widely used in machine learning! **Why?!**" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "Uh4Lu7416jO8" - }, - "source": [ - "## Data loading tutorial in Jupyter Notebook" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "M39NnOx06jO8" - }, - "source": [ - "Main issue: Libraries and processing power for next steps" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "heS6HHbk6jO8" - }, - "source": [ - "## Data Loading Tutorial in Google Colab\n", - "\n", - "https://colab.research.google.com/drive/1_oG0raFSN9sMm4XjSwfo4SgFW8pS5Hi8?usp=sharing" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "M4x075tj6jO9" - }, - "source": [ - "Main issue: You cannot share so easily!" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "HS17Adv36jO9" - }, - "source": [ - "Solution: Create a Google account specifically for the project and share the credentials" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "JACTs3QA6jO9" - }, - "source": [ - "## Data Loading Tutorial in GitHub\n", - "\n", - "https://github.com/carlosfmorenog/CMM560_Data_Loading_Tutorial" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "OIHaVEtH6jO9" - }, - "source": [ - "Main issue: Lower space, public (unless you do [this](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token))" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "zOrbcZ2W6jO9" - }, - "source": [ - "The token gives access to all your private repos! So be careful (maybe create an account just for that private project)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "4ZbA5poH6jO9" - }, - "source": [ - "## Data Loading Tutorial in Kaggle\n", - "\n", - "https://www.kaggle.com/datasets/carlosmorenogarcia/data-loading-tutorial" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "a-OVsSQy6jO9" - }, - "source": [ - "Main issue: \"low space\" (100 GB, more if you make your dataset public)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "cV2CoXVz6jO9" - }, - "source": [ - "## LAB: Loading your own data into a Jupyter Notebook" - ] - } - ], - "metadata": { - "celltoolbar": "Slideshow", - "hide_input": false, - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.11.11" - }, - "rise": { - "backimage": "../mybackimage.png", - "enable_chalkboard": true, - "scroll": true - }, - "varInspector": { - "cols": { - "lenName": 16, - "lenType": 16, - "lenVar": 40 - }, - "kernels_config": { - "python": { - "delete_cmd_postfix": "", - "delete_cmd_prefix": "del ", - "library": "var_list.py", - "varRefreshCmd": "print(var_dic_list())" - }, - "r": { - "delete_cmd_postfix": ") ", - "delete_cmd_prefix": "rm(", - "library": "var_list.r", - "varRefreshCmd": "cat(var_dic_list()) " - } - }, - "types_to_exclude": [ - "module", - "function", - "builtin_function_or_method", - "instance", - "_Feature" - ], - "window_display": false - }, - "colab": { - "provenance": [], - "include_colab_link": true - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file