├── .gitignore ├── LICENSE ├── README.md ├── big_five_scores.csv ├── big_five_scores.db ├── reports ├── bottom_100_conscientiousness.csv ├── bottom_100_neuroticism.csv ├── bottom_1_percent_agree_all.csv ├── top_100_conscientiousness.csv ├── top_100_neuroticism.csv └── top_1_percent_agree_all.csv ├── scripts └── personaveragetraits.sql └── trait_scoring_keys.csv /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automoto/big-five-data/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automoto/big-five-data/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automoto/big-five-data/HEAD/README.md -------------------------------------------------------------------------------- /big_five_scores.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automoto/big-five-data/HEAD/big_five_scores.csv -------------------------------------------------------------------------------- /big_five_scores.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automoto/big-five-data/HEAD/big_five_scores.db -------------------------------------------------------------------------------- /reports/bottom_100_conscientiousness.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automoto/big-five-data/HEAD/reports/bottom_100_conscientiousness.csv -------------------------------------------------------------------------------- /reports/bottom_100_neuroticism.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automoto/big-five-data/HEAD/reports/bottom_100_neuroticism.csv -------------------------------------------------------------------------------- /reports/bottom_1_percent_agree_all.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automoto/big-five-data/HEAD/reports/bottom_1_percent_agree_all.csv -------------------------------------------------------------------------------- /reports/top_100_conscientiousness.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automoto/big-five-data/HEAD/reports/top_100_conscientiousness.csv -------------------------------------------------------------------------------- /reports/top_100_neuroticism.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automoto/big-five-data/HEAD/reports/top_100_neuroticism.csv -------------------------------------------------------------------------------- /reports/top_1_percent_agree_all.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automoto/big-five-data/HEAD/reports/top_1_percent_agree_all.csv -------------------------------------------------------------------------------- /scripts/personaveragetraits.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automoto/big-five-data/HEAD/scripts/personaveragetraits.sql -------------------------------------------------------------------------------- /trait_scoring_keys.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automoto/big-five-data/HEAD/trait_scoring_keys.csv --------------------------------------------------------------------------------