0% found this document useful (0 votes)
31 views2 pages

Eda Questions

wow

Uploaded by

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

Eda Questions

wow

Uploaded by

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

EDA QUESTIONS

SECTION A – 2*4 = 8 marks

1. What is EDA?
2. How to convert a variable to a different data type?
3. What are the types of EDA methods?
4. What are the different packages available for EDA in python?
5. How to create histogram plots in python?

SECTION B – 3*5 = 15 marks

6. What is grouping of data in EDA?


7. What are the types of charts used in EDA?
8. How to load data ?
9. What is the function of df.describe in python?
10.Explain data cleansing process?
11.Write the processes in EDA?

SECTION C – 1*7 = 7 marks

Step1: Import Data with Pandas

Step 2 : Read the input dataset and print few lines and show its shape

Step3: Indexing Data Frames with Pandas using iloc

# prints first 5 rows and every column which replicates df.head()

df.iloc[0:5,:]

# prints entire rows and columns

df.iloc[:,:]

# prints from 5th rows and first 5 columns

df.iloc[5:,:5]
Step4 : Indexing Using Labels in Pandas

# prints first five rows including 5th index and every columns of df

# prints from 5th rows onwards and entire columns

Step5: DataFrame Math with Pandas

# computes various summary statistics, excluding NaN values

# computing correlations

# computes numerical data ranks

Step 6: Pandas Plotting – use scatter plot and check for outlier give inference

  

You might also like