Administrative notes. Computational Thinking ct.cs.ubc.ca

Size: px
Start display at page:

Download "Administrative notes. Computational Thinking ct.cs.ubc.ca"

Transcription

1 Administrative notes March 14: Midterm 2: this will cover all lectures, labs and readings between Tue Jan 31 and Thu Mar 9 inclusive Practice Midterm 2 is on Exercises webpage: exercises.html#exams March 17: In the News call #3 March 30: Project deliverables and individual report due

2 Administrative notes Check Project Rubric on the Connect grade centre to learn which rubric we will be using to grade your project. Find your rubric at ct-grading.html#projectmarkingscheme. If you have questions, please your project TA (also listed on Connect). We will you which projects you should review. Please ensure that forwarding for your CS works (you should have set this up in Lab 0).

3 Data Mining 4 Mining by Association: Apriori algorithm wrap-up

4 Recall: How to predict the future? Association rules An association rule X à Y suggests that people who buy items in set X are also likely to want items in Y Valid association rules are mined from training data, e.g. store purchases Association rules are useful to stores, and also in areas such as medical diagnoses, protein sequence composition, health insurance claim analysis and census data

5 When is an association rule valid? We are given two thresholds: Support threshold Confidence threshold A rule X à Y is valid with respect to these thresholds if The support of X Y is at least the support threshold The confidence of X à Y is at least the confidence threshold

6 Support: The degree to which items appear together The support of a set of items is the fraction of transactions that contain all items in the set. T1 T2 T3 T4 T5 T6 T7 Sushi, Chicken, Milk Sushi, Bread Bread, Vegetables Sushi, Chicken, Bread Sushi, Chicken, Ramen, Bread, Milk Chicken, Ramen, Milk Chicken, Milk, Ramen Here, the set {Chicken, Ramen, Milk} has support 3/7

7 Confidence: Cause à Effect The confidence of rule XàY is the fraction of transactions containing all items in X that also contain all items in Y The following rules both have confidence 3/3 = 1: Ramen à {Milk, Chicken} {Ramen, Chicken} à Milk T1 T2 T3 T4 T5 T6 T7 Sushi, Chicken, Milk Sushi, Bread Bread, Vegetables Sushi, Chicken, Bread Sushi, Chicken, Ramen, Bread, Milk Chicken, Ramen, Milk Chicken, Milk, Ramen

8 Exercise: Which rules X à Y are valid? Thresholds: support is 3/7, confidence is 1 Is the support of X Y at least 3/7? (support: fraction of transactions that contain X Y ) Is the confidence of X --> Y at least 1? (confidence: fraction of transactions containing X that also contain Y) A. Chicken à Milk B. Ramen à Milk C. Both T1 Sushi, Chicken, Milk T2 Sushi, Bread T3 Bread, Vegetables T4 Sushi, Chicken, Bread T5 Sushi, Chicken, Ramen, Bread, Milk T6 Chicken, Ramen, Milk T7 Chicken, Milk, Ramen

9 The association rule data mining problem Input: A table of transactions, a support threshold and a confidence threshold Output: all of the valid association rules

10 The Apriori algorithm for finding valid association rules The Apriori algorithm has two main tasks: Find all frequent itemsets, i.e., those with support at least the given support threshold Find all rules X à Y with confidence at least the given confidence threshold Calculating association rules on terabytes of data can be sloooowww. The slowest part is finding the frequent itemsets. Let s get back to these.

11 A frequent itemset: a set whose support is at least some specified threshold Example: Let the support threshold be 3/7 T1 T2 T3 T4 T5 T6 T7 Sushi, Chicken, Milk Sushi, Bread Bread, Vegetables Sushi, Chicken, Bread Sushi, Chicken, Ramen, Bread, Milk Chicken, Ramen, Milk Chicken, Milk, Ramen {Chicken, Milk, Ramen} is a frequent itemset

12 The Apriori algorithm key idea The Apriori algorithm speeds up task of finding frequent itemsets, based on the observation that each subset of a frequent itemset must also be a frequent itemset Let s see how this is done

13 A frequent itemset: a set whose support is at least some specified threshold Support threshold: 3/7 Claim: Each subset of a frequent itemset is also a frequent itemset T1 T2 T3 T4 T5 T6 T7 Sushi, Chicken, Milk Sushi, Bread Bread, Vegetables Sushi, Chicken, Bread Sushi, Chicken, Ramen, Bread, Milk Chicken, Ramen, Milk Chicken, Milk, Ramen {Chicken, Milk, Ramen} is a frequent itemset and so {Chicken, Milk}, {Chicken, Ramen}, {Milk, Ramen} must also be frequent itemsets

14 A frequent itemset: a set whose support is at least some specified threshold Support threshold: 3/7 Claim: Each subset of a frequent itemset is also a frequent itemset T1 T2 T3 T4 T5 T6 T7 Sushi, Chicken, Milk Sushi, Bread Bread, Vegetables Sushi, Chicken, Bread Sushi, Chicken, Ramen, Bread, Milk Chicken, Ramen, Milk Chicken, Milk, Ramen Conversely, {Vegetables} is not a frequent itemset. So any set containing Vegetables cannot be a frequent itemset. For example, {Sushi, Vegetables} is not frequent.

15 The Apriori algorithm Finding frequent itemsets Transaction Items T1 apple, dates, rice, corn T2 corn, dates, tuna T3 apple, corn, dates, tuna T4 corn, tuna Support threshold 50% We ll work through the algorithm to determine the frequent itemsets for this input

16 Apriori round 1: Find all frequent itemsets of size 1 List candidate itemsets of size 1 {apple} {corn} {dates} {rice} {tuna} Transaction Items T1 apple, dates, rice, corn T2 corn, dates, tuna T3 apple, corn, dates, tuna T4 corn, tuna Support threshold 50%

17 Apriori round 1: Find all frequent itemsets of size 1 Calculate the support of each candidate itemset Support: {apple} = 2/4 {corn} {dates} {rice} {tuna} What is the support for corn? a. 1/4 b. 2/4 c. 3/4 d. 4/4 Transaction Items T1 apple, dates, rice, corn T2 corn, dates, tuna T3 apple, corn, dates, tuna T4 corn, tuna Support threshold 50%

18 Apriori round 1: Find all frequent itemsets of size 1 Calculate the support of each candidate itemset Support: {apple} = 2/4 {corn} = 4/4 {dates} = 3/4 {rice} = 1/4 {tuna} = 3/4 Transaction Items T1 apple, dates, rice, corn T2 corn, dates, tuna T3 apple, corn, dates, tuna T4 corn, tuna Support threshold 50%

19 Apriori round 1: Find all frequent itemsets of size 1 Calculate the support of each candidate itemset Support: {apple} = 2/4 {corn} = 4/4 {dates} = 3/4 {rice} = 1/4 {tuna} = 3/4 Can any itemset containing rice ever be a frequent itemset, when the support threshold is 50%? A. Yes B. No Transaction T1 T2 T3 T4 Items apple, dates, rice, corn corn, dates, tuna apple, corn, dates, tuna corn, tuna Support threshold 50%

20 Apriori round 1: Find all frequent itemsets of size 1 Set F 1 to be the list of frequent itemsets of size 1: {apple} = 2/4 {corn} = 4/4 {dates} = 3/4 {rice} = 1/4 {tuna} = 3/4 Transaction Items T1 apple, dates, rice, corn T2 corn, dates, tuna T3 apple, corn, dates, tuna T4 corn, tuna Support threshold 50%

21 Apriori round 2: Find all frequent itemsets of size 2 List candidate itemsets of size 2: {apple, corn} {apple, dates} {apple, tuna} {corn, dates} {corn, tuna} {dates, tuna} Transaction Items T1 apple, dates, rice, corn T2 corn, dates, tuna T3 apple, corn, dates, tuna T4 corn, tuna Support threshold 50% Because {rice} is not frequent, any set that includes rice is not frequent, so we ignore itemsets that include rice.

22 Apriori round 2: Find all frequent itemsets of size 2 Calculate the support of each candidate itemset {apple, corn} {apple, dates} {apple, tuna} {corn, dates} {corn, tuna} {dates, tuna} Transaction Items T1 apple, dates, rice, corn T2 corn, dates, tuna T3 apple, corn, dates, tuna T4 corn, tuna Support threshold 50% Group exercise: count support for these itemsets.

23 Apriori round 2: Find all frequent itemsets of size 2 Calculate the support of each candidate itemset {apple, corn} = 2/4 {apple, dates} = 2/4 {apple, tuna} = 1/4 {corn, dates} = 3/4 {corn, tuna} = 3/4 {dates, tuna} = 2/4 Transaction Items T1 apple, dates, rice, corn T2 corn, dates, tuna T3 apple, corn, dates, tuna T4 corn, tuna Support threshold 50% Group exercise: count support for these itemsets.

24 Apriori round 2: Find all frequent itemsets of size 2 Set F 2 to be the list of frequent itemsets of size 2: {apple, corn} = 2/4 {apple, dates} = 2/4 {apple, tuna} = 1/4 {corn, dates} = 3/4 {corn, tuna} = 3/4 {dates, tuna} = 2/4 Transaction Items T1 apple, dates, rice, corn T2 corn, dates, tuna T3 apple, corn, dates, tuna T4 corn, tuna Support threshold 50% Group exercise: what are the frequent itemsets of size 2?

25 Apriori round 2: Find all frequent itemsets of size 2 Set F 2 to be the list of frequent itemsets of size 2: {apple, corn} = 2/4 {apple, dates} = 2/4 {apple, tuna} = 1/4 {corn, dates} = 3/4 {corn, tuna} = 3/4 {dates, tuna} = 2/4 Transaction Items T1 apple, dates, rice, corn T2 corn, dates, tuna T3 apple, corn, dates, tuna T4 corn, tuna Support threshold 50%

26 Apriori round 3: Find all frequent itemsets of size 3 Given frequent itemsets of size 2 Transaction Items {apple, corn} {apple, dates} {corn, dates} T1 T2 T3 corn, dates, tuna {corn, tuna} T4 corn, tuna {dates, tuna} Support threshold 50% Without counting support, what are the candidate frequent itemsets of size 3? (Key: all subsets of a candidate itemset should be frequent itemsets! For example, {apple, corn, rice} is not a candidate itemset because {apple, rice} is not a frequent itemset) apple, dates, rice, corn apple, corn, dates, tuna

27 Apriori round 3: Find all frequent itemsets of size 3 Given frequent itemsets of size 2 {apple, corn} T1 {apple, dates} T2 {corn, dates} T3 {corn, tuna} T4 corn, tuna {dates, tuna} Support threshold 50% Without counting support, what are the candidate frequent itemsets of size 3? A. {apple, corn, dates} B. {apple, corn, dates}, {apple, corn, tuna}, {corn, dates, tuna} C. {apple, corn, tuna}, {corn, dates, tuna} D. None of the above Transaction Items apple, dates, rice, corn corn, dates, tuna apple, corn, dates, tuna

28 Apriori round 3: Find all frequent itemsets of size 3 Great! We now have a list of candidate itemsets of size 3: {apple, corn, dates} {corn, dates, tuna} Transaction Items T1 apple, dates, rice, corn T2 corn, dates, tuna T3 apple, corn, dates, tuna T4 corn, tuna Support threshold 50% Group exercise: calculate the support for these candidate itemsets

29 Apriori round 3: Find all frequent itemsets of size 3 Calculate the support of each candidate itemset {apple, corn, dates} = 2/4 {corn, dates, tuna} = 2/4 Transaction Items T1 apple, dates, rice, corn T2 corn, dates, tuna T3 apple, corn, dates, tuna T4 corn, tuna Support threshold 50%

30 Apriori round 3: Find all frequent itemsets of size 3 Set F 3 to be the list of frequent itemsets of size 3: {apple, corn, dates} = 2/4 {corn, dates, tuna} = 2/4 Transaction Items T1 apple, dates, rice, corn T2 corn, dates, tuna T3 apple, corn, dates, tuna T4 corn, tuna Support threshold 50%

31 Apriori round 4: Find all frequent itemsets of size 4 Given frequent itemsets of size 3 : {apple, corn, dates} {corn, dates, tuna} Without counting support, what are the candidate frequent itemsets of size 4? A. Nothing B. {apple, corn, dates, tuna} C. {apple, corn, dates, tuna}, {apple, corn, dates, rice} Transaction T1 T2 T3 T4 Items apple, dates, rice, corn corn, dates, tuna apple, corn, dates, tuna corn, tuna Support threshold 50%

32 Apriori example: done! The whole list of frequent itemsets for this example is: {apple} {corn} {dates} {tuna} {apple, corn} {apple, dates} {corn, dates} {corn, tuna} {dates, tuna} {apple, corn, dates} {corn, dates, tuna} Transaction Items T1 apple, dates, rice, corn T2 corn, dates, tuna T3 apple, corn, dates, tuna T4 corn, tuna Support threshold 50%

33 Apriori example: done! Frequent itemsets {apple} {corn} {dates} {tuna} {apple, corn} {apple, dates} {corn, dates} {corn, tuna} {dates, tuna} {apple, corn, dates} {corn, dates, tuna} Itemsets we counted support for: {apple} {corn} {dates} {rice} {tuna} {apple, corn} {apple, dates} {apple, tuna} {corn, dates} {corn, tuna} {dates, tuna} {apple, corn, dates} {corn, dates, tuna} All possible itemsets: {apple} {corn} {dates} {rice} {tuna} {apple, corn} {apple, dates} {apple, rice} {apple, tuna} {corn, dates} {corn, rice} {corn, tuna} {dates, rice} {dates, tuna} {rice, tuna} {apple, corn, dates} {apple, corn, rice} {apple, corn, tuna} {corn, dates, rice} {corn, dates, tuna} {dates, rice, tuna} {apple, corn, dates, rice} {apple, corn, dates, tuna} {corn, dates, rice, tuna} {apple, corn, dates, rice, tuna}

34 That s how the algorithm works Let s see it written down, and see how it works on one more example

35 Apriori algorithm 1. Set k to 0 [k keeps track of what round we re on] 2. Repeat a. Add 1 to k b. Set C k to be the list of candidate itemsets of size k (those whose subsets of size k-1 are frequent) c. Calculate the support of itemsets in C k d. Set F k to be the list of frequent itemsets in C k (those with support greater than the threshold) Until F k is empty 3. Output the union of all F k

36 Apriori algorithm Repeat loop round 1 (k=1 at step a) Transaction T1 T2 T3 T4 Items apple, dates, rice, corn corn, dates, tuna apple, corn, dates, tuna corn, tuna Support threshold = 75% F 1 : {dates}, {corn}, {tuna} Step 2b C1 {apple} {dates} {rice} {corn} {tuna} Step 2c Support 2/4 3/4 1/4 4/4 3/4 Step 2d F1 {dates} {corn} {tuna}

37 Apriori algorithm Repeat loop round 2 (k=2 at step a) Transaction T1 T2 T3 T4 Items apple, dates, rice, corn corn, dates, tuna apple, corn, dates, tuna corn, tuna Support threshold = 75% F 1 : {dates}, {corn}, {tuna} F 2 : {corn, dates}, {corn, tuna} Step 2b C2 {corn, dates} {corn, tuna} {dates, tuna} Step 2c Support 3/4 3/4 2/4 Step 2d F2 {corn, dates} {corn, tuna}

38 Apriori algorithm Repeat loop round 3 (k=3 at step a) Transaction T1 T2 T3 T4 Step 2b Step 2c Step 2d Items apple, dates, rice, corn corn, dates, tuna apple, corn, dates, tuna corn, tuna C3 Support F3 Support threshold = 75% F 1 : {dates}, {corn}, {tuna} F 2 : {corn, dates}, {corn, tuna} Clicker question: What are the candidate sets in C 3? A. nothing B. {corn, dates, tuna}

39 Great! Your turn! In a group Use the Apriori algorithm to find frequent itemsets with a support threshold of 3/7. Write down what sets you have at each step! Transaction T1 T2 T3 T4 T5 T6 T7 Items cake, jam, rolls, tea cake, jam, tea cake, jam jam, rolls, tea jam, rolls rolls, tea jam, tea Support threshold = 3/7

40 Apriori Algorithm Clicker question Which of the following are in F 3? A. {cake, jam, rolls} B. {cake, jam, tea} C. {jam, rolls, tea} D. All are in F 3 Transaction Items T1 cake, jam, rolls, tea T2 cake, jam, tea T3 cake, jam T4 jam, rolls, tea T5 jam, rolls T6 rolls, tea T7 jam, tea Support threshold = 3/7 E. None are in F 3

41 Let s walk through the example Support for candidate sets of size 1: {cake} = 3/7 {jam} = 6/7 {rolls} = 4/7 {tea} = 5/7 F 1 : {cake},{jam},{rolls},{tea} Transaction Items T1 cake, jam, rolls, tea T2 cake, jam, tea T3 cake, jam T4 jam, rolls, tea T5 jam, rolls T6 rolls, tea T7 jam, tea Support threshold = 3/7

42 Let s walk through the example Support for candidate sets of size 2: {cake, jam} = 3/7 {cake, rolls} = 1/7 {cake, tea} = 2/7 {jam, rolls} = 3/7 {jam, tea} = 4/7 {rolls, tea} = 3/7 F 2 : {cake, jam}, {jam,rolls}, {jam, tea}, {rolls, tea} Support for candidate sets of size 3: {jam, rolls, tea} = 2 F 3 is nothing Transaction T1 T2 T3 T4 T5 T6 T7 Items cake, jam, rolls, tea cake, jam, tea cake, jam jam, rolls, tea jam, rolls rolls, tea jam, tea

43 The Apriori algorithm shook up the research world It has over 20,000 citations! Why? It s something people really needed It scales really well It s easy to understand Lots to extend

44 Coming full circle: back to privacy issues Massachusetts released anonymized medical records for state employees. They removed all identifiers but left birthdate (including year), gender, and zip code. Group discussion: what percentage of people in the US could likely be uniquely identified by this information? (Note: there are ~7,500 people per zip code) A. 0-19% B % C % D % E %

45 Group exercise Is it a problem that we can tell that in one database one individual (we don t know the name, but we know the age, gender, and zip code) has a set of medical conditions?

46 Well Okay, so we can uniquely determine that there exists some person with some medical visits. We still don t who they are. But there are other data sources, too. Publically available voting records include name, zip code, birthdate and gender of voters. So if you put the two together, you now have names and health records together Security researcher (and graduate student) Latanya Sweeny sent the Governor s full health records to his office.

47 Learning goals revisited [CT Building Block] Students will be able to demonstrate that they understand the Apriori algorithm by describing what the output would be for a small input. [CT Building Block] Students will be able to create English language descriptions of algorithms to analyze data and show how their algorithms would work on an input data set.

Session 1: Fibre and health

Session 1: Fibre and health Session 1: Fibre and health Learning outcomes At the end of the session the group should: know that they should eat foods that are high in fibre be able to list the foods that are high in fibre be aware

More information

Carbohydrate Counter Mobile Phone Application

Carbohydrate Counter Mobile Phone Application Carbohydrate Counter Mobile Phone Application Content Welcome Navigating the Carb Counter How the Carb Counter works Settings Food list Favourites Creating a meal Editing an existing meal Deleting a meal

More information

Wellness 360 Online Nutrition Program* Session 3: Reducing Fat and Calories

Wellness 360 Online Nutrition Program* Session 3: Reducing Fat and Calories Wellness 360 Online Nutrition Program* Session 3: Reducing Fat and Calories. powered by WELLSTAR 360 Session 3: Overview Weighing and Measuring Food Weighing and measuring food are important ways of knowing

More information

Session 1: Fibre and Health

Session 1: Fibre and Health Learning outcomes Session 1: Fibre and Health At the end of the session the group should: Know that they should eat foods that are high in fibre Be able to list the foods that are high in fibre Be aware

More information

Data Mining in Bioinformatics Day 4: Text Mining

Data Mining in Bioinformatics Day 4: Text Mining Data Mining in Bioinformatics Day 4: Text Mining Karsten Borgwardt February 25 to March 10 Bioinformatics Group MPIs Tübingen Karsten Borgwardt: Data Mining in Bioinformatics, Page 1 What is text mining?

More information

New Food Label Pages Diabetes Self-Management Program Leader s Manual

New Food Label Pages Diabetes Self-Management Program Leader s Manual New Food Label Pages The FDA has released a new food label, so we have adjusted Session 4 and provided a handout of the new label. Participants use the handout instead of looking at the label in the book

More information

Healthy Eating & Staying Healthy

Healthy Eating & Staying Healthy Healthy Eating & Staying Healthy A Healthy Diet and Our Body If our bodies are human machines food is our fuel. How well we eat, affects how well our bodies work, and how long we live. It is especially

More information

Healthier On the Go Meals & Snacks

Healthier On the Go Meals & Snacks Healthier On the Go Meals & Snacks Selecting healthier food and drink choices while working on the go can often be a challenge. Small changes, such as packing your own stash of healthy snacks can make

More information

CONTENTS Importance of sports nutrition The basics of sports nutrition Breakfast Lunch Dinner Snacks Fluids Eating before exercise

CONTENTS Importance of sports nutrition The basics of sports nutrition Breakfast Lunch Dinner Snacks Fluids Eating before exercise NUTRITION CONTENTS 1. Importance of sports nutrition 2. The basics of sports nutrition 3. Breakfast 4. Lunch 5. Dinner 6. Snacks 7. Fluids 8. Eating before exercise 9. Preparation for competition/training

More information

NUTRITION EDUCATION LESSON CODE FG MyPyramid: Simple Steps for Healthy Living

NUTRITION EDUCATION LESSON CODE FG MyPyramid: Simple Steps for Healthy Living \ NUTRITION EDUCATION LESSON CODE FG-000-06 MyPyramid: Simple Steps for Healthy Living LESSON DESCRIPTION In this video and activity lesson class participants will explore the different food groups in

More information

7 tips. To get Through the Holidays Without Gaining Weight BY SHANNON CLARK, CPT

7 tips. To get Through the Holidays Without Gaining Weight BY SHANNON CLARK, CPT 7 tips To get Through the Holidays Without Gaining Weight BY SHANNON CLARK, CPT With the Holidays Right Around the Corner... You might be feeling a twinge of anxiety over the fact that weight gain could

More information

How to Feed Your Growing Child

How to Feed Your Growing Child How to Feed Your Growing Child Ages 2 to 5 For more information on feeding your child, contact HealthlinkBC. Dial 811 and ask to speak to a Registered Dietitian or email a Dietitian by going to www.healthlinkbc.ca/healthyeating/

More information

QUESTIONS AND ANSWERS

QUESTIONS AND ANSWERS QUESTIONS AND ANSWERS I. WHOLE GRAIN-RICH 1. How will centers and day care homes identify whole grain-rich foods? Centers and day care homes can identify whole grain-rich foods using one of several methods.

More information

Youth4Health Project. Student Food Knowledge Survey

Youth4Health Project. Student Food Knowledge Survey Youth4Health Project Student Food Knowledge Survey Student ID Date Instructions: Please mark your response. 1. Are you a boy or girl? Boy Girl 2. What is your race? Caucasian (White) African American Hispanic

More information

Warm-Up 92. The Importance of Good Health. A eating good food B exercising. C playing video games D getting good sleep

Warm-Up 92. The Importance of Good Health. A eating good food B exercising. C playing video games D getting good sleep Name: Warm-Up 92 The Importance of Good Health Your health is very important. It is what lets you play and think and sleep. You feel great when your body is healthy. What can you do to stay healthy? There

More information

Group Session 3. Physical Fitness instructor or video

Group Session 3. Physical Fitness instructor or video Group Session 3 at a Glance Key Behavioral Strategies Participant Behavioral Strategies Process Objectives & Session Content Handouts Other Materials Suggested Partnerships Topics/Agenda (2 hours) Calorie

More information

Test date Name Meal Planning for the Family Study Sheet References: Notes in class, lectures, labs, assignments

Test date Name Meal Planning for the Family Study Sheet References: Notes in class, lectures, labs, assignments Test date Name Meal Planning for the Family Study Sheet References: Notes in class, lectures, labs, assignments Food for Today - Chapters 3.1, 3.2, 12.1,2,3 World of Food - Chapters 3, 5, 8 1. Know the

More information

Appendix D Workout Journal

Appendix D Workout Journal Appendix D Workout Journal D THE BODY SCULPTING BIBLE FOR MEN THE BODY SCULPTING BIBLE FOR MEN BREAK-IN ROUTINE #1 Daily Workout Journal Week Day Exercise Set 1 Set 2 Set 3 Set 4 Set 5 Abs Group 4 Group

More information

My Review of John Barban s Venus Factor (2015 Update and Bonus)

My Review of John Barban s Venus Factor (2015 Update and Bonus) My Review of John Barban s Venus Factor (2015 Update and Bonus) December 26, 2013 by Erin B. White 202 Comments (Edit) This article was originally posted at EBWEIGHTLOSS.com Venus Factor is a diet program

More information

Grade 3: Nutrition Lesson 5: Eating Right to Support Your Skeletal System

Grade 3: Nutrition Lesson 5: Eating Right to Support Your Skeletal System Grade 3: Nutrition Lesson 5: Eating Right to Support Your Skeletal System Objectives: Students will identify the different food groups and the food group that provides them with the most calcium. Students

More information

Knowledge, Attitudes and Behaviors Questionnaire (KAB)

Knowledge, Attitudes and Behaviors Questionnaire (KAB) Knowledge, Attitudes and Behaviors Questionnaire (KAB) Version G Spring 000 Student ID: Grade: 05 Student Name: (last) (first, middle init.) Class ID: Teacher: Paste label to left or print information

More information

Combine Multiple Servings by Volume

Combine Multiple Servings by Volume Lesson Overview Lesson Participants: School Nutrition Assistants/Technicians Type of Lesson: Short face-to-face training session Time Needed to Conduct the Lesson: 25 minutes Lesson Description: This lesson

More information

1 ONE MY FUEL UP PLATE. LESSON

1 ONE MY FUEL UP PLATE.   LESSON MY FUEL UP PLATE LESSON 1 ONE Explain how physical activity impacts nutritional needs. Identify appropriate number of servings for each food group and recommended caloric intake based on a personal needs

More information

Offer versus Serve Webinar. Questions and Answers. 1. Question: Do croutons count as part of grains when mixed with Caesar salad?

Offer versus Serve Webinar. Questions and Answers. 1. Question: Do croutons count as part of grains when mixed with Caesar salad? Offer versus Serve Webinar Questions and Answers 1. Question: Do croutons count as part of grains when mixed with Caesar salad? Answer: Croutons will not count if they are 0.24 grain equivalents or less.

More information

Good Grinding for Wise Dining. Choosing Foods Lesson 12: Meal Planning. Let s make a meal plan, yes, we can

Good Grinding for Wise Dining. Choosing Foods Lesson 12: Meal Planning. Let s make a meal plan, yes, we can Good Grinding for Wise Dining Let s make a meal plan, yes, we can Ask the following questions: Ask someone in the audience to assist you. Give the tally sheet to this person and have them count the number

More information

June 28, 2008 General Assembly, Fort Lauderdale Presented by Linda Laskowski Unitarian Universalist Church of Berkeley

June 28, 2008 General Assembly, Fort Lauderdale Presented by Linda Laskowski Unitarian Universalist Church of Berkeley Congregations Count! June 28, 2008 General Assembly, Fort Lauderdale Presented by Linda Laskowski Unitarian Universalist Church of Berkeley or How a UU Membership Chair Stopped Trying to Doing Everything

More information

Food for thought. Easy read information

Food for thought. Easy read information Food for thought Easy read information A member of staff or a carer can support you to read this booklet. They will be able to answer any questions that you have. About this leaflet This leaflet is for

More information

Lesson 8 Setting Healthy Eating & Physical Activity Goals

Lesson 8 Setting Healthy Eating & Physical Activity Goals Lesson 8 Setting Healthy Eating & Physical Activity Goals Overview In this lesson, students learn about goal setting. They review the activity sheets they filled out earlier to log their eating and activity

More information

Calling All Sodium Sleuths!

Calling All Sodium Sleuths! Experiential Learning Activity Calling All In these activities, students will learn the reasons why being a sodium sleuth can lead to better health. SetUp: Cover the list of food items (see Activity One

More information

a. This is the same as for the general public, but people with diabetes, like the rest of the public, often eat more salt than they need.

a. This is the same as for the general public, but people with diabetes, like the rest of the public, often eat more salt than they need. a. This is the same as for the general public, but people with diabetes, like the rest of the public, often eat more salt than they need. b. Putting this all together - cake, rice, bread, and fried chicken

More information

5 key steps to managing your blood sugar, naturally! Brought to you by Lily Nichols, RDN, CDE, CLT Author of Real Food for Gestational Diabetes

5 key steps to managing your blood sugar, naturally! Brought to you by Lily Nichols, RDN, CDE, CLT Author of Real Food for Gestational Diabetes 5 key steps to managing your blood sugar, naturally! Brought to you by Lily Nichols, RDN, CDE, CLT Author of Real Food for Gestational Diabetes 5 key steps to managing your blood sugar, naturally! 1 -

More information

The Weitzlab Survival Guide. Group meeting 9/14/10

The Weitzlab Survival Guide. Group meeting 9/14/10 The Weitzlab Survival Guide Group meeting 9/14/10 Group character We have a large group There is someone in the group who can answer almost any question We work in Boston the richest scientific community

More information

YOUR SOLUTION TO MEDICAL UNCERTAINTY members.bestdoctors.com

YOUR SOLUTION TO MEDICAL UNCERTAINTY members.bestdoctors.com YOUR SOLUTION TO MEDICAL UNCERTAINTY WHAT IS BEST DOCTORS? Best Doctors is an employer-provided service dedicated to making sure our members are confident in their diagnoses, treatments and understanding

More information

Your solution to medical uncertainty members.bestdoctors.com

Your solution to medical uncertainty members.bestdoctors.com Your solution to medical uncertainty My experience was very positive; Best Doctors gave me the reassurance to go forward with the proper medical care I needed. What is Best Doctors? Best Doctors is an

More information

YOUR SOLUTION TO MEDICAL UNCERTAINTY members.bestdoctors.com

YOUR SOLUTION TO MEDICAL UNCERTAINTY members.bestdoctors.com YOUR SOLUTION TO MEDICAL UNCERTAINTY WHAT IS BEST DOCTORS? Best Doctors is an employer-provided service dedicated to making sure our members are confident in their diagnoses, treatments and understanding

More information

If adaptations were made or activity was not done, please describe what was changed and why. Please be as specific as possible.

If adaptations were made or activity was not done, please describe what was changed and why. Please be as specific as possible. Washington State Snap-Ed Curriculum Fidelity for Continuous Improvement Lesson Assessment Tool for Eat Smart, Live Strong: Lesson Four Eat Smart, Spend Less Educator Self-Assessment Supervisor Assessment

More information

Building a balanced meal

Building a balanced meal Building a balanced meal A great way to build a healthy meal! Sometimes it s hard to know where to start when you re trying to plan healthy meals. The American Diabetes Association s Create Your Plate

More information

How many of you have gone grocery shopping without knowing what to buy or what foods to make? How many of you have gone to the grocery store and

How many of you have gone grocery shopping without knowing what to buy or what foods to make? How many of you have gone to the grocery store and How many of you have gone grocery shopping without knowing what to buy or what foods to make? How many of you have gone to the grocery store and spent a lot of money on groceries and then came home and

More information

Creating Condom Confidence

Creating Condom Confidence A Lesson Plan from Rights, Respect, Responsibility: A K-12 Curriculum Fostering responsibility by respecting young people s rights to honest sexuality education. NSES ALIGNMENT: By the end of 12th grade,

More information

POMP Home-Delivered Meals

POMP Home-Delivered Meals POMP Home-Delivered Meals (Version: April 1, 2011) Now we are going to talk about home-delivered meals you receive from (Agency/Provider Name). HDM1. When was the last time you received a home-delivered

More information

Session 3: Overview. Quick Fact. Session 3: Three Ways to Eat Less Fat and Fewer Calories. Weighing and Measuring Food

Session 3: Overview. Quick Fact. Session 3: Three Ways to Eat Less Fat and Fewer Calories. Weighing and Measuring Food Session 3: Overview Weighing and Measuring Food Weighing and measuring food are important ways of knowing what we eat. Measuring helps us make healthier choices. Eating even a slightly smaller amount can

More information

Session 1 Reading. Directions. Session One 3 Go On

Session 1 Reading. Directions. Session One 3 Go On Session 1 Reading Directions In this part of ELAP Plus Third Edition, you will read five passages: Nervous Nelly Year-Round School The Rainy Day Play All About Vitamins Benefits of the Hoover Dam There

More information

PET/CT Patient Information

PET/CT Patient Information PET/CT Patient Information BC Cancer Functional Imaging Department includes BC s only two publicly funded PET/CT scanners. Located on the first floor of BC Cancer Vancouver Centre, the Functional Imaging

More information

APPENDIX C: MATERIALS FOR STEP 5 DATA ANALYSIS EXERCISES

APPENDIX C: MATERIALS FOR STEP 5 DATA ANALYSIS EXERCISES Appendix C: Materials for Step 5 Data Analysis Exercises C-73 APPENDIX C: MATERIALS FOR STEP 5 DATA ANALYSIS EXERCISES C-74 Appendix C: Materials for Step 5 Data Analysis Exercises APPENDIX C: MATERIALS

More information

Activity #5: The Glycemic Index

Activity #5: The Glycemic Index Activity #5: The Glycemic Index Cristina shares with her grandmother the information she has learned about reading nutrition labels and checking the total amount of sugar and fiber per serving. She is

More information

Step Up and Celebrate

Step Up and Celebrate Step Up and Celebrate Physical Activity Physical Activity Healthy Eating Goals Met Rewards Goals Met 1. 1. Handout 12-1 Healthy Eating Rewards 2. 2. 3. 3. 4. 4. 5. 5. 6. 6. Choose an appropriate reward

More information

GRADE 4 SURVEY PART 1: School Garden Knowledge Questions i

GRADE 4 SURVEY PART 1: School Garden Knowledge Questions i GRADE 4 SURVEY PART 1: School Garden Knowledge Questions i TEACHER SCRIPT: Keep your eyes on me and I will tell you the directions for this survey. We are going to read each question and all of the possible

More information

Keeping the Body Healthy!

Keeping the Body Healthy! Name Hour Food & Nutrition 9 th Grade Keeping the Body Healthy! # Assignment Pts. Possible 1 Create a Great Plate Video 30 2 MyPlate Label & Color 15 3 Color & Food 5 4 6 Basic Nutrients 9 5 Dietary Guidelines

More information

GRADE 5 SURVEY PART 1: School Garden Knowledge Questions i

GRADE 5 SURVEY PART 1: School Garden Knowledge Questions i GRADE 5 SURVEY PART 1: School Garden Knowledge Questions i TEACHER SCRIPT: Keep your eyes on me and I will tell you the directions for this survey. We are going to read each question and all of the possible

More information

Chapter 6: MyPlate. Lesson Objectives. Review the Last Chapter. Helpful Hints. 1. To introduce and teach participants about MyPlate (vs. MyPyramid).

Chapter 6: MyPlate. Lesson Objectives. Review the Last Chapter. Helpful Hints. 1. To introduce and teach participants about MyPlate (vs. MyPyramid). On the T.R.A.I.L. to Diabetes Prevention Part 2: Healthy Eating 2 Chapter 6: MyPlate Lesson Objectives 1. To introduce and teach participants about MyPlate (vs. MyPyramid). 2. To reinforce the importance

More information

Instructions continue on the next page, please turn over.

Instructions continue on the next page, please turn over. External Assessment NCFE Level 2 Certificate in Food and Cookery (601/4533/X) Unit 03 Exploring balanced diets (K/506/5038) Paper number: P000436 Assessment Date: 1 March 2017 Assessment Time: 9.30am Complete

More information

What and when to feed your child (6 to 24 months)

What and when to feed your child (6 to 24 months) Page 1 of 8 0:00:20.2 All parents want their children to grow up to be fit and healthy adults. In the first two years of a child s life their brains and bodies grow and develop more than at any other time.

More information

EMERGENCY ESSENTIALS FOOD STORAGE

EMERGENCY ESSENTIALS FOOD STORAGE EMERGENCY ESSENTIALS FOOD STORAGE FOOD STORAGE 101 Introduction: Why Store Food? Like water, food is essential to survival. In a natural disaster, the food supply we rely on every day can be disrupted

More information

30-DAY CLEAR SKIN PROGRAM PROTOCOL

30-DAY CLEAR SKIN PROGRAM PROTOCOL 30-DAY CLEAR SKIN PROGRAM PROTOCOL VISIT 1 Initial Evaluation : VISIT 2 : VISIT 3 : VISIT 4 : *Staff must initial everything they complete. Paperwork doubled check for ALL information Take Symptom Survey

More information

Jump in for Healthy Choices

Jump in for Healthy Choices Jump in for Healthy Choices Grade Level: K-3 Lesson Overview Objectives: Students will be able to Recognize the importance of eating a variety of fruits and vegetables Green and Healthy Kids - People Topic

More information

English *P48984A0112* E202/01. Pearson Edexcel Functional Skills. P48984A 2015 Pearson Education Ltd. Level 2 Component 2: Reading

English *P48984A0112* E202/01. Pearson Edexcel Functional Skills. P48984A 2015 Pearson Education Ltd. Level 2 Component 2: Reading Write your name here Surname Other names Pearson Edexcel Functional Skills English Level 2 Component 2: Reading 12 16 October 2015 Time: 60 minutes You may use a dictionary. Centre Number Candidate Number

More information

Midterm project due next Wednesday at 2 PM

Midterm project due next Wednesday at 2 PM Course Business Midterm project due next Wednesday at 2 PM Please submit on CourseWeb Next week s class: Discuss current use of mixed-effects models in the literature Short lecture on effect size & statistical

More information

Week 2 Video 3. Diagnostic Metrics

Week 2 Video 3. Diagnostic Metrics Week 2 Video 3 Diagnostic Metrics Different Methods, Different Measures Today we ll continue our focus on classifiers Later this week we ll discuss regressors And other methods will get worked in later

More information

What Does My Body Need to Grow?

What Does My Body Need to Grow? What Does My Body Need to Grow? If you want to be healthy and have the energy for all your favorite games and activities, then you need to eat food that is good for you and that will make you strong. How

More information

Chapter 1: Food Guide Pyramid

Chapter 1: Food Guide Pyramid Chapter 1: Food Guide Pyramid Goals 1. When given a list of the five food groups on the USDA Food Guide Pyramid, student will read the name of each group and write the name in the appropriate place on

More information

Beating Diabetes PART 2. Guide To Starting A Worry Free Life. Foods You Need To Eat To Kick Start Normal Blood Sugar.

Beating Diabetes PART 2. Guide To Starting A Worry Free Life. Foods You Need To Eat To Kick Start Normal Blood Sugar. Beating Diabetes Guide To Starting A Worry Free Life. PART 2 Foods You Need To Eat To Kick Start Normal Blood Sugar. *Warning* This is for the person who is really ready to make a change in Their life.

More information

Descriptive Statistics

Descriptive Statistics Descriptive Statistics Available on the class website The rubric is also posted if you want to see how they will be graded You ll need some of the output from today to complete the assignment Let s take

More information

Healthy Food for Healthy Adults

Healthy Food for Healthy Adults HANDOUT 1 Healthy Food for Healthy Adults Eating healthy food means eating a variety of food everyday, including whole grains, fruits and vegetables, milk and other dairy products, and meat, seafood, or

More information

Everyone s journey is different; our motivations are relatively the same.

Everyone s journey is different; our motivations are relatively the same. A Note From Dr. Mike Since the release of my #1 Best-Selling book the 17-Day Diet millions of people have achieved their health and weight loss goals. Everyone s journey is different; our motivations are

More information

Unit J: Adjusting Standardized Recipes

Unit J: Adjusting Standardized Recipes Unit J: Adjusting Standardized Recipes Table of Contents 0 0 Pages Adjusting Standardized Recipes. Objectives. Materials Needed. Standardized Recipes. Determining Needed Yields. Number of Servings. Number

More information

A STARTER BOOK OF CAMPAIGN TEMPLATES

A STARTER BOOK OF CAMPAIGN TEMPLATES A STARTER BOOK OF CAMPAIGN TEMPLATES by the Progressive Change Campaign Committee The following are standard templates that every campaign will need, such as ways to sign up volunteers and track contributions.

More information

Chartwells and Being Diabetic Friendly. When you look around campus do you ever stop to think about the many students and

Chartwells and Being Diabetic Friendly. When you look around campus do you ever stop to think about the many students and Ahnert 1 Laura Ahnert Professor Gilliar ENG-364 Research and Argument Paper Final Version Chartwells and Being Diabetic Friendly When you look around campus do you ever stop to think about the many students

More information

Arlington Food Assistance Center New Volunteer Introduction

Arlington Food Assistance Center New Volunteer Introduction Arlington Food Assistance Center New Volunteer Introduction Thank you for offering to volunteer with AFAC. Without volunteers such as yourself, it would be impossible to serve the many food disadvantaged

More information

1. Lean Meats and Fish. 2. Lots of Veggies

1. Lean Meats and Fish. 2. Lots of Veggies 1. Lean Meats and Fish Getting enough protein will be essential to losing extra fat and keeping your satisfied throughout the day. The best source of this comes from lean meats: chicken, lean beef, turkey

More information

Tips for a Diabetes Diet

Tips for a Diabetes Diet Tips for a Diabetes Diet Diet plays an important role in diabetes treatment. Majority of people affected with diabetes are overweight or obese. In fact, your risk of getting diabetes increases the more

More information

The emotional side of diabetes

The emotional side of diabetes The emotional side of diabetes Diabetes can take a lot of effort to manage. So it s not surprising that many people who have it feel overwhelmed. If you have felt that way, you re not alone. Read on to

More information

Activity 4.2 Dissolving a substance in different liquids

Activity 4.2 Dissolving a substance in different liquids Activity 4.2 Does colored sugar dissolve equally well in water, vegetable oil, and alcohol? In the introductory story on Activity sheet 4.1, the student added drink mix to different liquids. Many drink

More information

Week of November 1-2, 2018

Week of November 1-2, 2018 Week of vember 1-2, 2018 Atlantic City 11/1/2018 11/2/2018 BBQ Baked Bean Steamed Green Beans Halal Chicken Cheese Steak WG Chicken Stir Fry w Brown Rice Cheeseburger on Patty on Patty Grilled Cheese and

More information

Network for a Healthy California Retail Program Fruit and Vegetable Store Tour Guide

Network for a Healthy California Retail Program Fruit and Vegetable Store Tour Guide Network for a Healthy California Retail Program Fruit and Vegetable Store Tour Guide Introduction The Network for a Healthy California Retail Program (Retail Program) implements merchandising and promotional

More information

4 Additional lines at the end of the booklet can be used if more space is required for answers or if you need to do any rough work.

4 Additional lines at the end of the booklet can be used if more space is required for answers or if you need to do any rough work. FOR OFFICIAL USE X118/201 NATIONAL QUALIFICATIONS 2009 TUESDAY, 9 JUNE 1.00 PM 2.30 PM Total HOME ECONOMICS HEALTH AND FOOD TECHNOLOGY INTERMEDIATE 2 Fill in these boxes and read what is printed below.

More information

Shop smart. A new way of spending your money on food to balance your diet and your food budget.

Shop smart. A new way of spending your money on food to balance your diet and your food budget. Shop smart. A new way of spending your money on food to balance your diet and your food budget. What is FOODcents? FOODcents uses the 10-Plan to help you balance your diet and a KILOcents Counter to help

More information

Nutrition Education for ESL Programs LEVEL: BEGINNING HIGH. Nutrition Standard. Content Objective. Behavior Change Objective. Language Objective

Nutrition Education for ESL Programs LEVEL: BEGINNING HIGH. Nutrition Standard. Content Objective. Behavior Change Objective. Language Objective Nutrition Education for ESL Programs LEVEL: BEGINNING HIGH Nutrition Standard Key Message #2: Students will continue to eat, or add, fruits and vegetables to their diets to equal USDA recommendations.

More information

LEVEL: BEGINNING HIGH

LEVEL: BEGINNING HIGH Nutrition Education for ESL Programs LEVEL: BEGINNING HIGH Nutrition Standard Key Message #4: Students will eat a balanced diet as defined by the USDA. Content Objective Students will be able to evaluate

More information

Multiple Daily Injection (MDI) & Carbohydrate (CHO) Counting Assessment Tool

Multiple Daily Injection (MDI) & Carbohydrate (CHO) Counting Assessment Tool Multiple Daily Injection (MDI) & Carbohydrate (CHO) Counting Assessment Tool (for patients using analogue insulin) The overall aim of this questionnaire is to ensure that you have the knowledge required

More information

Macro tracking 101. But before we get into all that the big question: What is a macro?

Macro tracking 101. But before we get into all that the big question: What is a macro? Macro tracking 101 The information contained in this document is for informational and entertainment purposes only. If you have questions regarding nutrition, diet and health please consult your physician

More information

Reducing household food and drink waste Date labels and storage guidance Project findings. May 2011

Reducing household food and drink waste Date labels and storage guidance Project findings. May 2011 Reducing household food and drink waste Date labels and storage guidance Project findings May 2011 Presentation outline Background Methodology Recommendations and evidence Potential impact Food safety

More information

BE SURE EVERYONE IN THE AUDIENCE (AND THE VOLUNTEERS!) IS OPEN TO THE FOTONOVELA PAGE BEFORE PROCEEDING.

BE SURE EVERYONE IN THE AUDIENCE (AND THE VOLUNTEERS!) IS OPEN TO THE FOTONOVELA PAGE BEFORE PROCEEDING. MEALTIME IN THIS LAST SECTION, WE WILL DISCUSS WAYS TO MAINTAIN A BALANCED DIET THROUGH PORTION SIZE, BEING ABLE TO GUESS SERVING SIZES EASILY, AND HAVING A NUTRITIONALLY BALANCED PLATE. IN ADDITION, WE

More information

Slide 1. Welcome to a short training on the USDA Child Nutrition Labeling Program. This is what is most commonly referred

Slide 1. Welcome to a short training on the USDA Child Nutrition Labeling Program. This is what is most commonly referred Slide 1 C H I L D N U T R I T I O N USDA Child Nutrition (CN) Labeling Program Welcome to a short training on the USDA Child Nutrition Labeling Program. This is what is most commonly referred to as a CN

More information

Effective Date: 9/14/06 NOTICE PRIVACY RULES FOR VALUEOPTIONS

Effective Date: 9/14/06 NOTICE PRIVACY RULES FOR VALUEOPTIONS Effective Date: 9/14/06 NOTICE PRIVACY RULES FOR VALUEOPTIONS This notice describes how medical information about you may be used and disclosed and how you can get access to this information. If you have

More information

Top Tips for Top Kids Leaflet 2016 v1_4.indd 1 02/03/ :17

Top Tips for Top Kids Leaflet 2016 v1_4.indd 1 02/03/ :17 2905096 Top Tips for Top Kids Leaflet 2016 v1_4.indd 1 02/03/2016 16:17 Fun, free and easy ways to get your kids happy and healthy We all want our children to grow up to be happy, healthy adults. But it

More information

Interpreter Services. How to Effectively Work with Interpreters and Translators to Communicate with Your Patients. UWMC Interpreter Services 1

Interpreter Services. How to Effectively Work with Interpreters and Translators to Communicate with Your Patients. UWMC Interpreter Services 1 Interpreter Services How to Effectively Work with Interpreters and Translators to Communicate with Your Patients UWMC Interpreter Services 1 What Are UWMC Interpreter Services? l We help provide equal

More information

FREQUENTLY ASKED QUESTIONS MINIMAL DATA SET (MDS)

FREQUENTLY ASKED QUESTIONS MINIMAL DATA SET (MDS) FREQUENTLY ASKED QUESTIONS MINIMAL DATA SET (MDS) Date in parentheses is the date the question was added to the list or updated. Last update 6/25/05 DEFINITIONS 1. What counts as the first call? (6/24/05)

More information

Session 1: Sugar and health

Session 1: Sugar and health Learning Outcomes: Session 1: Sugar and health At the end of the session the group should: Know that you should eat only small amounts of foods high in sugar Know that you should not have foods high in

More information

What s Really True? Discovering the Fact and Fiction of Autism

What s Really True? Discovering the Fact and Fiction of Autism What s Really True? Discovering the Fact and Fiction of Autism Beth MacLehose Dempsey Middle School, Delaware, Ohio In collaboration with Catherine Rice, National Center on Birth Defects and Developmental

More information

7 Day Fat Loss Formula How to drop those stubborn pounds this week

7 Day Fat Loss Formula How to drop those stubborn pounds this week 7 Day Fat Loss Formula How to drop those stubborn pounds this week Dear Friend, I m really excited that you decided to join my revolutionary 7 day Fat loss Formula where i show you how to detox and cleanse

More information

How the heck did I miss that? How visual attention limits visual perception Jeremy Wolfe Brigham & Women s Hospital/ Harvard Medical School

How the heck did I miss that? How visual attention limits visual perception Jeremy Wolfe Brigham & Women s Hospital/ Harvard Medical School How the heck did I miss that? How visual attention limits visual perception Jeremy Wolfe Brigham & Women s Hospital/ Harvard Medical School Why the heck did I miss that? Profusion Spatial uncertainty Inattentional

More information

5. Thinking about your breakfast this morning, which food groups were included?

5. Thinking about your breakfast this morning, which food groups were included? 1. Are you male or female? Male Female 2. How old are you? 11 12 13 14 15 16 Breakfast 3. Did you have breakfast today? Breakfast 4. Did you have a drink with your breakfast? 5. Thinking about your breakfast

More information

Follow-up Call Script and Log

Follow-up Call Script and Log Patient Name: Follow-up Call Script and Log The adoption of this worksheet is optional but we have tried to create it so that it will both guide the educator through the follow-up phone calls and help

More information

MOVIPREP BOWEL PREP. 2 days prior to procedure

MOVIPREP BOWEL PREP. 2 days prior to procedure The following instructions are your physician s specific instructions. Please follow the instructions carefully to ensure a successful prep. You can reach Your Patient Advisor with non-medical prep questions

More information

TKT CLIL LESSON PLAN

TKT CLIL LESSON PLAN TKT CLIL LESSON PLAN Teacher s name Date Agostini Samanta 19 th May Time 9.00 10.00 (Activity 1 and 2) The observer will be present during this lesson. I will develop activity 2 and 3 in the next two lessons.

More information

Enhanced Recovery After Surgery (ERAS) Cystectomy. Patient Diary

Enhanced Recovery After Surgery (ERAS) Cystectomy. Patient Diary Enhanced Recovery After Surgery (ERAS) Cystectomy Patient Diary page 2 Introduction Enhanced Recovery is a new way of improving the experience and well-being of people who need major surgery. It will help

More information

Overall this is a great 30-minute meal and is different which is what you want. You will enjoy something different yet please your taste buds.

Overall this is a great 30-minute meal and is different which is what you want. You will enjoy something different yet please your taste buds. Here is the start to my analysis of Rachael Ray's 365: No Repeats 30-minute meal cookbook. There are some wonderful recipes in here and to know that there is a recipe for every day of the year is great.

More information

Cut out these cards and match them up to make correct sentences. Arrange the sentences in a sensible order, and stick them into your book.

Cut out these cards and match them up to make correct sentences. Arrange the sentences in a sensible order, and stick them into your book. 7Ia-1 Energy from food Cut out these cards and match them up to make correct sentences. Arrange the sentences in a sensible order, and stick them into your book. explain why different people need different

More information

3.2 For breakfast, our students usually have: sandwiches, baked eggs, omelet, cereal, fruit, salad, yoghurt, tea, coffee.

3.2 For breakfast, our students usually have: sandwiches, baked eggs, omelet, cereal, fruit, salad, yoghurt, tea, coffee. EATING HABITS FOR A HEALTHY LIFE WE ASKED THESE QUESTIONS BELOW What s the most important meal in a day in your daily life? What kind of food do you eat at breakfast? How often do you eat out? What kind

More information

NUTRITION & ACTIVITY TRACKER

NUTRITION & ACTIVITY TRACKER NUTRITION & ACTIVITY TRACKER Date: to INFORMATION ABOUT MYSELF Name: Address: City: State: Zip: Phone: Height: Weight: Other: X 1-888-222-2542 Nutrition & Activity Tracker This record is designed to help

More information