Fluttershy comments on 2016 LessWrong Diaspora Survey Analysis: Part One (Meta and Demographics) - Less Wrong

19 Post author: ingres 14 May 2016 06:09AM

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

Comments (16)

You are viewing a single comment's thread.

Comment author: Fluttershy 17 May 2016 05:48:40PM 1 point [-]

Hat tip goes to an anonymous friend of mine who had been playing around with the survey data, and noticed that all MtF and FtM trans survey respondents reported being bisexual.

Comment author: username2 18 May 2016 04:22:14AM *  5 points [-]

I'm sorry, that can't be right. In the most recent public data, there are 11 homosexual MtFs, 3 homosexual FtMs, and 1 heterosexual FtM, not to mention the respondents who chose "Other". In Python:

 >>> import pandas as pd
>>> survey = pd.read_csv('2016_lw_survey_public_release_3.csv')
>>> print survey.groupby('Gender')['SexualOrientation'].value_counts()

After dropping the rows where the IQ was lower than 80 or higher than 190, age lower than 14 or higher than 60, and income higher than 300,000, and dropping the rows where the IQ, age or income were N/A, there still remain 5 homosexual MtFs and a couple pansexuals. Perhaps your anonymous friend was somewhat aggressive in pruning the data?

Comment author: Fluttershy 18 May 2016 07:41:40PM *  0 points [-]

Good job on catching that, and thank you for mentioning it :)