You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 31, 2023. It is now read-only.
With a as (
select variable, count(*) as count from pff_social."Y2013-2017-old"where p =100GROUP BY variable),
b as (select variable, count(*) as count from pff_social."Y2013-2017"where p =100GROUP BY variable)
SELECTa.variable, a.countas old_count, b.countas new_count
FROM a,b
WHEREa.variable=b.variable;
From this query we can see that for some variables we have fairly different results for the number of records with 100 as percentage estimate.
Need to figure out if we need to set P=100 for certain variables by definition, if so, how to identify those variables
The text was updated successfully, but these errors were encountered:
From this query we can see that for some variables we have fairly different results for the number of records with 100 as percentage estimate.
Need to figure out if we need to set P=100 for certain variables by definition, if so, how to identify those variables
The text was updated successfully, but these errors were encountered: