.@CDCgov - Why is your upper bound threshold for deaths less in 2019 than in 2020? This is extremely fishy to me.

It's overall 2.3% less for the same periods in 2019 vs 2020 or ~63k. Image
For those who want an explanation. The CDC uses this chart to estimate excess deaths, but the upper bound threshold in 2020 is 2.3% lower than it was for 2019. US population is growing.

cdc.gov/nchs/nvss/vsrr… Image
The threshold grew 2.4% from 2018 to 2019 and about the same from 2017 to 2018.

This totaled threshold in millions for the first 47 weeks is:
2018: 2.67
2019: 2.74
2020: 2.67
If 2020 threshold grew by ~2% then then the 2020 current threshold would be at 2.8 million or 130k.

The current actual estimated deaths in 2020 is 2.91 million or only 110k above the 2.8 million threshold and NOT the 240k above the current CDC threshold.
I would love an explanation @CDCgov! Thanks!

• • •

Missing some Tweet in this thread? You can try to force a refresh
 

Keep Current with Ted Petrou

Ted Petrou Profile picture

Stay in touch and get notified when new unrolls are available from this author!

Read all threads

This Thread may be Removed Anytime!

PDF

Twitter may remove this content at anytime! Save it as PDF for later use!

Try unrolling a thread yourself!

how to unroll video
  1. Follow @ThreadReaderApp to mention us!

  2. From a Twitter thread mention us with a keyword "unroll"
@threadreaderapp unroll

Practice here first or read more on our help page!

More from @TedPetrou

15 Dec 20
Sweden's two-year mortality rate in 2019-2020 is one of the lowest in the last 10 years.

I even overestimated 2020 deaths by 2-3%.

Share this to everyone you know who tries to point at Sweden as an example of covid policy failure.

Their strategy has been a huge success.
Data is directly from Statistics Sweden - scb.se/en
Overall deaths have grown slightly but not in proportion to the population, so mortality rates have decreased.
Read 14 tweets
2 Mar 20
Explanation of matplotlib "inches" - a tutorial thread

Inches is a relative term. You must know the figure dpi (dots per inch) and your screen's dpi to make sense of it. Default inline dpi is 72. Below figure is 5 x 2 "figure inches" or 360 x 144 pixels.
Using a screen ruler program (Onde Rulers) it actually measures as 2.2 x .98 "screen inches" on my screen and 324 x 144 pixels
Why not 360 x 144 pixels? Because figures are displayed in the notebook with setting bbox_inches set to 'tight' which trims some of the figure.
Read 9 tweets
22 May 19
There are many types of scikit-learn Estimators. The most common are:
Regressors
Classifiers
Clusterers
Transformers
Meta-estimators

Read their exact definition in the glossary scikit-learn.org/stable/glossar…

They all follow the same three-step process - import, instantiate, fit
Here are examples of each one. They all look the same

# Regressor
from sklearn.linear_model import LinearRegression
lr = LinearRegression()
lr.fit(X, y)
# Classifier
from sklearn.tree import DecisionTreeClassifier
dtc = DecisionTreeClassifier()
dtc.fit(X, y)
Read 6 tweets

Did Thread Reader help you today?

Support us! We are indie developers!


This site is made by just two indie developers on a laptop doing marketing, support and development! Read more about the story.

Become a Premium Member ($3/month or $30/year) and get exclusive features!

Become Premium

Too expensive? Make a small donation by buying us coffee ($5) or help with server cost ($10)

Donate via Paypal Become our Patreon

Thank you for your support!

Follow Us on Twitter!