Skip to main content

The Atlantic Daily: Our Election Night Watch Guide

Every weekday evening, our editors guide you through the biggest stories of the day, help you discover new ideas, and surprise you with moments of delight. Subscribe to get this delivered to your inbox.

Shutterstock / Getty / The Atlantic

To put the Election Day frenzy aside, this bears repeating: This is not a normal election, and you should prepare yourself accordingly. We don’t know when races will be called. There’s a good chance that America wakes up tomorrow without the neat ending it seeks.

To help guide you through what could be a chaotic night, here are five quick election-watching tips, courtesy of our Politics team (read its essential full guide here):

  1. Forget early exit polls. They have a habit of being unreliable.

  2. Keep your eye on Florida.

  3. If you’ve got the TV on, flip between cable networks (with an eye toward Fox News).

  4. Use Twitter cautiously (consider following our Politics editor’s list of key accounts and our Atlantic staff list).

  5. Don’t forget about local races! Here are six we’re following.

THE ATLANTIC

What to read if … you’re looking for additional practical advice:

If you want a smart hour-by-hour breakdown, use our staff writer Derek Thompson’s playbook. He outlines what he’ll be watching as the night progresses (and what he’ll ignore).

We also compiled this list of six states to keep an eye on. They include: Florida, Pennsylvania, and more.

Be sure to familiarize yourself with the “blue shift,” or the tendency of early results to skew Republican. An uptick in mail-in votes may make this effect even more pronounced.

What to read if … you find yourself stress-refreshing forecast sites:

Ask yourself why, one mathematician advised Derek. “Our stress affects nothing.”

Or, as our Dear Therapist columnist, Lori Gottlieb, once explained: “The more we worry, the more we try to control our worry with something tangible, such as information. But clinging to our screens for the latest update has the opposite effect.”

What to read if … the election is causing you to reflect on the past four years:

That’s normal, Joe Pinsker writes: “Like the Olympics and other infrequently recurring high-profile events, each presidential election prompts us to remember where we were—and who we were—on Election Nights past.”

You may also find yourself contemplating the trajectory of this country since that November night in 2016. To aid in such reflections, we put together this collection of The Atlantic’s essential writing on the Trump presidency.

What to read if … you need a break from it all:

“Take a walk,” suggests Nick Baumann, the Atlantic’s Politics editor. “Put on some slouchy clothes. Read about rogue planets or The Great British Baking Show, or watch a comfort movie. Hibernate.”


Thanks for reading. This email was written by Caroline Mimbs Nyce.

Did someone forward you this newsletter? Sign up here. Need help? Contact Customer Care.

The Atlantic https://ift.tt/3oX6NLt November 04, 2020 at 12:04AM

Comments

Popular posts from this blog

Controlling legend appearance in ggplot2 with override.aes

[This article was first published on Very statisticious on Very statisticious , and kindly contributed to R-bloggers ]. (You can report issue about the content on this page here ) Want to share your content on R-bloggers? click here if you have a blog, or here if you don't. In ggplot2 , aesthetics and their scale_*() functions change both the plot appearance and the plot legend appearance simultaneously. The override.aes argument in guide_legend() allows the user to change only the legend appearance without affecting the rest of the plot. This is useful for making the legend more readable or for creating certain types of combined legends. In this post I’ll first introduce override.aes with a basic example and then go through three additional plotting scenarios to how other instances where override.aes comes in handy. Table of Contents R packages Introducing override.aes Adding a guides() layer Using the guide argument in scale_*() Changing multiple aesthetic par...

Using RStudio and LaTeX

(This article was first published on r – Experimental Behaviour , and kindly contributed to R-bloggers) This post will explain how to integrate RStudio and LaTeX, especially the inclusion of well-formatted tables and nice-looking graphs and figures produced in RStudio and imported to LaTeX. To follow along you will need RStudio, MS Excel and LaTeX. Using tikzdevice to insert R Graphs into LaTeX I am a very visual thinker. If I want to understand a concept I usually and subconsciously try to visualise it. Therefore, more my PhD I tried to transport a lot of empirical insights by means of  visualization . These range from histograms, or violin plots to show distributions, over bargraphs including error bars to compare means, to interaction- or conditional effects of regression models. For quite a while it was very tedious to include such graphs in LaTeX documents. I tried several ways, like saving them as pdf and then including them in LaTeX as pdf, or any other file ...