Kindly comments on Poll - Is endless September a threat to LW and what should be done? - Less Wrong

4 Post author: Epiphany 08 December 2012 11:42PM

You are viewing a comment permalink. View the original post to see all comments and the full post content.

Comments (259)

You are viewing a single comment's thread.

Comment author: Kindly 09 December 2012 03:51:43PM 8 points [-]

"LessWrong has lost 52% of it's giftedness since March of 2009" is an incredibly sensationalist way of describing a mere 7-point average IQ drop. Especially if the average is dropping due to new users, because then the "giftedness" isn't actually being lost.

Comment author: Nominull 09 December 2012 06:24:15PM 5 points [-]

Well, I agree, but "mere" probably isn't a sensationalist enough way to describe a 7 point drop in IQ.

Comment author: Kindly 09 December 2012 07:49:56PM 2 points [-]

Okay, I agree, maybe that was pushing it a little.

Comment author: [deleted] 13 December 2012 01:42:07PM 1 point [-]

Honestly, so long as the drop is due to lower-IQ people arriving rather than higher-IQ people leaving, I can't see why it's such a big deal -- especially if the “new” people mostly just lurk. Now, if the average IQ of only the people with > 100 karma in the last 30 days was also dropping with time...

Comment author: gwern 09 December 2012 07:00:11PM 4 points [-]

Some absolute figures:

R> lw2009 <- read.csv("2009.csv"); lw2011 <- read.csv("2011.csv"); lw2012 <- read.csv("2012.csv")
R>
R> sum(as.integer(as.character(lw2009$IQ)) > 140, na.rm=TRUE)
[1] 31
R> sum(as.integer(as.character(lw2011$IQ)) > 140, na.rm=TRUE)
[1] 131
R> sum(as.integer(as.character(lw2012$IQ)) > 140, na.rm=TRUE)
[1] 120
R>
R> sum(as.integer(as.character(lw2009$IQ)) > 150, na.rm=TRUE)
[1] 20
R> sum(as.integer(as.character(lw2011$IQ)) > 150, na.rm=TRUE)
[1] 53
R> sum(as.integer(as.character(lw2012$IQ)) > 150, na.rm=TRUE)
[1] 42