Survey Academics
Subjective happiness, tenure index and ref tool usage
@kaggle.harriken_survey_academics
Subjective happiness, tenure index and ref tool usage
@kaggle.harriken_survey_academics
to cite this data set: J. Berengueres and P. Nesterov, “A Survey of H-index, Stress, Tenure & Reference Management software use in Academia.” https://arxiv.org/abs/2010.00358v3 https://arxiv.org/abs/2010.00358v3
Recommendation feeds are already found in the likes of GoogleScholarTM and ResearchGateTM. However, given the popularization of these tools, it is worth considering their impact on research and researchers. Surprisingly, very little is known about the impact of these tools on academic performance, productivity or well-being of their users. Are academics that use reference management tools more productive? Are they happier? A literature search yields very few results. [12] evaluated ethical conflicts of interest found in Google Scholar algorithms; [13] compared the existing tools; [14] investigated how ResearchGate metrics can be used to infer the performance of a researcher. However, none considers the well-being of researchers.
Data of the survey was collected from 2020-07-09 to 2020-09- 28. The data was generated by emailing authors who had authored or co-authored at least one paper in a popular preprint server service in the past 3 years (Arxiv)[15]. In total, 2286 responses were collected. The survey consisted of 10 questions.
We would like to thank Cenk Dominic Özbakır for technical support and to the participants in the survey. In particular the ones whose feedback helped improve the design of the survey.
Your data will be in front of the world's largest data science community. What questions do you want to see answered?
CREATE TABLE bycountry (
"stress" BIGINT,
"hindex" DOUBLE,
"tenured" BOOLEAN,
"subjective_happyness" DOUBLE,
"country" VARCHAR,
"tenure_age" BIGINT
);
CREATE TABLE survey_mental_health (
"unnamed_0" BIGINT -- Unnamed: 0,
"timestamp" VARCHAR,
"how_stressed_are_you_because_of_work" DOUBLE -- How Stressed Are You Because Of Work?,
"what_is_your_h_index" DOUBLE -- What Is Your H-index?,
"subjectivehappinessindex" VARCHAR,
"at_what_age_did_you_got_tenure_type_0_if_not_yet" DOUBLE -- At What Age Did You Got Tenure? (type 0 If Not Yet),
"following_are_4_questions_about_subjective_happiness_1_36cb9279" DOUBLE -- Following Are 4 Questions About Subjective Happiness... 1. In General, I Consider Myself...,
"n_2_compared_with_most_of_my_peers_i_consider_myself" DOUBLE -- 2. Compared With Most Of My Peers, I Consider Myself:,
"n_3_some_people_are_generally_very_happy_they_enjoy_li_9e1400ac" DOUBLE -- 3. Some People Are Generally Very Happy. They Enjoy Life Regardless Of What Is Going On, Getting The Most Out Of Everything. To What Extent Does This Characterization Describe You?,
"n_4_some_people_are_generally_not_very_happy_although__5f026d1c" DOUBLE -- 4. Some People Are Generally Not Very Happy. Although They Are Not Depressed, They Never Seem As Happy As They Might Be. To What Extent Does This Characterization Describe You?,
"do_you_use_any_reference_management_tool_mendeley_zote_6ef0c9fa" DOUBLE -- Do You Use Any Reference Management Tool? ( Mendeley, Zotero, Citationsy, ... ),
"would_you_like_to_help_in_a_next_survey" VARCHAR -- Would You Like To Help In A Next Survey ?,
"your_role_is" VARCHAR -- Your Role Is...,
"any_other_comments_suggestions_or_questions_you_d_add" VARCHAR -- Any Other Comments, Suggestions, Or Questions You\u0027d Add...,
"ref" VARCHAR,
"an_email_for_follow_up_in_a_few_months" VARCHAR,
"before_we_start_the_survey_we_need_your_consent" VARCHAR -- Before We Start The Survey, We Need Your Consent.,
"would_you_like_to_help_in_a_next_survey_in_a_few_months_time" VARCHAR -- Would You Like To Help In A Next Survey (in A Few Months Time) ?,
"email" VARCHAR,
"title_length_ceil10" DOUBLE,
"subject_1" VARCHAR,
"subject_2" VARCHAR,
"subject_3" VARCHAR,
"subject_4" VARCHAR
);
CREATE TABLE survey_mental_health_furthernonimized (
"unnamed_0" BIGINT -- Unnamed: 0,
"timestamp" VARCHAR,
"how_stressed_are_you_because_of_work" DOUBLE -- How Stressed Are You Because Of Work?,
"what_is_your_h_index" DOUBLE -- What Is Your H-index?,
"subjectivehappinessindex" VARCHAR,
"at_what_age_did_you_got_tenure_type_0_if_not_yet" DOUBLE -- At What Age Did You Got Tenure? (type 0 If Not Yet),
"following_are_4_questions_about_subjective_happiness_1_36cb9279" DOUBLE -- Following Are 4 Questions About Subjective Happiness... 1. In General, I Consider Myself...,
"n_2_compared_with_most_of_my_peers_i_consider_myself" DOUBLE -- 2. Compared With Most Of My Peers, I Consider Myself:,
"n_3_some_people_are_generally_very_happy_they_enjoy_li_9e1400ac" DOUBLE -- 3. Some People Are Generally Very Happy. They Enjoy Life Regardless Of What Is Going On, Getting The Most Out Of Everything. To What Extent Does This Characterization Describe You?,
"n_4_some_people_are_generally_not_very_happy_although__5f026d1c" DOUBLE -- 4. Some People Are Generally Not Very Happy. Although They Are Not Depressed, They Never Seem As Happy As They Might Be. To What Extent Does This Characterization Describe You?,
"do_you_use_any_reference_management_tool_mendeley_zote_6ef0c9fa" DOUBLE -- Do You Use Any Reference Management Tool? ( Mendeley, Zotero, Citationsy, ... ),
"would_you_like_to_help_in_a_next_survey" VARCHAR -- Would You Like To Help In A Next Survey ?,
"your_role_is" VARCHAR -- Your Role Is...,
"any_other_comments_suggestions_or_questions_you_d_add" VARCHAR -- Any Other Comments, Suggestions, Or Questions You\u0027d Add...,
"ref" VARCHAR,
"an_email_for_follow_up_in_a_few_months" VARCHAR,
"before_we_start_the_survey_we_need_your_consent" VARCHAR -- Before We Start The Survey, We Need Your Consent.,
"would_you_like_to_help_in_a_next_survey_in_a_few_months_time" VARCHAR -- Would You Like To Help In A Next Survey (in A Few Months Time) ?,
"email" VARCHAR,
"title_length_ceil10" DOUBLE,
"subject_1" VARCHAR,
"subject_2" VARCHAR,
"subject_3" VARCHAR,
"subject_4" VARCHAR
);
Anyone who has the link will be able to view this.