1 / 43

Information technology in business and society

Information technology in business and society. Session 25 – Review and Wrap up Sean J. taylor. Administrativia. G1: Submit group feedback forms G2: You do not need to dress up. Bring slides on a USB drive or bring a laptop.

teal
Download Presentation

Information technology in business and society

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. Information technology in business and society Session 25 – Review and Wrap up Sean J. taylor

  2. Administrativia • G1: Submit group feedback forms • G2: • You do not need to dress up. • Bring slides on a USB drive or bring a laptop. • 15 minutes total. Optionally end 2-3 minutes early to take questions. • Not everyone needs to present, but make it clear to me who did what!

  3. OUTLINE • Relational databases • SQL • Data mining • Visualizing data • Software engineering • Location-based services • Pricing • Network effects • Lock-in and Switching costs • From the first half: • Porter’s Five Forces • Innovator’s Dilemma • IT-enabled strategies

  4. The threat of entry by potential entrants (new firms) into the focal industry Barriers to Entry, or Threat of new Entrants The extent of rivalry between the existing firms in the focal industry Bargaining Power of Suppliers Bargaining Power of Buyers The bargaining power of the firms that sell inputs to the firms in the focal industry The bargaining power of the customers that buy the finished products of the firms in the focal industry Threat of Substitute Products or Services The threat of products/services that could substitute (be used instead of) the finished products made by the firms in the focal industry The five competitive forces firm = company = organization = business = competitor Industry that you are analyzing (focal industry) Rivalry Among Existing Competitors

  5. Sustaining vs. DisruptiveInnovations

  6. Four Key Internet-enabled Strategies 4 Key Internet-enabled Strategies for Competitive Advantage: • Disintermediation • Mass Customization • Personalization • Global Reach

  7. Relational Databases:Objectives • Know the names for all the key terms. • Argue why using a RDBMS is important. • Identify anomalies that could arise from storing data the wrong way. • Draw an E-R diagram for an application. • Normalize a database I give you.

  8. Relational Databases Relational Database Tables Records Fields Field values Bytes, bits Field Student Table Last Name SS# DOB Major Smith 100201122 06/11/84 IS Kim 200202222 1/1/85 FIN Davis 300201232 12/31/81 MKT Pat 999132212 3/3/88 ACC Record Field value

  9. Advantages • Consistency • We can restrict the values of certain fields (e.g. dates, integers) • We can impose other kinds of constraints (all costs must be positive, last names must be included, orders must have addresses) • Data look the same to all users at the same time. • Centralization • Many different users can edit and view the data simultaneously. Efficient sharing of information. • Efficient Querying • SQL and other query languages can be used to create complex reports quickly

  10. When should you use a database instead of Excel? Should we just create multiple workbooks in Excel? • Insertion anomalies • Deletion anomalies • Update anomalies • The real power of a database: Querying • How would you answer the following question in Excel? • Find customers that spend on average $50 per book order, that live on West Coast or on the East Coast (but not in Midwest) and whose annual income is at least $150K Problems with Excel? } Data Quality Problems

  11. Simple Hospital System ERD WARD DOCTOR has accommodates treats assigned NURSE PATIENT cares for

  12. normalizing Amazon’s data • The process of assuring that a database can be implemented effectively as a set of two-dimensional tables • Unlike Excel though, the tables are connected • Prevents insertion, deletion and update anomalies

  13. SQL:Objectives • Given a query, describe in words what result it would give you. • Given a business question and a set of tables/fields, write a query that answers that question. • Correct a query that has an error in the syntax or otherwise will not run.

  14. Complete Query Example SELECT ISBN, BookName, Price, Publisher FROM Book WHERE BookName like '*Information Systems*' AND PubDate > #1/1/2002# AND Price < 100 ORDER BY Price

  15. Table Join Example ISBN is a Foreign Key here SELECT BookName, DateFROM Book, Order Where Book.ISBN = Order.ISBN Order By Book.ISBN, Order.Date Use “table.column” format to avoid ambiguity Joining/matching criteria: very important, don’t forget!

  16. Multiple Joinswith Where and Group BY • SELECT FavoriteMovie, count(*) • FROM Profiles, FavoriteBooks, FavoriteMovies • WHERE • FavoriteMovies.ProfileId = Profiles.ProfileId • and FavoriteBooks.ProfileID = Profiles.ProfileID • and FavoriteBook = "The Great Gatsby" • GROUP BY FavoriteMovie ORDER BY count(*) desc;

  17. Data Mining:Objectives • Explain how competitive advantages can result from data-driven decision making. • What obstacles are there to implementing a data-driven strategy? • Given an application, is it appropriate to use classification? Regression? Clustering? • Why do we need to reduce dimensionality of our features? • Why do we keep hold-out data and how does cross-validation work?

  18. The Data-Driven Firm • Why do we see these changes now? • Collect: easier to collect, store information about consumers, technologies, markets • Respond: Fast internal communication means that firms are agile enough to respond to external information • Process: Firms can process large volumes of data to make intelligent decisions

  19. Data-DrivenChallenges • MeasurementWhat should be measured and how? • IncentivesHow can we design incentives around these measures without creating adverse consequences? • InfrastructureDo we have the right infrastructure (servers, software, etc) in place to measure and analyze the data we have? • SkillsDo we have the skills we need to accomplish these tasks?

  20. What is Data Mining? • Data Mining – process of discovering new (non-obvious) patterns from large data sets (databases) • artificial intelligence • machine learning • statistics • Data mining is an automatic or semi-automatic process • Types of data mining tasks: • classification – classify new data into existing structure (categories or “classes”) e.g., email as “spam” or “not spam” • regression – model the shape of the data with least error • cluster analysis – discover groups or structures in the data • anomaly detection – find unusual or outlier data records • association rule mining – discover relationships between data variables

  21. Data Mining as a Process • Cross Industry Standard Process for Data Mining (CRISP-DM) • Business Understanding • Data Understanding • Data Preparation • Modeling • Evaluation • Deployment • Practically, the data mining process involves: • Pre-processing – compile a large enough data set and get it “ready” for analysis e.g., “Data Warehousing” • Can involve integration of various databases within a business • sanitization/cleaning of data • Data mining task • Validation of results • Is the output “predictive” , i.e., how good is the process when applied to new data that was not in the training set?

  22. Holdout & Cross-validation Data consists of sets of:where x are covariates, y outcomes Data (input) data (output) models holdout Modeling Algorithm (the y of the 1st holdout data as predicted by model 1) How does compare to ? M1 How much does this depend on exactly which data we held out?

  23. Visualization:Objectives • What is Anscombe’s quartet and why does it matter? • What are the benefits of exploratory data analysis (EDA)? • Interpret a histogram, scatter plot, density plot, or box-plot. Tell me what you see and why it’s important. • Given a data set and a general question, which visualization technique would you use and why?

  24. Anscombe’s Quartet • Your brain can efficiently process properly visualized data.

  25. EDA:Exploratory Data Analysis • An approach to analyzing data sets to summarize their main characteristics in easy-to-understand form. • Often with visual graphs, without using a statistical model or having formulated a hypothesis. • Helps to formulate hypotheses that could be tested on new data-sets.

  26. Software Engineering:Objectives • Why is software engineering difficult? • Discuss the essential difficulties of software engineering. • Explain each stage of the waterfall model. • How does the agile methodology change the way software is built compared to the waterfall model?

  27. Essential Difficulties • Complexity • Hard to manage large teams • Hard to understand system, side-effects • Conformity • Software is expected to meet all users’ needs • Changeability • Pressure/ability to change • Invisibility • No way to see it all at once, visually

  28. Build or Buy? Why Buy? Why Build? Customized, all requirements met • Time to use • External support • No risk of project failure • Upgrades • Network effects

  29. Waterfall Model

  30. “Agile” methodology

  31. Location-based Services:Objectives • Identify the components and participants in LBS applications • Describe the interaction of the components • Types of context awareness • Adaption in LBS apps • Push vs. Pull • Latency vs. Bandwidth

  32. LBS: An intersection of Technologies Web GIS Mobile GIS LBS Mobile Internet

  33. Contextual Adaption • Information level: the content of the information presented is adapted. (e.g. filtering based on proximity) • User interface level: the interface is adapted to suit small screens, on-the-go users. • Presentation level: the visualization of the info is adapted.

  34. Pricing:Objectives • Unique properties of digital goods. • Cost leadership vs. product differentiation. • Consumer surplus, producer surplus, dead-weight loss. • Personalized pricing (1st degree PD). • Group pricing (3rddegree PD). • Versioning (2nd degree PD), versioning dimensions. • Bundling. • For a given set of consumers, I expect you to be able to tell me what revenue a firm will earn given different pricing regimes.

  35. The idealized economic scenario (ideal for the seller) • Find out what each customer is willing to pay, and charge them as close as possible to this • Can work in conjunction with increasing product fit • Made more easily feasible by a web-based sales channel p p PRICE REVENUE q q DEMAND Personalized pricing REVENUE vs.

  36. Same product, different prices for different groups • Identify groups willing to pay less, offer them lower prices • Need to be able to identify group membership easily • What types of groups are systematically willing to pay less? p p SEGMENT 2 SEGMENT 1 PRICE 1 PRICE REVENUE PRICE 2 REVENUE q q DEMAND DEMAND Group Pricing vs.

  37. Different versions, different prices • Segmentation based on self-selection based on willingness to pay for different versions p Low-end version High-end version Single version PRICE 1 PRICE REVENUE PRICE 2 q DEMAND Versioning p vs. REVENUE q DEMAND

  38. Optimal prices • $40 for product 1 • $40 for product 2 • $100 for the bundle of product 1 and product 2 Bundling: A Simple Example Product 2 Spreadsheet Product 1 Word Processor Alice $60 $40 Bob $40 $60

  39. Network Effects: Learning objectives • Understand the idea of positive feedback and describe the role it has played in some prior technology industries (railroad, electricity, telephony) • Define network effects (demand-side economies of scale) and understand how they lead to positive feedback • Describe the difference between supply-side and demand-side economies of scale • Understand the typical sources of network effects in information technology industries • Be able to recognize these sources for specific technology products or in specific business contexts • Understand the trade-offs between performance and compatibility, and between openness and proprietary control of a technology

  40. Historical examples What is positive feedback? When does this happen? Possible consequences of positive feedback • Railroad gauges, AC versus DC power, telephone networks • when a firm becomes successful, its past and current success make it more likely to succeed in the future • ‘…success feeds on itself, the strong get stronger…’ • More customers  lower unit cost (supply-side economies of scale) • More customers  larger ‘network’  more valuable product (demand-side economies of scale caused by network effects) • Dominance of a single firm or technology • Dominance of an inferior technology that got an early lead • Critical Mass: below the critical mass, few are willing to buy (inertia); beyond the critical mass, the market takes off. • Introducing a new product is difficult because of collective switching costs Positive feedback: Overview

  41. Supply-side economies of scale (Traditional markets) Demand-side economies of scale (Digital markets) • More customers more units produced lower average cost per unit • Marginal cost less than average cost • Spreading fixed costs across more units • Manufacturing efficiencies, learning by doing • More units consumed higher value per unit • The value of the good comes from the network of consumers who use it (at least in part) • Most commonly caused by network effects (Microsoft, Playstation, Facebook) • Positive relationship between popularity and valueConsumer expectations are key! Sources of Positive Feedback

  42. Switching Costs:Learning objectives • Explain switching costs, technological lock-in and how switching costs lead to technological lock-in. • Understand how switching costs affect industry competition. • Understand the sources of lock-in and switching costs: • durable purchases • brand-specific training • information and databases • contracts • Be able to identify and analyze sources of lock-in for specific products or in specific business contexts. • Explain strategies for firms to create lock-in and for consumers to mitigate the consequences of lock-in. • specialized suppliers • search costs • loyalty programs

  43. Next Class:Group Presentations • Group 7 • Group 1 • Group 5 • Group 2

More Related