introduction to computing principles
play

Introduction to Computing Principles - PowerPoint PPT Presentation

Introduction to Computing Principles Data Table Code Data Data is a set of values of qualitative or quantitative variables. -- Wikipedia Structured data refers to any


  1. 计算原理导论 Introduction to Computing Principles 天津大学 计算机科学与技术学院 刘志磊

  2. Data Table Code Data Data is a set of values of qualitative or quantitative variables. -- Wikipedia Structured data refers to any data that resides in a fixed field within a record or file. This includes data contained in relational databases and spreadsheets. Introduction to Computing Principles Structured Data

  3. Data Table Code Table A table is a means of arranging data in rows and columns. The use of tables is pervasive throughout all communication, research, and data analysis. A table consists of an ordered arrangement of rows and columns. -- Wikipedia Introduction to Computing Principles Structured Data

  4. Data Table Code Table Example - Social Security Baby Name On the Social Security Baby Name site: • Names for babies born each year in the USA • Top 1000 boy and girl names, 2000 names total Introduction to Computing Principles Structured Data

  5. Data Table Field Table Example - Social Security Baby Name • Table terminology ( 术语 ): - table the whole rectangle of data - row data for one name - field individual items (columns) in a row • Each field has a name: name, rank, gender, year Introduction to Computing Principles Structured Data

  6. Data Table Field Tables Are Extremely Common • Rectangular table format is very common • Database: extension of this basic table idea • Number of fields is small (categories) • Number of rows can be millions or billions Examples • email inbox - one row is one message - fields: date, subject, from, ... • craigslist - one row is one thing for sale - fields: description, price, seller, date, ... Introduction to Computing Principles Structured Data

  7. Code For-loop If-statement Code and Practice - SimpleTable • Baby data stored in "baby-2010.csv" - ".csv" stands for "comma separated values“ - csv is a simple and widely used standard format to store a table as text in a file. • For images: for(pixel: image) { code } • For tables: for (row: table) { code } • For print: print(row) - prints out the fields of a row on one line Introduction to Computing Principles Structured Data

  8. Code For-loop If-statement For-loop table = new SimpleTable("baby-2010.csv"); for (row: table) { print(row); } Example Introduction to Computing Principles Structured Data

  9. Code For-loop If-statement If-statement • For select: if-statement - if ( condition ) { code } • Terminology: “query” ( 查询 ) - for: runs for every row (2000 rows) - if: picks out some Introduction to Computing Principles Structured Data

  10. Code For-loop If-statement If-statement table = new SimpleTable("baby-2010.csv"); for (row: table) { if (row.getField("rank") == 6) { print(row); } } Example Introduction to Computing Principles Structured Data

  11. startsWith & Boolean Query Logic endsWith Logic Query Logic • Field names for the baby table: name, rank, gender, year • Pick field out of row: getField - row.getField(“field - name”) • two equal signs and single equal sign - = : variable assignment - == : variable comparison - use == inside if-test • Other comparisons < > <= >= Introduction to Computing Principles Structured Data

  12. startsWith & Boolean Query Logic endsWith Logic Query Logic table = new SimpleTable("baby-2010.csv"); for (row: table) { if (row.getField("name") == "Alice") { print(row); } } Introduction to Computing Principles Structured Data

  13. startsWith & Boolean Query Logic endsWith Logic Query Logic • Baby table fields: name, rank, gender, year • name field is "Robert", "Bob", "Abby", "Abigail" (try each in turn) • rank field is 1 • rank field is < 10 • rank field is <= 10 • rank field is > 990 • gender field is "girl" • rank field is less than 15 • gender field is "boy" Introduction to Computing Principles Structured Data

  14. startsWith & Boolean Query Logic endsWith Logic Query Logic table = new SimpleTable("baby-2010.csv"); if (row.getField("rank") == 1){ for (row: table) { print(row); if (row.getField("name") == "Alice") { } print(row); if (row.getField("rank") < 10){ } print(row); } // Change string to "Robert", "Bob", etc. } if (row.getField("rank") <= 10){ print(row); if (row.getField("gender") == "girl"){ } print(row); if (row.getField("rank") > 990){ } print(row); if ( row.getField("gender") == “boy" ){ } print(row); if (row.getField("rank") < 15){ } print(row); } Introduction to Computing Principles Structured Data

  15. startsWith & Boolean Query Logic endsWith Logic startsWith & endsWith • == : very handy for baby names • Test if the name field in a row starts with "Ab": - if (row.getField("name").startsWith("Ab")) { ... • Test if the name field in a row ends with "zy": - if (row.getField("name").endsWith("zy")) { ... Introduction to Computing Principles Structured Data

  16. startsWith & Boolean Query Logic endsWith Logic startsWith & endsWith table = new SimpleTable("baby-2010.csv"); for (row: table) { if (row.getField("name").startsWith("Ab")) { print(row); } } Example Introduction to Computing Principles Structured Data

  17. startsWith & Boolean Query Logic endsWith Logic startsWith & endsWith name field starts with "Ab", "A", "a"(lower case) name field starts with "Z", "Za" (each in turn) name field ends with "z", "ly", "la" (each in turn) if (row.getField("name").startsWith("Ab")) { print(row); } // Change string to "A", "a", "Z", .. each in turn if (row.getField("name").endsWith("z")) { print(row); }// Change string to “z", “ly", “la", .. each in turn Introduction to Computing Principles Structured Data

  18. startsWith & Boolean Query Logic endsWith Logic Boolean Logic ( 布尔逻辑 ) In mathematics and mathematical logic, boolean logic is the branch of algebra ( 代数 ) in which the values of the variables are the truth values true and false, usually denoted 1 and 0 respectively. Instead of elementary algebra where the values of the variables are numbers, and the main operations are addition and multiplication, the main operations of Boolean algebra are the conjunction and denoted as ∧ , the disjunction or denoted as ∨ , and the negation not denoted as ¬. It is thus a formalism for describing logical relations in the same way that ordinary algebra describes numeric relations. Introduction to Computing Principles Structured Data

  19. startsWith & Boolean Query Logic endsWith Logic Boolean Logic • Boolean Logic: && || ! • In English, combine tests like this: - Name starts with "A" and ends with "y" • In code, combine tests use "boolean logic“: - and is && (two ampersands) - or is || (two vertical bars) - not is ! (exclamation mark) Introduction to Computing Principles Structured Data

  20. startsWith & Boolean Query Logic endsWith Logic Boolean Logic table = new SimpleTable("baby-2010.csv"); for (row: table) { if (row.getField("name").startsWith("A") && row.getField("name").endsWith("y")) { print(row); } } Introduction to Computing Principles Structured Data

  21. startsWith & Boolean Query Logic endsWith Logic Boolean Logic - && || • The && joins a startsWith test and an endsWith test • The whole test is written across two lines because it is kind of long (optional) • Standalone rule: - the tests are syntactically complete tests on their own, then joined with && or || - row.getField("name).startsWith("A") && endsWith("y") Incorrect, not Standalone • Common error - too few right parenthesis around the test - Run tries to detect certain common errors - omitting the {, or typing & instead of && will give an error message Introduction to Computing Principles Structured Data

  22. startsWith & Boolean Query Logic endsWith Logic Boolean Logic - && || table = new SimpleTable("baby-2010.csv"); for (row: table) { if (row.getField("name").startsWith("A") && row.getField("rank") <= 50) { print(row); } } Introduction to Computing Principles Structured Data

  23. startsWith & Boolean Query Logic endsWith Logic Boolean Logic - && || table = new SimpleTable("baby-2010.csv"); for (row: table) { // your code here if (row.getField("name").startsWith("X") || row.getField("name").startsWith("Y") || row.getField("name").startsWith("Z")) { print(row); } } Introduction to Computing Principles Structured Data

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend