Chart using .csv data
I have created a simple .csv file with student details (admin_nbr, first_name, last_name, course_of_study) and filled in a few student's details into the .csv file.
I want to create a pie chart or a bar graph showing there's how many students in each course...
For example my student.csv file contains the following information:
admin_nbr, first_name, last_name, course_of_study;
062878E, Catherine, Tok, Information Technology;
078955D, Desiree, Lam, Information Technology;
068594E, Stella, Koay, Business Informatics;
080504E, Angeline, Lim, Marketing;
075959C, Benedict, Chan, Business Informatics;
I want a pie chart:
To show that there's 2 information technology student, 2 business informatics student and 1 marketing student..
Or a bar graph similar as above. How can I do that? Which should I put in x-axis, y-axis and must I aggregate or anything? Please advise me my proj is going to due in less than 24hrs time.
Thanks.
Catherine