Baselight

Career Guidance & Entrepreneurial Development

Predictive Career Guidance and Entrepreneurial Development Using AI and ML

@kaggle.ziya07_career_guidance_and_entrepreneurial_development

Career Guidance Dataset
@kaggle.ziya07_career_guidance_and_entrepreneurial_development.career_guidance_dataset

  • 31.82 KB
  • 1000 rows
  • 22 columns
student_id

Student ID

age

Age

gender

Gender

field_of_study

Field Of Study

year_of_study

Year Of Study

university_location

University Location

gpa

GPA

relevant_coursework

Relevant Coursework

prior_employment

Prior Employment

employment_type

Employment Type

entrepreneurial_experience

Entrepreneurial Experience

startup_participation

Startup Participation

career_interests

Career Interests

entrepreneurial_aspirations

Entrepreneurial Aspirations

career_guidance_satisfaction

Career Guidance Satisfaction

recommended_career_path

Recommended Career Path

entrepreneurship_suitability_score

Entrepreneurship Suitability Score

top_recommended_industries

Top Recommended Industries

predicted_job_success_probability

Predicted Job Success Probability

user_satisfaction

User Satisfaction

followed_recommendations

Followed Recommendations

employment_status_post_graduation

Employment Status Post Graduation

S000124FemaleScience4Region A3.641Full-time11DesignHigh7Healthcare11Tech1341Unemployed
S000221FemaleEngineering5Region C2.881Internship1TechLow1Design34Healthcare2061Self-employed
S000328MaleBusiness3Region A2.2611Full-time1DesignHigh6Tech69Tech4210Employed
S000425FemaleBusiness5Region B2.761Internship11FinanceLow6Finance71Finance279Unemployed
S000522MaleLaw2Region A3.2411Part-time11FinanceLow5Business20Education2051Self-employed
S000624FemaleArts3Region C2.911Internship11BusinessMedium2Healthcare60Finance3571Employed
S000727MaleBusiness4Region C3.561Part-time11BusinessLow2Tech34Design2311Self-employed
S000820MaleArts3Region B411Part-time11HealthcareMedium9Healthcare47Finance5391Self-employed
S000924FemaleScience5Region C2.381Part-time1DesignMedium5Design14Healthcare376Self-employed
S001028OtherEngineering1Region B2.921Part-time1HealthcareHigh5Tech70Healthcare164Employed

CREATE TABLE career_guidance_dataset (
  "student_id" VARCHAR,
  "age" BIGINT,
  "gender" VARCHAR,
  "field_of_study" VARCHAR,
  "year_of_study" BIGINT,
  "university_location" VARCHAR,
  "gpa" DOUBLE,
  "relevant_coursework" BIGINT,
  "prior_employment" BIGINT,
  "employment_type" VARCHAR,
  "entrepreneurial_experience" BIGINT,
  "startup_participation" BIGINT,
  "career_interests" VARCHAR,
  "entrepreneurial_aspirations" VARCHAR,
  "career_guidance_satisfaction" BIGINT,
  "recommended_career_path" VARCHAR,
  "entrepreneurship_suitability_score" BIGINT,
  "top_recommended_industries" VARCHAR,
  "predicted_job_success_probability" BIGINT,
  "user_satisfaction" BIGINT,
  "followed_recommendations" BIGINT,
  "employment_status_post_graduation" VARCHAR
);