1 / 16

Data Mining and the Weka Toolkit

Data Mining and the Weka Toolkit. University of California, Berkeley School of Information IS 257: Database Management. Review OLAP (ROLAP, MOLAP) Data Mining with the WEKA toolkit. Lecture Outline. Related Fields. Machine Learning. Visualization. Data Mining and Knowledge Discovery.

naasir
Download Presentation

Data Mining and the Weka Toolkit

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Data Mining and the Weka Toolkit University of California, Berkeley School of Information IS 257: Database Management

  2. Review OLAP (ROLAP, MOLAP) Data Mining with the WEKA toolkit Lecture Outline

  3. Related Fields Machine Learning Visualization Data Mining and Knowledge Discovery Statistics Databases Source: Gregory Piatetsky-Shapiro

  4. The Hype Curve for Data Mining and Knowledge Discovery Over-inflated expectations Growing acceptance and mainstreaming rising expectations Disappointment Source: Gregory Piatetsky-Shapiro

  5. OLAP • Online Line Analytical Processing • Intended to provide multidimensional views of the data • I.e., the “Data Cube” • The PivotTables in MS Excel are examples of OLAP tools

  6. Data Cube

  7. Visualization – Star Schema Dimension Table (Bars) Dimension Table (Drinkers) Dimension Attrs. Dependent Attrs. Fact Table - Sales Dimension Table (Beers) Dimension Table (etc.) From anonymous “olap.ppt” found on Google

  8. Typical OLAP Queries • Often, OLAP queries begin with a “star join”: the natural join of the fact table with all or most of the dimension tables. • Example: SELECT * FROM Sales, Bars, Beers, Drinkers WHERE Sales.bar = Bars.bar AND Sales.beer = Beers.beer AND Sales.drinker = Drinkers.drinker; From anonymous “olap.ppt” found on Google

  9. Example: In SQL SELECT bar, beer, SUM(price) FROM Sales NATURAL JOIN Bars NATURAL JOIN Beers WHERE addr = ’Palo Alto’ AND manf = ’Anheuser-Busch’ GROUP BY bar, beer; From anonymous “olap.ppt” found on Google

  10. Example: Materialized View • Which views could help with our query? • Key issues: • It must join Sales, Bars, and Beers, at least. • It must group by at least bar and beer. • It must not select out Palo-Alto bars or Anheuser-Busch beers. • It must not project out addr or manf. From anonymous “olap.ppt” found on Google

  11. Example --- Continued Since bar -> addr and beer -> manf, there is no real grouping. We need addr and manf in the SELECT. • Here is a materialized view that could help: CREATE VIEW BABMS(bar, addr, beer, manf, sales) AS SELECT bar, addr, beer, manf, SUM(price) sales FROM Sales NATURAL JOIN Bars NATURAL JOIN Beers GROUP BY bar, addr, beer, manf; From anonymous “olap.ppt” found on Google

  12. Example --- Concluded • Here’s our query using the materialized view BABMS: SELECT bar, beer, sales FROM BABMS WHERE addr = ’Palo Alto’ AND manf = ’Anheuser-Busch’; From anonymous “olap.ppt” found on Google

  13. Example: Market Baskets • If people often buy hamburger and ketchup together, the store can: • Put hamburger and ketchup near each other and put potato chips between. • Run a sale on hamburger and raise the price of ketchup. From anonymous “olap.ppt” found on Google

  14. Finding Frequent Pairs • The simplest case is when we only want to find “frequent pairs” of items. • Assume data is in a relation Baskets(basket, item). • The support threshold s is the minimum number of baskets in which a pair appears before we are interested. From anonymous “olap.ppt” found on Google

  15. Frequent Pairs in SQL Look for two Basket tuples with the same basket and different items. First item must precede second, so we don’t count the same pair twice. Create a group for each pair of items that appears in at least one basket. Throw away pairs of items that do not appear at least s times. SELECT b1.item, b2.item FROM Baskets b1, Baskets b2 WHERE b1.basket = b2.basket AND b1.item < b2.item GROUP BY b1.item, b2.item HAVING COUNT(*) >= s; From anonymous “olap.ppt” found on Google

  16. More on Data Mining using Weka • Slides from Eibe Frank, Waikato Univ. NZ

More Related