Science in Action: Sunlight and Sleep (could it be? continued)

Yesterday I deliberately spent almost all day indoors. I didn’t change anything else. This morning I woke up feeling less refreshed than usual. Here are the last three days:

Day 1: Try to spend lots of time outdoors (in the shade). Result: Wake up feeling more refreshed than usual.

Day 2: Try to spend lots of time outdoors (in the shade). Result: Wake up feeling more refreshed than usual.

Day 3: Try to spend as little time outdoors as possible. Result: Wake up feeling less refreshed than usual.

My belief is increasing. Via Google I found this:

Person 1: During the warm months of the year, I swim …a lot! . . . The amount I sleep during swimming season can increase by 1-2 hours.

Person 2: Your probably sleeping longer due to all the extra calories and physical exerction you use by swimming.

Person 1: Nah, it’s the same physical exertion year round for me. I exercise year round. But in the warm months, my exercise takes me outside where I am exposed to sunlight instead of artificial indoor light. That’s how I know it’s the sunlight that helps me sleep better.

I also found this:

We have found that people who are outdoors more have fewer sleep problems.

From an interesting mini-book about the dangers of sleeping pills (apparently the new ones cause cancer). I haven’t yet found the study it refers to.

Science in Action: Omega-3 (flaxseed oil vs. nothing 3)

I blogged earlier about comparing flaxseed oil and nothing: here are the balance and arithmetic results. I also used a paper-and-pencil memory-scanning task that I described earlier. Here are the flaxseed vs. nothing results from that task:

memory scanning results

The difference was even clearer — t = 8 — than with the other measures (balance, t = 7; arithmetic, t = 6). It took about three days of no flaxseed oil before its effect completely wore off, but only one day of resumption to reach full strength again — the pattern seen several times earlier.

The test took 5 minutes/day, twice as long as the arithmetic problems but only half as long as the balance test. The equipment demands are mild: printer, pencil and paper (in addition to computer).

I’ll discuss the implications in a later post.

Science in Action: Sunlight and Sleep (could it be?)

In an airport a few weeks ago, chatting with a stranger, I told her about my self-experimentation. When I stand a lot, I sleep better, I said. She said that sunlight had the same effect on her: When she sunbathes, she sleeps better. Better how? I asked. More deeply, she said.

I had found that morning sunlight (an hour, say) helps me sleep. Her idea was different: No one sunbathes in the morning. She was saying that the amount of sunlight matters independent of the time of day.

This was fascinating because I remembered two days, prior to studying the effects of standing and morning light, after which I had slept very well (i.e., woken up feeling very well-rested):

1. A day when I went to many artists’ studios to look at their work (an event called Open Studios).

2. A camping trip.

Both days I was on my feet a lot. But both days I was also outside a lot, I realized.

Yesterday I gave her idea a test: I spent more time than usual outside — about three hours more, I’d guess. I spend a lot of time sitting in cafes writing; yesterday I sat outside instead of inside.

This morning I woke up feeling unusually well-rested. This bears more investigation.

Science in Action: Omega-3 (flaxseed vs nothing 2 continued)

Flaxseed oil increased how fast I did simple arithmetic problems (e.g., 7+5, 9-4, 3*7). To better measure the effects of fats on my brain, I wanted to find out which problems were most sensitive to flaxseed oil. Then I could hope to create a more sensitive test.

Before looking at the data, I assumed that problems that required more processing — more time — would be more sensitive. But this was not what I found.

First, I compared problems with different functions — plus, minus, and times. (E.g., 5+4 is a plus problem.) Sensitivities:

function….F…..n
plus……..15…..1400
minus…….9…..1400
times……16…..1400

The F values are for the flaxseed/nothing comparison. Greater F = more sensitive. The n values are the number of trials. These results more or less agreed with my preconceptions: times problems were slower than the others.

Then I compared problems based on their correct answers. I divided the problems into groups with roughly equal number of trials. Sensitivities:

answer…F……n
0-3 …..12….1000
4-6……15….700
7-9……..6….900
10-19…..2….900
>19……13….500

This was the surprise: Problems with answers 10-19 contributed almost nothing to the overall sensitivity, while problems with answers on both sides contributed much more. Was typing “1″ the problem? No, problems with the single-digit answer “1″ were no worse than problems with similar one-digit answers.

I redid the analysis omitting problems with answers 10-19 and found more sensitivity to the effects of flaxseed oil — a slightly larger F (or t) value, even though the number of trials was 20% less. Here is a graph based on the more sensitive analysis:

new analysis

No important differences from the earlier, less sensitive analysis:

earlier analysis

Based on these results I will get rid of the subtraction problems and the problems with answers from 10-19. I haven’t decided whether I will keep the total number of problems the same; I might increase the number (which is now 100 — 100 arithmetic problems per session).

R Programs Used to Study Omega-3

I recently posted that flaxseed oil affected how fast I did simple arithmetic problems (a way to measure brain function). Someone asked to see the R programs I used. Here they are.

> arithmetic.add
function (trials=100, condition = “test2″, procedure = “no mistake correction”,note=””)
{# collect new arithmetic data
#
invisible()
start.time=Sys.time()
condition=new.condition()
start.expt()
trls=sample(rep(c(“+”,”-”,”*”),times=c(34,34,34)),size=trials)#determine trial sequence
t=arithmetic[1,]for (tr in 1:trials){
t2=c(current(),condition=condition,procedure=procedure,trial=tr,arithmetic.new.line(func=trls[tr]),note=note)
t=rbind(t,t2)
}
arithmetic<<-rbind(arithmetic,t[-1,])
save.ws()
arithmetic.plot()
cat(“total time”,round(difftime(Sys.time(),start.time, unit=”mins”)),”minutes\n”)
}

> new.condition
function (conditions.so.far = arithmetic$condition)
{# get new condition name
#
# conditions.so.far vector of conditions so far
#
cat(“most recent condition”,last(conditions.so.far),”\nthis condition”)
condition=scan(nlines=1,what=”character”,quiet=TRUE, sep=”!”)
condition
}

> start.expt
function ()
{#wait for Enter to start data collection
#
cat(“press Enter to start “); scan(quiet=TRUE)
}

> arithmetic.new.line
function (func=”+”)
{# give addition, subtraction, or multiplication problem
#
# func function
#
b=sample(0:9,2)
if(func==”+”) answ=b[1]+b[2]if(func==”-”) {b[1]=b[1]+b[2];answ=b[1]-b[2]}
if(func==”*”) answ=b[1]*b[2]start.time=Sys.time()
cat(b[1],func,b[2],”= “)
a=scan(n=1, what = “integer”, quiet = TRUE)
msec=as.integer(1000*difftime(Sys.time(),start.time,unit=”sec”))
correct=a==answ
if(!correct) print(correct)
list(type=func,first.num=b[1],second.num=b[2], msec=msec, answer=as.integer(a),correct=correct)
}

function (vec, n = 1, drop = 0)
{#return last n elements of vec
#
# vec vector
# n number of elements
# drop elements at end to drop before taking n elements
#
le=length(vec)
okay.le=le-drop
vec=vec[1:okay.le]le=length(vec)
ind=(1+le-n):le
vec[ind]}

If you would like help using these programs, please contact me.

Five Similar Words of Wisdom

1. I have mentioned several times what Loren Berlin, a student at the University of North Carolina, told Nicholas Kristof, the New York Times columnist: Stop writing about African failures, start writing about African successes.

2. At the recent New Yorker Conference, Cory Booker, the mayor of Newark, NJ, told this story:

I moved into Newark around 1995. . . In my first month there I saw my first shooting ever. . . . I had my life threatened . . . That same month I met this woman who changed my life. She’s an ornery, tough as nails, just an amazing certifiably insane leader. She was the head of the Brick Tower Tenants Association. . . . I meet this woman . . . The first thing I say to her, in my Yale Law School arrogance, I say to her, “Ma’am, I’m Cory Booker, I live across the street, I’m here to help you.”

She looks at me and she says, “You want to help me, first tell me what you see around you.” . . .

“I see drug dealers.” Which I said in a very respectful tone, in case they overheard me. “I see a crack house.” I describe the neighborhood.

“Well, you could never ever help me.”

“What do you mean?”

“Boy, you need to understand something. The world you see outside of you is a reflection of what you have inside of you. If you only see problems and darkness and despair that’s all there’s ever going to be. But if you see hope and opportunity and even love, then you can be somebody that makes a change.”

3. As I mentioned earlier, in First, Break All the Rules, the authors summarize what they learned from thousands of interviews into one lesson for managers:

Don’t waste time trying to put in [your employees] what was left out. Try to draw out what was left in.

4. At the end of my long self-experimentation paper, I wrote:

[Jane] Jacobs (2000) argued that caste systems and other forms of discrimination retard economic development because they prevent certain jobs from becoming the seeds of new businesses. . . . Belief that something is bad makes it harder to learn what it is good for — including what it could become.

I was referring to the belief of many psychology professors that self-experimentation is bad.

5. In an interview with someone from Buffalo, NY, Jane Jacobs said how development of Buffalo should proceed:

You need to do something — I hate to keep repeating myself — that’s unique to Buffalo, that comes out of Buffalo itself. You don’t want to keep acting like a company town.

In other words, don’t try to make Buffalo more like other cities. Try to make it less like other cities.

Curious, huh?

Thanks to Tobian, who blogs about Ethiopia, for reminding me of the Loren Berlin letter.

Science in Action: Omega-3 (flaxseed oil vs. nothing 2)

Here are more results from my comparison of flaxseed oil with nothing. I wrote earlier about the balance results.

Each day I measured how quickly I could do each of 100 simple arithmetic problems (e.g., 2+7, 5-2, 5*6). I learned about this task from Tim Lundeen. Tim did the task with paper and pencil whereas I used R (a statistics-oriented language) on my laptop to do the experiment: For each problem, I typed the answer and then hit return. “FALSE” was printed if I made a mistake. The next problem appeared immediately.

Here are the average solution times:

flaxseed oil vs. nothing

There was a very clear difference, t = 6. It took more than one day for the effect to become clear, in contrast to the balance results, where it took more than two days.

These results confirm what Tim found. Unlike what he did and my balance measurements, no special equipment was used (besides a computer). This may be the easiest way to study the effect.

My balance results have obvious practical value: Old people often seriously hurt themselves due to loss of balance. What about these results? Well, failure to react fast enough causes many car accidents. Flaxseed oil (and probably other sources of omega-3) may make you a better driver.

Directory of my omega-3 posts.

Science in Action: Omega-3 (flaxseed oil vs. nothing 1)

Do our brains need more omega-3? I have blogged about this many times. My first two self-experiments to answer this question compared flaxseed oil (high in omega-3) with olive oil or sesame oil (low in omega-3). My balance was better with flaxseed oil, suggesting the answer is yes. However, another interpretation is (a) flaxseed oil had no effect and (b) sesame oil and olive oil made my balance worse. To test this possibility, I compared flaxseed oil to nothing (no supplement). If flaxseed oil has no effect, the two conditions should be the same. If flaxseed oil improves my balance, my balance should be better during the flaxseed-oil condition.

During the flaxseed-oil condition, I drank 4 tablespoons/day of flaxseed oil — 2 at 10 am, 2 at 10 pm. The balance test was at 8 am the next day. During both conditions, I did not eat fish.

Here are the results:

flaxseed oil vs. nothing
There was a large and very clear difference between the conditions. It took about three days of no flaxseed oil before the difference stopped increasing. On the first day of resumption of the flaxseed oil, my balance was much better than the day before. Comparing the two conditions (omitting the first three days of the nothing condition), t = 7.

These results support the idea that flaxseed oil made my brain work better.

Are injury-causing falls the new scurvy? The large fast improvement in my balance when I resumed flaxseed oil does resemble the large fast improvement when a person with scurvy eats oranges.

I was surprised by the time course of the decrement during the no-flaxseed condition: It looks different than what happened when I drank olive oil. In this experiment, my balance got worse for about 3 days and then stopped getting worse. In the previous experiment, my balance appeared to get worse for at least 9 days. This may due to the high omega-6 content of olive oil — omega-6 (almost identical to omega-3) may displace omega-3. In the absence of omega-6, omega-3 takes longer to deplete.

Life-Size Faces on YouTube

My recent post about life-size faces; the comments are especially interesting. Here are some usable YouTube faces, thanks to MorningPerson:

https://www.youtube.com/profile?user=Oneparkave

https://www.youtube.com/profile?user=communitychannel

https://www.youtube.com/profile?user=geriatric1927

https://www.youtube.com/profile?user=LUCYinLA

https://www.youtube.com/profile?user=IanCrossland

https://www.youtube.com/profile?user=crossmack

https://www.youtube.com/profile?user=faintstarlite

https://www.youtube.com/profile?user=Paperlilies

https://www.youtube.com/profile?user=xPLx

https://www.youtube.com/profile?user=lonelygirl15 (the earlier entries are better)

https://www.youtube.com/profile?user=GregSolomon

https://www.youtube.com/profile?user=renetto

https://www.youtube.com/profile?user=tokenblackchic

https://www.youtube.com/profile?user=thehill88

https://www.youtube.com/profile?user=littleloca

https://www.youtube.com/profile?user=Emmalina

https://www.youtube.com/profile?user=Emmalene

https://www.youtube.com/profile?user=boh3m3

https://www.youtube.com/profile?user=WilliamSledd

https://www.youtube.com/profile?user=courtneyblaircameron

https://www.youtube.com/profile?user=HappySlip

https://www.youtube.com/profile?user=DIEBUNNYHATER

https://www.youtube.com/profile?user=dabestdude

https://www.youtube.com/profile?user=TipToeChick

https://www.youtube.com/profile?user=bowiechick

https://www.youtube.com/profile?user=losetogain

I also came across the following bloggers that looked promising but I did not get a chance to watch them before I stopped using YouTube for my morning sessions –

https://www.youtube.com/profile?user=applemilk1988

https://www.youtube.com/profile?user=corriev

https://www.youtube.com/profile?user=cubefarm

https://www.youtube.com/profile?user=davidnode

https://www.youtube.com/profile?user=DMcLean1989

https://www.youtube.com/profile?user=ExperimentsinHonesty

https://www.youtube.com/profile?user=FantasticBabblings

https://www.youtube.com/profile?user=jennfriedman

https://www.youtube.com/profile?user=kazzart

https://www.youtube.com/profile?user=kicesie

https://www.youtube.com/profile?user=macgyvergg

https://www.youtube.com/profile?user=omgheatherface

https://www.youtube.com/profile?user=rebzugo

https://www.youtube.com/profile?user=rosaku

https://www.youtube.com/profile?user=SadieDammit

https://www.youtube.com/profile?user=spricket24

https://www.youtube.com/profile?user=sxephil

https://www.youtube.com/profile?user=thaumata

https://www.youtube.com/profile?user=thehurtone

https://www.youtube.com/profile?user=thepoasm

https://www.youtube.com/profile?user=tinydancer14

https://www.youtube.com/profile_videos?user=TJRScudieri

https://www.youtube.com/profile?user=trixiepixiedixie

https://www.youtube.com/profile?user=Tsuneni77

https://www.youtube.com/profile?user=Urgelt

https://www.youtube.com/xgobobeanx

https://www.youtube.com/profile?user=ysabellabravetalk

https://www.youtube.com/profile?user=ZenArcher