Archive for August, 2010

Study Finds Nearly One Million Children in U.S. Potentially Misdiagnosed With ADHD

Source: http://www.sciencedaily.com/releases/2010/08/100817103342.htm?sms_ss=reddit

Nearly 1 million children in the United States are potentially misdiagnosed with attention deficit hyperactivity disorder simply because they are the youngest — and most immature — in their kindergarten class, according to new research by a Michigan State University economist.

These children are significantly more likely than their older classmates to be prescribed behavior-modifying stimulants such as Ritalin, said Todd Elder, whose study will appear in a forthcoming issue of the Journal of Health Economics.

Such inappropriate treatment is particularly worrisome because of the unknown impacts of long-term stimulant use on children’s health, Elder said. It also wastes an estimated $320 million-$500 million a year on unnecessary medication — some $80 million-$90 million of it paid by Medicaid, he said.

Elder said the “smoking gun” of the study is that ADHD diagnoses depend on a child’s age relative to classmates and the teacher’s perceptions of whether the child has symptoms.

“If a child is behaving poorly, if he’s inattentive, if he can’t sit still, it may simply be because he’s 5 and the other kids are 6,” said Elder, assistant professor of economics. “There’s a big difference between a 5-year-old and a 6-year-old, and teachers and medical practitioners need to take that into account when evaluating whether children have ADHD.”

ADHD is the most commonly diagnosed behavioral disorder for kids in the United States, with at least 4.5 million diagnoses among children under age 18, according to the Centers for Disease Control and Prevention.

However, there are no neurological markers for ADHD (such as a blood test), and experts disagree on its prevalence, fueling intense public debate about whether ADHD is under-diagnosed or over-diagnosed, Elder said.

Using a sample of nearly 12,000 children, Elder examined the difference in ADHD diagnosis and medication rates between the youngest and oldest children in a grade. The data is from the Early Childhood Longitudinal Study Kindergarten Cohort, which is funded by the National Center for Education Statistics.

According to Elder’s study, the youngest kindergartners were 60 percent more likely to be diagnosed with ADHD than the oldest children in the same grade. Similarly, when that group of classmates reached the fifth and eighth grades, the youngest were more than twice as likely to be prescribed stimulants.

Overall, the study found that about 20 percent — or 900,000 — of the 4.5 million children currently identified as having ADHD likely have been misdiagnosed.

Elder used the students’ birth dates and the states’ kindergarten eligibility cutoff dates to determine the youngest and oldest students in a grade. The most popular cutoff date in the nation is Sept. 1, with 15 states mandating that children must turn 5 on or before that date to attend kindergarten.

The results — both from individual states and when compared across states — were definitive. For instance, in Michigan — where the kindergarten cutoff date is Dec. 1 — students born Dec. 1 had much higher rates of ADHD than children born Dec. 2. (The students born Dec. 1 were the youngest in their grade; the students born Dec. 2 enrolled a year later and were the oldest in their grade.)

Thus, even though the students were a single day apart in age, they were assessed differently simply because they were compared against classmates of a different age set, Elder said.

In another example, August-born kindergartners in Illinois were much more likely to be diagnosed with ADHD than Michigan kindergartners born in August of the same year as their Illinois counterparts. That’s because Illinois’ kindergarten cutoff date is Sept. 1, meaning those August-born children were the youngest in their grade, whereas the Michigan students were not.

According to the study, a diagnosis of ADHD requires evidence of multiple symptoms of inattention or hyperactivity, with these symptoms persisting for six or more months — and in at least two settings — before the age of seven. The settings include home and school.

Although teachers cannot diagnose ADHD, their opinions are instrumental in decisions to send a child to be evaluated by a mental health professional, Elder said.

“Many ADHD diagnoses may be driven by teachers’ perceptions of poor behavior among the youngest children in a kindergarten classroom,” he said. “But these ‘symptoms’ may merely reflect emotional or intellectual immaturity among the youngest students.”

The paper will be published in the Journal of Health Economics in conjunction with a related paper by researchers at North Carolina State University, Notre Dame and the University of Minnesota that arrives at similar conclusions as the result of a separate study.

Share

Scheduling Defragment on NT AUTHORITY\SYSTEM

I would write a script for this, but I don’t know enough to do it. If this is scheduled on <ComputerName>\Administrator, the scheduled task has to be updated every time the computer’s name is changed (specifically the user login Windows should use to run the task — it doesn’t update the username field if you change the computer name). This way no password is being used or potentially exposed (although the chances of that happening are probably none), and the task is essentially running almost like a Windows service by Windows.

Additionally, this will keep your machine or workstations defragmented (assuming you leave them on all night or let it run an all-nighter once a week). Using Diskeeper’s own network-based disk fragmentation analyzer, I have found that Microsoft’s built-in defragmenter works just as well as Diskeeper. The only advantage to Diskeeper would be that it defragments on the go, essentially eliminating fragmentation in the first place.

Open cmd.

(Type the following)
net start “Task Scheduler”

(Change 00:00 to CurrentTime+00:01 — this is in military time)
at 00:00 /interactive C:\WINDOWS\system32\cmd.exe

(Wait for a new cmd.exe to pop up, and type the following in the new cmd.exe)
schtasks /Create /RU “SYSTEM” /SC DAILY /TN “Defragment” /TR “C:\WINDOWS\system32\defrag.exe C:” /ST 00:00:00

Go to Start –> Control Panel –> Scheduled Tasks.

Right click on “Defragment” and select Properties.

Go to the Settings tab and uncheck “Delete the task if it is not scheduled to run again.

Change “Stop the task if it runs for” to 6 hours.

Check “Don’t start the task if the computer is running on batteries” and “Stop the task if battery mode begins.

Click on Apply and then OK.

Close the two cmd instances.

There is also a way to schedule it through your network on to other workstations using PsExec.

psexec \\NameOfRemoteComputer -u NetworkName\Administrator -p NetworkAdminPasswordHere -s schtasks /Create /RU “SYSTEM” /SC DAILY /ST 00:00:00 /TN Defragment /TR “C:\WINDOWS\system32\defrag.exe C:”

Share