Comment author: DanielLC 09 December 2012 11:05:10PM 4 points [-]

I came to Alice Springs in late April, and secured a job at a fast-food immediately. They offered me $26/hr after super and penalties.

I find that surprising. If the government has a high minimum wage, they can require the fast-food places to pay that much, but then the jobs would be nigh impossible to get. Why are they that desperate?

Comment author: dbaupp 10 December 2012 12:11:15AM *  5 points [-]

Just for reference, the minimum wage is only $15.96, so this fast food place is actually desperate for workers.

Comment author: dbaupp 08 December 2012 04:40:07PM 7 points [-]

There is some interesting discussion at Hacker News about this article.

In response to comment by V_V on 2012 Survey Results
Comment author: Swimmer963 04 December 2012 04:01:53AM 5 points [-]

most people in the general public don't know Bayes' theorem

Really? What probability do you assign to that statement being true? :D

I assign about 80% probability to less than 25% of adults knowing Bayes theorem and how to use it. I took physics and calculus and other such advanced courses in high school, and graduated never having heard of Bayes' Theorem. I didn't learn about it in university, either–granted, I was in 'Statistics for Nursing', it's possible that the 'Statistics for Engineering' syllabus included it.

Comment author: dbaupp 04 December 2012 11:53:07AM 2 points [-]

Only 80%?

In the USA, about 30% of adults have a bachelor's degree or higher, and about 44% of those have done a degree where I can slightly conceive that they might possibly meet Bayes' theorem (those in the science & engineering and science- & engineering-related categories (includes economics), p. 3), i.e. as a very loose bound 13% of US adults may have met Bayes' theorem.

Even bumping the 30% up to the 56% who have "some college" and using the 44% for a estimate of the true ratio of possible-Bayes'-knowledge, that's only just 25% of the US adult population.

(I've no idea how this extends to the rest of the world, the US data was easiest to find.)

Comment author: gwern 03 December 2012 01:00:19AM *  7 points [-]

Oh yes, that reminds me - I've always wondered if MoR was a waste of time or not in terms of community-building. So let's divide the dataset into people who were referred to LW by MoR and people who weren't...

Summary: they are younger, lower karma, lower karma per month participating (karma log-transformed or not), more likely to be students; but they have the same IQ (self-report & test) as the rest.

So, Eliezer is successfully corrupting the youth, but it's not clear they are contributing very much yet.

R> lw <- read.csv("lw-survey/2012.csv")
R> hpmor <- lw[as.character(lw$Referrals) == "Referred by Harry Potter and the Methods of Rationality",]
R> hpmor <- lw[as.character(lw$Referrals) != "Referred by Harry Potter and the Methods of Rationality",]
R> t.test(hpmor$IQ, hpmor$IQ)
Welch Two Sample t-test
data: hpmor$IQ and hpmor$IQ
t = 0.5444, df = 99.28, p-value = 0.5874
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-2.614 4.591
sample estimates:
mean of x mean of y
139.1 138.1
R> t.test(as.integer(as.character(hpmor$IQTest)), as.integer(as.character(hpmor$IQTest)))
Welch Two Sample t-test
data: as.integer(as.character(hpmor$IQTest)) and as.integer(as.character(hpmor$IQTest))
t = -0.0925, df = 264.8, p-value = 0.9264
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-2.802 2.551
sample estimates:
mean of x mean of y
125.6 125.8
R> t.test(as.numeric(as.character(hpmor$Income)), as.numeric(as.character(hpmor$Income)))
Welch Two Sample t-test
data: as.numeric(as.character(hpmor$Income)) and as.numeric(as.character(hpmor$Income))
t = -4.341, df = 314.3, p-value = 1.917e-05
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-29762 -11197
sample estimates:
mean of x mean of y
33948 54427
R> t.test(hpmor$Age, hpmor$Age)
Welch Two Sample t-test
data: hpmor$Age and hpmor$Age
t = -7.033, df = 484.4, p-value = 6.93e-12
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-5.318 -2.995
sample estimates:
mean of x mean of y
24.51 28.67
R> t.test(as.character(hpmor$WorkStatus) == "Student", as.character(hpmor$WorkStatus) == "Student")
Welch Two Sample t-test
data: as.character(hpmor$WorkStatus) == "Student" and as.character(hpmor$WorkStatus) == "Student"
t = 4.154, df = 389.8, p-value = 4.018e-05
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
0.0791 0.2213
sample estimates:
mean of x mean of y
0.5224 0.3723
R> hpmortime <- hpmor$KarmaScore / as.numeric(as.character(hpmor$TimeinCommunity))
R> hpmortime <- hpmortime[!is.na(hpmortime) & !is.nan(hpmortime) & !is.infinite(hpmortime) ]
R> hpmortime <- hpmor$KarmaScore / as.numeric(as.character(hpmor$TimeinCommunity))
R> hpmortime <- hpmortime[!is.na(hpmortime) & !is.nan(hpmortime) & !is.infinite(hpmortime) ]
R> t.test(hpmortime, hpmortime)
Welch Two Sample t-test
data: hpmortime and hpmortime
t = 1.05, df = 642.7, p-value = 0.2942
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-4.257 14.036
sample estimates:
mean of x mean of y
17.69 12.80
R> hpmortime <- log1p(hpmor$KarmaScore / as.numeric(as.character(hpmor$TimeinCommunity)))
R> hpmortime <- hpmortime[!is.na(hpmortime) & !is.nan(hpmortime) & !is.infinite(hpmortime) ]
R> hpmortime <- log1p(hpmor$KarmaScore / as.numeric(as.character(hpmor$TimeinCommunity)))
R> hpmortime <- hpmortime[!is.na(hpmortime) & !is.nan(hpmortime) & !is.infinite(hpmortime) ]
R> t.test(hpmortime, hpmortime)
Welch Two Sample t-test
data: hpmortime and hpmortime
t = 2.263, df = 396.9, p-value = 0.02416
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
0.03366 0.47878
sample estimates:
mean of x mean of y
1.1978 0.9415
In response to comment by gwern on 2012 Survey Results
Comment author: dbaupp 04 December 2012 11:29:33AM 1 point [-]
R> hpmor <- lw[as.character(lw$Referrals) == "Referred by Harry Potter and the Methods of Rationality",]
R> hpmor <- lw[as.character(lw$Referrals) != "Referred by Harry Potter and the Methods of Rationality",]

Is this a typo? Or some text that was lost in the copy-paste?

Comment author: juliawise 02 December 2012 02:21:16PM 1 point [-]

This would be more helpful if I knew which of those authors wrote which of the books in the great-grandparent.

Comment author: dbaupp 02 December 2012 02:41:51PM 5 points [-]
  • Silver: The Signal and the Noise
  • Ehrman: The Orthodox Corruption of Scripture: The Effect of Early Christological Controversies on the Text of the New Testament
  • Cowen: Create Your Own Economy: The Path to Prosperity in a Disordered World
  • Hayes: Twilight of the Elites: America After Meritocracy
In response to comment by [deleted] on 2012 Survey Results
Comment author: Tripitaka 30 November 2012 10:54:11AM *  1 point [-]

Here is a paper which shows that natural coin tosses are not fair- with a 51:49 bias of the side thats "up" at the beginning. Maybe ask for the probability on an indealized coin toss next year? edit: fixed the markup

Comment author: dbaupp 30 November 2012 12:06:23PM *  3 points [-]

(For the [text](url) link syntax to work, you need the full URL, i.e. including the http:// bit at the start: http://comptop.stanford.edu/preprints/heads.pdf)

In response to 2012 Survey Results
Comment author: dbaupp 29 November 2012 10:09:12PM *  3 points [-]

I think you missed some duplicates in for_public.csv: Rows 26, 30, 761 and 847 are identical to their preceding one.

Comment author: [deleted] 27 November 2012 02:26:08PM 13 points [-]

This has only been a feature request since the forum started.

In response to comment by [deleted] on [META] Retributive downvoting: Why?
Comment author: dbaupp 27 November 2012 03:32:07PM 4 points [-]
Comment author: wuncidunci 26 November 2012 11:20:18PM 7 points [-]

To be fair the Guardian story only references Terminator in the header. The text body is written by Lord Martin Rees and is a short but clear description of X-risk without any sci-fi references. It also focuses more on other X-risks, perhaps a difference in opinion amongst the founders?

Comment author: dbaupp 26 November 2012 11:49:47PM 8 points [-]

("Lord Martin Rees is a British cosmologist and astrophysicist. He has been Astronomer Royal since 1995 and Master of Trinity College, Cambridge since 2004. He was President of the Royal Society between 2005 and 2010". For anyone like me who didn't know.)

Comment author: Viliam_Bur 13 November 2012 08:32:13AM *  3 points [-]

Dozen new links daily, 99% of them submitted by the same person, 99% of them having zero comments... what exactly was the point? Why don't you start a blog instead? Or a Twitter account?

(Note: The last suggestion was serious. Twitter is exactly for this: many links from the same person, without discussion.)

Comment author: dbaupp 13 November 2012 09:36:42AM 8 points [-]

They're trying to seed the subreddit. If there's no content, no one will be interested, and if there's no one subscribed there'll be no content... this technique is a common way to kick start the community.

(It might be worth posting fewer links though, otherwise any discussion that does happen will get lost quickly.)

View more: Prev | Next