Skip to main content

The Atlantic Daily: Be your Own Bob Ross This Weekend

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.

HORST FRIEDRICHS / ANZENBERGER / R​EDUX

Limbo is too gentle a word. For many parents, the uncertainty around school reopenings amounts to a daily strain, as they contemplate another full season of juggling child care and career.

Clear answers remain out of reach, for now, but here are three factors worth keeping in mind:

1. Not all kids will be able to follow the new pandemic rules.

“K–12 students may generally be capable of doing what public-health experts ask, but not all of them, not everything, and not all the time,” Joe Pinsker explains.

2. Outdoor classes may be the solution.

Olga Khazan reports: “Though it isn’t free of problems, learning outside might be the only way to provide parents with a break, kids with an adequate education, and teachers with protection from the coronavirus.”

3. School reopening isn’t the only option.

“Other potential solutions exist—but implementing them would require substantially more time, money, and imagination,” Ashley Fetters writes.

Parents themselves weigh in:

Arsh Raziuddin / The Atlantic / Animation by Erik Carter / Courtesy of Bob Ross Inc.

What to do this weekend

Break out the paint and easel. And don’t let inexperience stop you—the writer Michael J. Mooney hadn’t painted since elementary school, until he set out to understand why the painter and cultural icon Bob Ross is still so popular.

Watch. Overwhelmed with streaming options? Take inspiration from the best things our writers and editors have watched so far this season, or our critic’s list of 25 underrated movies for a summer without blockbusters.

Listen. This strange pandemic summer doesn’t have its own song, either, but our staff made some picks anyway. There’s also Taylor Swift’s Folklore, which “gorgeously and empathetically challenges the public’s voyeurism,” our critic writes.

Memorize a poem. “Robust poems committed to memory can counteract the corrosive effects of self-pity,” our contributor Eliot A. Cohen writes.

Settle in with an extraordinary piece of journalism. Giraffes are tall, but they’re not indestructible; get to know the people trying to save them. Contemplate what Joe Biden can’t bring himself to say. Or dive deep into the conspiracy theory that’s becoming a new American religion.

Read an acclaimed novel. The 2020 Booker Prize longlist is out this week. Beef up your reading list with some of the prize’s nominees, or a winner from the past few years.


Thanks for reading. This email was written by Caroline Mimbs Nyce and Isabel Fattal, and edited by Shan Wang.

Did someone forward you this newsletter? Sign up here.

The Atlantic https://ift.tt/3gukOLW July 31, 2020 at 11:32PM

Comments

Popular posts from this blog

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 ...

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...