Watts-College / cpp-526-spr-2023

0 stars 0 forks source link

CPP526 Lab 2 Q7 #1

Open ashleycc33 opened 1 year ago

ashleycc33 commented 1 year ago

Hi all! Does anyone know what the difference between the two parts of Q7 is on Lab 2? Both seem to be asking for the same proportions, but I may be misunderstanding.

lecy commented 1 year ago

It is a really good question that gets at the heart of logical statements - one of the fundamental building blocks of data programming.

http://ds4ps.org/dp4ss-textbook/p-050-business-logic.html

You have two statements:

How you put them together matters:

image

But the denominator is also important here:

What proportion of commercial properties are delinquent on taxes? What proportion of delinquent tax bills are owed by commercial parcels?

One is asking about all commercial properties as the population of interest, and another is asking about all properties with delinquent taxes as the population of interest (the denominators).

If you draw a venn diagram it will start to make more sense.

image

ashleycc33 commented 1 year ago

This helps thank you!