Baselight

OCEAN Five Factor Personality Test Responses

Open sourced raw data from Openpsychometrics.org

@kaggle.lucasgreenwell_ocean_five_factor_personality_test_responses

Data
@kaggle.lucasgreenwell_ocean_five_factor_personality_test_responses.data

  • 462.72 KB
  • 19719 rows
  • 57 columns
race

Race

age

Age

engnat

Engnat

gender

Gender

hand

Hand

source

Source

country

Country

e1

E1

e2

E2

e3

E3

e4

E4

e5

E5

e6

E6

e7

E7

e8

E8

e9

E9

e10

E10

n1

N1

n2

N2

n3

N3

n4

N4

n5

N5

n6

N6

n7

N7

n8

N8

n9

N9

n10

N10

a1

A1

a2

A2

a3

A3

a4

A4

a5

A5

a6

A6

a7

A7

a8

A8

a9

A9

a10

A10

c1

C1

c2

C2

c3

C3

c4

C4

c5

C5

c6

C6

c7

C7

c8

C8

c9

C9

c10

C10

o1

O1

o2

O2

o3

O3

o4

O4

o5

O5

o6

O6

o7

O7

o8

O8

o9

O9

o10

O10

3531111US42525143511525111111151523154541515141454131514255
13461211US22333315152342343224133444234341323151443333233132
1142211PK51145115515155555555515515155541515151554551515555
3192211RO25243434455442455545254435344333451454234352425255
11252212US31333131353334333334553515155531533113333111313153
13311212US15241324151545144152223434355325433453534213355453
5201215US51515154412424223222551515154524333333333151414334
4232112IN43535143431444111111251433134542514141353151415325
5391234US31515152532453355433151515155443525252433353515345
3181215US14252414155252343234231424333252423242444252414344

CREATE TABLE data (
  "race" BIGINT,
  "age" BIGINT,
  "engnat" BIGINT,
  "gender" BIGINT,
  "hand" BIGINT,
  "source" BIGINT,
  "country" VARCHAR,
  "e1" BIGINT,
  "e2" BIGINT,
  "e3" BIGINT,
  "e4" BIGINT,
  "e5" BIGINT,
  "e6" BIGINT,
  "e7" BIGINT,
  "e8" BIGINT,
  "e9" BIGINT,
  "e10" BIGINT,
  "n1" BIGINT,
  "n2" BIGINT,
  "n3" BIGINT,
  "n4" BIGINT,
  "n5" BIGINT,
  "n6" BIGINT,
  "n7" BIGINT,
  "n8" BIGINT,
  "n9" BIGINT,
  "n10" BIGINT,
  "a1" BIGINT,
  "a2" BIGINT,
  "a3" BIGINT,
  "a4" BIGINT,
  "a5" BIGINT,
  "a6" BIGINT,
  "a7" BIGINT,
  "a8" BIGINT,
  "a9" BIGINT,
  "a10" BIGINT,
  "c1" BIGINT,
  "c2" BIGINT,
  "c3" BIGINT,
  "c4" BIGINT,
  "c5" BIGINT,
  "c6" BIGINT,
  "c7" BIGINT,
  "c8" BIGINT,
  "c9" BIGINT,
  "c10" BIGINT,
  "o1" BIGINT,
  "o2" BIGINT,
  "o3" BIGINT,
  "o4" BIGINT,
  "o5" BIGINT,
  "o6" BIGINT,
  "o7" BIGINT,
  "o8" BIGINT,
  "o9" BIGINT,
  "o10" BIGINT
);