0% found this document useful (0 votes)
11 views3 pages

DT-1 Sample Worksheet

Uploaded by

sandippan52
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views3 pages

DT-1 Sample Worksheet

Uploaded by

sandippan52
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

University Institute of Engineering

Department of Computer Science & Engineering

Experiment:

Student Name: DEEPANK UID:


Branch: Computer Science & Engineering Section/Group:
Semester: Date of Performance:
Subject Name:
Subject Code:

1. Aim of the practical:1(a) EXPLORING PANDAS AND NUMPY LIBRARY FOR

2. Tool Used:

3. Basic Concept/ Command Description: NumPy: NumPy stands for ‘Numerical Python’
or ‘Numeric Python’. It is an open source module of Python which provides fast
mathematical computation on arrays and matrices. Since, arrays and matrices are an
essential part of the Machine Learning ecosystem, NumPy along with Machine Learning

Pandas: Pandas is one of the most widely used python libraries in data science. It provides

object called Dataframe. It is like a spreadsheet with column names and row labels.

4. Code:
import pandas as pd

df = pd.read_csv('/content/drive/MyDrive/Colab
Notebooks/airline kaggle dataset.csv')
University Institute of Engineering
Department of Computer Science & Engineering

df.head()
df.tail()
df[0:9]
df.dtypes
df.decribe
df.max()
df.min()
df.std()
df.shape
df.size
df.ndim
df.axes

import numpy as np

5. Observations, Simulation Screen Shots and Discussions: {screenshots}

6. Result and Summary: WE CAN READ THE DATASET THROUGH PANDA


AND NUMPY LIBRARY

7. Additional Creative Inputs (If Any):

Learning outcomes (What I have learnt):

1. use of pandas library

2. use of numpy library


3……………………
University Institute of Engineering
Department of Computer Science & Engineering

4.

5.

Evaluation Grid (To be filled by Faculty):


Sr. No. Parameters Marks Obtained Maximum Marks
1. Student Performance (task 12
implementation and result evaluation)
2. Viva-Voce 10
3. Worksheet Submission (Record) 8
Signature of Faculty (with Date): Total Marks Obtained: 30

You might also like