118k views
5 votes
Create and assign your own dataset. In this dataset, you are free to use any name of row and columns. Create 4 columns and 6 row in the dataset. For example: Create a student dataset. In this dataset, you can give column names as student id, gender, height, average grade and department.

User Kazem
by
8.3k points

1 Answer

2 votes

Below is a hypothetical dataset with 4 columns and 6 rows:

Student ID Name Gender Age Department

1 John Male 20 Computer Science

2 Jane Female 19 Mathematics

3 Peter Male 21 Business

4 Mary Female 18 Economics

5 David Male 19 English

6 Sarah Female 20 History

So based on the above, Column 1: Student ID is the column that is an identifier for each student. Each student is assigned a unique student ID, which is a number.

Column 2 is the column lists the name of each student. Each student's name is a string of characters.

Column 3 is known to be the column that indicates the gender of each student. Each student's gender is either "Male" or "Female".

User Kwichz
by
7.7k points
Welcome to QAmmunity.org, where you can ask questions and receive answers from other members of our community.