{"id":33823,"date":"2021-05-12T09:03:49","date_gmt":"2021-05-12T03:33:49","guid":{"rendered":"https:\/\/www.mygreatlearning.com\/blog\/data-mining-tool-weka\/"},"modified":"2024-10-24T17:54:23","modified_gmt":"2024-10-24T12:24:23","slug":"data-mining-tool-weka","status":"publish","type":"post","link":"https:\/\/www.mygreatlearning.com\/blog\/data-mining-tool-weka\/","title":{"rendered":"DATA MINING TOOL: WEKA"},"content":{"rendered":"\n<p>Before we move onto the Weka tool, we need some ideas about data. In previous days peoples maintained their business details manually, handwritten data records were very important those days. That record helped them to analyse the data to make future decisions. But it needs lots of paperwork, it is time-consuming. Nowadays that data is maintained through the computer because our life is embedded with data, for example, our name is a kind of data and our living place, date of birth, in our government provides aadhar number that is also kind of data, in schools, students particulars,&nbsp; in supermarkets customer details, product details, customer purchase details, in bank account holder details, credit card holder details etc\u2026. We don't know about the importance of our information, but that data is important to some other people to develop their business. You can think about how it is possible,&nbsp; one product seller wants to sell their product in a place, but he doesn't know anything about that place and people, so they want to study that place and get a decision to sell their products. It all happens by their own thinking.&nbsp;<\/p>\n\n\n\n<p>If we collect our data properly, we can use that data to analyse our business understanding. Properly collected is without spelling mistakes, without missing values, or without duplicate values.&nbsp; Data handling is an important role of every organization. Without data, we can\u2019t do anything. In this blog, we are going to see one important data mining tool.&nbsp;<\/p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe title=\"Data Mining Tutorial for Beginners | Live Session | Great Learning\" width=\"500\" height=\"281\" src=\"https:\/\/www.youtube.com\/embed\/NGnst2LDlUo?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe>\n<\/div><\/figure>\n\n\n\n<p><strong>WEKA<\/strong><\/p>\n\n\n\n<p><strong>Weka - Waikato Environment for Knowledge Analysis (Weka)<\/strong><\/p>\n\n\n\n<p>It is a suite of machine learning software developed at the University of Waikato, New Zealand.&nbsp; The program is written in Java. It contains a Collection of visualization tools and algorithms for data analysis and <a href=\"https:\/\/www.mygreatlearning.com\/blog\/what-is-predictive-modeling\/\">predictive modeling<\/a> coupled with graphical user interface. Weka supports several standard data mining tasks, more specifically, data pre-processing, clustering, classification, regressing, visualization and feature selection.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"prerequisites\">Prerequisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Know about how to install weka tool<\/li>\n\n\n\n<li>Know about tools of the weka tool<\/li>\n\n\n\n<li>Know about upload the dataset<\/li>\n\n\n\n<li>Know about filetypes of the dataset<\/li>\n\n\n\n<li>Know about machine learning algorithm<\/li>\n<\/ul>\n\n\n\n<p>The above picture help us to understand more about weka tool<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"raw-data\">Raw Data &nbsp;<\/h2>\n\n\n\n<p>Did you see the field of paddy it represents raw data, the paddy needs to dry, and then boiled and then cleaned that cover then only we can get rice, and on the other side&nbsp; you&nbsp; can see the bowl of rice represents the cleaned data, yes this forms only we can get food. same thing the data also Usually this data has lots of&nbsp; noise . we must care about that noise, for example, null values, Duplicate values, empty space, irrelevant fields like that. So we must clear that noise datas.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"preprocessor\">Preprocessor<\/h2>\n\n\n\n<p>Preprocessor - Preprocessor is used to clean the noisy data. If data is noisy we can\u2019t do further steps for analysis. So first we find what are the problems occurring in our data, ABT (Analyze Base Table) in our data we can view from the excel file, and use some excel filter menus to find details of the datas. Data preprocessing is divided into four stages: data cleaning, data integration, data reduction, and data transformation.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"classify\">Classify<\/h2>\n\n\n\n<p>After preprocessing&nbsp; the data&nbsp; we can use that data to find some information by following the algorithms.systematic arrangement in groups or categories according to established criteria specifically. 7 Types of Classification Algorithms<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Logistic Regression.<\/li>\n\n\n\n<li>Na\u00efve Bayes.<\/li>\n\n\n\n<li>Stochastic Gradient Descent.<\/li>\n\n\n\n<li>K-Nearest Neighbours.<\/li>\n\n\n\n<li>Decision Tree.<\/li>\n\n\n\n<li>Random Forest.<\/li>\n\n\n\n<li><a href=\"https:\/\/www.mygreatlearning.com\/blog\/introduction-to-support-vector-machine\/\">Support Vector Machine.<\/a><\/li>\n<\/ul>\n\n\n\n<p>Logistic Regression&nbsp;<\/p>\n\n\n\n<p>Logistic regression is a linear classification method that learns the probability of a sample belonging to a certain class. Logistic regression tries to find the optimal decision boundary that best separates the classes. it represents True or false or yes or No category algorithms. Loot at the below image it shows two way of separation like that out data also has two way of separation.<\/p>\n\n\n\n<p>Naive Bayes.<\/p>\n\n\n\n<p>Na\u00efve Bayes is a classification method based on Bayes\u2019 theorem that derives the probability of the given feature vector being associated with a label. Na\u00efve Bayes has a naive assumption of conditional independence for every feature, which means that the algorithm expects the features to be independent which is not always the case.<\/p>\n\n\n\n<p>Stochastic Gradient Descent.<\/p>\n\n\n\n<p>Stochastic gradient descent is an iterative method for optimizing an objective function with suitable smoothness properties. It can be regarded as a stochastic approximation of gradient descent optimization, since it replaces the actual gradient by an estimate thereof. Look at the following image: rice become rice flour and then it get some optimizing&nbsp; , yes still some of irrelevant things are mixed with it .<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"k-nearest-neighbours\">K-Nearest Neighbours.<\/h3>\n\n\n\n<p>kNN stands for <strong>k-Nearest Neighbours<\/strong>. It is a supervised learning algorithm. This means that we train it under supervision. We train it using the labelled data already available to us<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"decision-tree\">Decision Tree.<\/h3>\n\n\n\n<p>Decision Tree is a Supervised learning technique that can be used for both classification and Regression problems, but mostly it is preferred for solving Classification problems. It is a tree-structured classifier, where internal nodes represent the features of a dataset, branches represent the decision rules and each leaf node represents the outcome.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"random-forest\">Random Forest.<\/h3>\n\n\n\n<p>Random forest is a supervised learning algorithm. The \"forest\" it builds is an ensemble of decision trees, usually trained with the \u201cbagging\u201d method. The general idea of the bagging method is that a combination of learning models increases the overall result.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"support-vector-machine\">Support Vector Machine.<\/h3>\n\n\n\n<p><strong>Support Vector Machine<\/strong>\u201d (<strong>SVM<\/strong>) is a supervised <strong>machine<\/strong> learning <strong>algorithm<\/strong> which can be used for both classification or regression challenges. ... The <strong>SVM<\/strong> classifier is a frontier which best segregates the two classes (hyper-plane\/ line).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"cluster\">Cluster<\/h2>\n\n\n\n<p>&nbsp; WEKA supports several clustering algorithms such as EM, FilteredClusterer, HierarchicalClusterer, SimpleKMeans and so on. You should understand these algorithms completely to fully exploit the WEKA capabilities. As in the case of classification, WEKA allows you to visualize the detected clusters graphically.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"associate\">Associate&nbsp;<\/h2>\n\n\n\n<p>Rules can predict any attribute, or indeed any combination of attributes. To find them we need a different kind of algorithm. \u201cSupport\u201d and \u201cconfidence\u201d are two measures of a rule that are used to evaluate them and rank them. The most popular association rule learner, and the one used in Weka, is called Apriori.<\/p>\n\n\n\n<p>In some places, rice with dal is a very very important food for South India. That support and confidence are high.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"attribute-selection\">Attribute Selection<\/h2>\n\n\n\n<p>The above examples help us to understand a little bit what an algorithm is and how it works. These algorithms are available at the weka tool. So we want to do only one thing: create a dataset and load it to that tool.<\/p>\n\n\n\n<p>Attribute selection means that if we find the rice type, we measure some parameters rice size, rice colour, rice length, rice width. These measurements help us to find that type. The same thing weka tool also supports attribute selection via information gain using the InfoGainAttributeEval Attribute Evaluator. Like the correlation technique above, the Ranker Search Method must be used.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"1-how-to-download-weka-and-install\">1. How to download Weka and Install<\/h2>\n\n\n\n<p>We can download the weka tool by clicking the <a href=\"https:\/\/waikato.github.io\/weka-wiki\/downloading_weka\/\">Weka Download page<\/a> and find a version of weka depends on your computer OS. (Windows, Mac, or Linux). Weka needs java. If we already install java don't care about but if not use this link to install&nbsp; <a href=\"https:\/\/java.com\/\">Java<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-lets-start-weka\">2. Let's Start Weka<\/h2>\n\n\n\n<p>If you installed a successful weka tool you get an image looks like on your desktop or by double clicking on the weka.jar file. This is a GUI window that means we don't know about any idea just click and use , yes like that this window displays four types of options , Explorer, Experimenter, KnowledgeExplorer and Simple CLI Command line interface.<\/p>\n\n\n\n<p>Weka GUI Chooser<\/p>\n\n\n\n<p>Click the \u201cExplorer\u201d button to launch the Weka Explorer.<\/p>\n\n\n\n<p>This GUI lets you load datasets and run classification algorithms. It also provides other features, like data filtering, clustering, association rule extraction, and visualization, but we won\u2019t be using these features right now.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-how-to-open-the-data-iris-arff-dataset\">3. How to Open the data\/iris.arff Dataset<\/h2>\n\n\n\n<p>First you go to the \u201cOpen file\u201d button to open the data set and double click on the data directory. Weka tools provide some common machine learning datasets. Otherwise we can create our own dataset and load it to future use. Now we are going to upload the Iris dataset.&nbsp; In machine learning before we move on a particular dataset we must know about that data clearly then only we can find better patterns . Here is an iris flower image.<\/p>\n\n\n\n<p>Weka Explorer Interface with the Iris dataset loaded<\/p>\n\n\n\n<p>The Iris Flower dataset is a famous dataset from statistics and is heavily borrowed by researchers in machine learning. It contains 150 instances (rows) and 4 attributes (columns) and a class attribute for the species of iris flower (one of setosa, versicolor, and virginica).&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"4-now-select-and-run-an-algorithm\">4.Now Select and Run an Algorithm<\/h2>\n\n\n\n<p>Here one point is noted , this data set is a previously cleaned data set so we don't need to do any data preprocessing, but in case our own dataset means we must concentrate on the EDA (Exploratory Data Analysis ) and Data preprocessing part.&nbsp;<\/p>\n\n\n\n<p>Now we loaded a dataset, then we can choose a machine learning algorithm to model the problem and make predictions<\/p>\n\n\n\n<p>Click the \u201cClassify\u201d tab. This is the area for running algorithms against a loaded dataset in Weka.<\/p>\n\n\n\n<p>You will note that the \u201cZeroR\u201d algorithm is selected by default.<\/p>\n\n\n\n<p>Click the \u201cStart\u201d button to run this algorithm.<\/p>\n\n\n\n<p>Weka Results for the ZeroR algorithm on the Iris flower dataset, here ZeroR algorithm means this classification method which relies on the target and ignores all predictors. ZeroR classifier simply predicts the majority category (class). Like that it selects the majority class in the dataset and uses that to make all predictions. This acts as a baseline or the dataset and the measure by which all algorithms can be compared.The result is 33%, as expected (3 classes, each equally represented, assigning one of the three to each prediction results in 33% classification accuracy). Then we&nbsp; calculate our performance by using Cross validations by default with 10 folds. Here our data set is split into 10 sections, the first 9 parts are used to train the algorithm and the 10th part is used to assess the algorithm. These steps are repeated&nbsp; allowing each of the 10 parts of the split dataset a chance to be the held-out test set.<\/p>\n\n\n\n<p>Not only ZeroR algorithm , we can choose any algorithm by click the \u201cchoose\u201d\u201d button in the \u201cClassifier\u201d section and click on \u201ctrees\u201d and click on the \u201cJ48\u201d algorithm`This is an implementation of the C4.8 algorithm in Java (\u201cJ\u201d for Java, 48 for C4.8, hence the J48 name) and is a minor extension to the famous C4.5 algorithm.<\/p>\n\n\n\n<p>Click the \u201cStart\u201d button to run the algorithm.<\/p>\n\n\n\n<p>Weka J48 algorithm results on the Iris flower dataset<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"5-compare-the-results\">5. Compare the Results<\/h2>\n\n\n\n<p>Here running the J48 algorithm, we can note the results in the \u201cClassifier output\u201d section.<\/p>\n\n\n\n<p>The algorithm was run with 10-fold cross-validation: this means it was given an opportunity to make a prediction for each instance of the dataset (with different training folds) and the presented result is a summary of those predictions.<\/p>\n\n\n\n<p>Just the results of the J48 algorithm on the Iris flower dataset in Weka<\/p>\n\n\n\n<p>Firstly, note the <a href=\"https:\/\/en.wikipedia.org\/wiki\/Accuracy_and_precision\">Classification Accuracy<\/a>. You can see that the model achieved a result of 144\/150 correct or 96%, which seems a lot better than the baseline of 33%.<\/p>\n\n\n\n<p>Secondly, look at the Confusion Matrix. You can see a table of actual classes compared to predicted classes and you can see that there was 1 error where an Iris-setosa was classified as an Iris-versicolor, 2 cases where Iris-virginica was classified as an Iris-versicolor, and 3 cases where an Iris-versicolor was classified as an Iris-setosa (a total of 6 errors). This table can help to explain the accuracy achieved by the algorithm.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"summary\">Summary<\/h2>\n\n\n\n<p>I hope this post helps you to understand what data is and how to collect and how to load it and how to run, how to review the result, how to calculate error rate with an example of Paddy.&nbsp; This is the basic idea for every data mining tool. So, learn continuously.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Before we move onto the Weka tool, we need some ideas about data. In previous days peoples maintained their business details manually, handwritten data records were very important those days. That record helped them to analyse the data to make future decisions. But it needs lots of paperwork, it is time-consuming. Nowadays that data is [&hellip;]<\/p>\n","protected":false},"author":41,"featured_media":33824,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_uag_custom_page_level_css":"","site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"set","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[9],"tags":[],"content_type":[],"class_list":["post-33823","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-data-science"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.3 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>DATA MINING TOOL: WEKA<\/title>\n<meta name=\"description\" content=\"Data handling is important. Without data, we can\u2019t do anything. In this blog, we are going to see one important data mining tool i.e WEKA.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.mygreatlearning.com\/blog\/data-mining-tool-weka\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"DATA MINING TOOL: WEKA\" \/>\n<meta property=\"og:description\" content=\"Data handling is important. Without data, we can\u2019t do anything. In this blog, we are going to see one important data mining tool i.e WEKA.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.mygreatlearning.com\/blog\/data-mining-tool-weka\/\" \/>\n<meta property=\"og:site_name\" content=\"Great Learning Blog: Free Resources what Matters to shape your Career!\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/GreatLearningOfficial\/\" \/>\n<meta property=\"article:published_time\" content=\"2021-05-12T03:33:49+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-10-24T12:24:23+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2021\/05\/Weka.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1254\" \/>\n\t<meta property=\"og:image:height\" content=\"836\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Great Learning Editorial Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/Great_Learning\" \/>\n<meta name=\"twitter:site\" content=\"@Great_Learning\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Great Learning Editorial Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/data-mining-tool-weka\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/data-mining-tool-weka\\\/\"},\"author\":{\"name\":\"Great Learning Editorial Team\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#\\\/schema\\\/person\\\/6f993d1be4c584a335951e836f2656ad\"},\"headline\":\"DATA MINING TOOL: WEKA\",\"datePublished\":\"2021-05-12T03:33:49+00:00\",\"dateModified\":\"2024-10-24T12:24:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/data-mining-tool-weka\\\/\"},\"wordCount\":2047,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/data-mining-tool-weka\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/05\\\/Weka.jpg\",\"articleSection\":[\"Data Science and Analytics\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/data-mining-tool-weka\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/data-mining-tool-weka\\\/\",\"url\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/data-mining-tool-weka\\\/\",\"name\":\"DATA MINING TOOL: WEKA\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/data-mining-tool-weka\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/data-mining-tool-weka\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/05\\\/Weka.jpg\",\"datePublished\":\"2021-05-12T03:33:49+00:00\",\"dateModified\":\"2024-10-24T12:24:23+00:00\",\"description\":\"Data handling is important. Without data, we can\u2019t do anything. In this blog, we are going to see one important data mining tool i.e WEKA.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/data-mining-tool-weka\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/data-mining-tool-weka\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/data-mining-tool-weka\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/05\\\/Weka.jpg\",\"contentUrl\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/05\\\/Weka.jpg\",\"width\":1254,\"height\":836,\"caption\":\"One man, sitting in his office, using computer for mining bitcoin.\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/data-mining-tool-weka\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Data Science and Analytics\",\"item\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/data-science\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"DATA MINING TOOL: WEKA\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/\",\"name\":\"Great Learning Blog\",\"description\":\"Learn, Upskill &amp; Career Development Guide and Resources\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#organization\"},\"alternateName\":\"Great Learning\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#organization\",\"name\":\"Great Learning\",\"url\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/GL-Logo.jpg\",\"contentUrl\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/GL-Logo.jpg\",\"width\":900,\"height\":900,\"caption\":\"Great Learning\"},\"image\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/GreatLearningOfficial\\\/\",\"https:\\\/\\\/x.com\\\/Great_Learning\",\"https:\\\/\\\/www.instagram.com\\\/greatlearningofficial\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/school\\\/great-learning\\\/\",\"https:\\\/\\\/in.pinterest.com\\\/greatlearning12\\\/\",\"https:\\\/\\\/www.youtube.com\\\/user\\\/beaconelearning\\\/\"],\"description\":\"Great Learning is a leading global ed-tech company for professional training and higher education. It offers comprehensive, industry-relevant, hands-on learning programs across various business, technology, and interdisciplinary domains driving the digital economy. These programs are developed and offered in collaboration with the world's foremost academic institutions.\",\"email\":\"info@mygreatlearning.com\",\"legalName\":\"Great Learning Education Services Pvt. Ltd\",\"foundingDate\":\"2013-11-29\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"1001\",\"maxValue\":\"5000\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#\\\/schema\\\/person\\\/6f993d1be4c584a335951e836f2656ad\",\"name\":\"Great Learning Editorial Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/unnamed.webp\",\"url\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/unnamed.webp\",\"contentUrl\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/unnamed.webp\",\"caption\":\"Great Learning Editorial Team\"},\"description\":\"The Great Learning Editorial Staff includes a dynamic team of subject matter experts, instructors, and education professionals who combine their deep industry knowledge with innovative teaching methods. Their mission is to provide learners with the skills and insights needed to excel in their careers, whether through upskilling, reskilling, or transitioning into new fields.\",\"sameAs\":[\"https:\\\/\\\/www.mygreatlearning.com\\\/\",\"https:\\\/\\\/in.linkedin.com\\\/school\\\/great-learning\\\/\",\"https:\\\/\\\/x.com\\\/https:\\\/\\\/twitter.com\\\/Great_Learning\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCObs0kLIrDjX2LLSybqNaEA\"],\"award\":[\"Best EdTech Company of the Year 2024\",\"Education Economictimes Outstanding Education\\\/Edtech Solution Provider of the Year 2024\",\"Leading E-learning Platform 2024\"],\"url\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/author\\\/greatlearning\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"DATA MINING TOOL: WEKA","description":"Data handling is important. Without data, we can\u2019t do anything. In this blog, we are going to see one important data mining tool i.e WEKA.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.mygreatlearning.com\/blog\/data-mining-tool-weka\/","og_locale":"en_US","og_type":"article","og_title":"DATA MINING TOOL: WEKA","og_description":"Data handling is important. Without data, we can\u2019t do anything. In this blog, we are going to see one important data mining tool i.e WEKA.","og_url":"https:\/\/www.mygreatlearning.com\/blog\/data-mining-tool-weka\/","og_site_name":"Great Learning Blog: Free Resources what Matters to shape your Career!","article_publisher":"https:\/\/www.facebook.com\/GreatLearningOfficial\/","article_published_time":"2021-05-12T03:33:49+00:00","article_modified_time":"2024-10-24T12:24:23+00:00","og_image":[{"width":1254,"height":836,"url":"http:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2021\/05\/Weka.jpg","type":"image\/jpeg"}],"author":"Great Learning Editorial Team","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/Great_Learning","twitter_site":"@Great_Learning","twitter_misc":{"Written by":"Great Learning Editorial Team","Est. reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.mygreatlearning.com\/blog\/data-mining-tool-weka\/#article","isPartOf":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/data-mining-tool-weka\/"},"author":{"name":"Great Learning Editorial Team","@id":"https:\/\/www.mygreatlearning.com\/blog\/#\/schema\/person\/6f993d1be4c584a335951e836f2656ad"},"headline":"DATA MINING TOOL: WEKA","datePublished":"2021-05-12T03:33:49+00:00","dateModified":"2024-10-24T12:24:23+00:00","mainEntityOfPage":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/data-mining-tool-weka\/"},"wordCount":2047,"commentCount":0,"publisher":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/data-mining-tool-weka\/#primaryimage"},"thumbnailUrl":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2021\/05\/Weka.jpg","articleSection":["Data Science and Analytics"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.mygreatlearning.com\/blog\/data-mining-tool-weka\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.mygreatlearning.com\/blog\/data-mining-tool-weka\/","url":"https:\/\/www.mygreatlearning.com\/blog\/data-mining-tool-weka\/","name":"DATA MINING TOOL: WEKA","isPartOf":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/data-mining-tool-weka\/#primaryimage"},"image":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/data-mining-tool-weka\/#primaryimage"},"thumbnailUrl":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2021\/05\/Weka.jpg","datePublished":"2021-05-12T03:33:49+00:00","dateModified":"2024-10-24T12:24:23+00:00","description":"Data handling is important. Without data, we can\u2019t do anything. In this blog, we are going to see one important data mining tool i.e WEKA.","breadcrumb":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/data-mining-tool-weka\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.mygreatlearning.com\/blog\/data-mining-tool-weka\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.mygreatlearning.com\/blog\/data-mining-tool-weka\/#primaryimage","url":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2021\/05\/Weka.jpg","contentUrl":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2021\/05\/Weka.jpg","width":1254,"height":836,"caption":"One man, sitting in his office, using computer for mining bitcoin."},{"@type":"BreadcrumbList","@id":"https:\/\/www.mygreatlearning.com\/blog\/data-mining-tool-weka\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/www.mygreatlearning.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Data Science and Analytics","item":"https:\/\/www.mygreatlearning.com\/blog\/data-science\/"},{"@type":"ListItem","position":3,"name":"DATA MINING TOOL: WEKA"}]},{"@type":"WebSite","@id":"https:\/\/www.mygreatlearning.com\/blog\/#website","url":"https:\/\/www.mygreatlearning.com\/blog\/","name":"Great Learning Blog","description":"Learn, Upskill &amp; Career Development Guide and Resources","publisher":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/#organization"},"alternateName":"Great Learning","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.mygreatlearning.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.mygreatlearning.com\/blog\/#organization","name":"Great Learning","url":"https:\/\/www.mygreatlearning.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.mygreatlearning.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2022\/06\/GL-Logo.jpg","contentUrl":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2022\/06\/GL-Logo.jpg","width":900,"height":900,"caption":"Great Learning"},"image":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/GreatLearningOfficial\/","https:\/\/x.com\/Great_Learning","https:\/\/www.instagram.com\/greatlearningofficial\/","https:\/\/www.linkedin.com\/school\/great-learning\/","https:\/\/in.pinterest.com\/greatlearning12\/","https:\/\/www.youtube.com\/user\/beaconelearning\/"],"description":"Great Learning is a leading global ed-tech company for professional training and higher education. It offers comprehensive, industry-relevant, hands-on learning programs across various business, technology, and interdisciplinary domains driving the digital economy. These programs are developed and offered in collaboration with the world's foremost academic institutions.","email":"info@mygreatlearning.com","legalName":"Great Learning Education Services Pvt. Ltd","foundingDate":"2013-11-29","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"1001","maxValue":"5000"}},{"@type":"Person","@id":"https:\/\/www.mygreatlearning.com\/blog\/#\/schema\/person\/6f993d1be4c584a335951e836f2656ad","name":"Great Learning Editorial Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2022\/02\/unnamed.webp","url":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2022\/02\/unnamed.webp","contentUrl":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2022\/02\/unnamed.webp","caption":"Great Learning Editorial Team"},"description":"The Great Learning Editorial Staff includes a dynamic team of subject matter experts, instructors, and education professionals who combine their deep industry knowledge with innovative teaching methods. Their mission is to provide learners with the skills and insights needed to excel in their careers, whether through upskilling, reskilling, or transitioning into new fields.","sameAs":["https:\/\/www.mygreatlearning.com\/","https:\/\/in.linkedin.com\/school\/great-learning\/","https:\/\/x.com\/https:\/\/twitter.com\/Great_Learning","https:\/\/www.youtube.com\/channel\/UCObs0kLIrDjX2LLSybqNaEA"],"award":["Best EdTech Company of the Year 2024","Education Economictimes Outstanding Education\/Edtech Solution Provider of the Year 2024","Leading E-learning Platform 2024"],"url":"https:\/\/www.mygreatlearning.com\/blog\/author\/greatlearning\/"}]}},"uagb_featured_image_src":{"full":["https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2021\/05\/Weka.jpg",1254,836,false],"thumbnail":["https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2021\/05\/Weka-150x150.jpg",150,150,true],"medium":["https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2021\/05\/Weka-300x200.jpg",300,200,true],"medium_large":["https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2021\/05\/Weka-768x512.jpg",768,512,true],"large":["https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2021\/05\/Weka-1024x683.jpg",1024,683,true],"1536x1536":["https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2021\/05\/Weka.jpg",1254,836,false],"2048x2048":["https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2021\/05\/Weka.jpg",1254,836,false],"web-stories-poster-portrait":["https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2021\/05\/Weka-640x836.jpg",640,836,true],"web-stories-publisher-logo":["https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2021\/05\/Weka-96x96.jpg",96,96,true],"web-stories-thumbnail":["https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2021\/05\/Weka-150x100.jpg",150,100,true]},"uagb_author_info":{"display_name":"Great Learning Editorial Team","author_link":"https:\/\/www.mygreatlearning.com\/blog\/author\/greatlearning\/"},"uagb_comment_info":0,"uagb_excerpt":"Before we move onto the Weka tool, we need some ideas about data. In previous days peoples maintained their business details manually, handwritten data records were very important those days. That record helped them to analyse the data to make future decisions. But it needs lots of paperwork, it is time-consuming. Nowadays that data is&hellip;","_links":{"self":[{"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/posts\/33823","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/users\/41"}],"replies":[{"embeddable":true,"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/comments?post=33823"}],"version-history":[{"count":6,"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/posts\/33823\/revisions"}],"predecessor-version":[{"id":105705,"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/posts\/33823\/revisions\/105705"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/media\/33824"}],"wp:attachment":[{"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/media?parent=33823"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/categories?post=33823"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/tags?post=33823"},{"taxonomy":"content_type","embeddable":true,"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/content_type?post=33823"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}