Advertisements
Advertisements
प्रश्न
Which of the following can be used to specify the data while creating a DataFrame?
पर्याय
Series
List of Dictionaries
Structured ndarray
All of these
उत्तर
All of these
APPEARS IN
संबंधित प्रश्न
Case Based
Consider the following DataFram df and answer the following question.
Roll no. | Name | UT1 | UT2 | UT3 | UT4 |
1 | Prerna Singh | 24 | 24 | 20 | 22 |
2 | Manish Arora | 18 | 17 | 19 | 22 |
3 | Tanish Geol | 20 | 22 | 18 | 24 |
4 | Falguni Jain | 22 | 20 | 24 | 20 |
Write down the command that will give the following output.
Roll no. | 6 |
Name | Tanish Geol |
UT1 | 24 |
UT2 | 24 |
UT3 | 24 |
UT4 | 24 |
dtype: object
Case Based
Consider the following DataFram df and answer the following question.
Roll no. | Name | UT1 | UT2 | UT3 | UT4 |
1 | Prerna Singh | 24 | 24 | 20 | 22 |
2 | Manish Arora | 18 | 17 | 19 | 22 |
3 | Tanish Geol | 20 | 22 | 18 | 24 |
4 | Falguni Jain | 22 | 20 | 24 | 20 |
Which of the following command will display the column of the DataFrame?
______ function is used to delete an element from series.
Write a single line command to calculate 10% from ‘sale’ column from dataframe df and assign to new column ‘Commission’.
Which one is the incorrect option to add a new column using insert() in the last place(3rd place) named “Salary” from the list Sal=[10000,15000,20000] in an existing dataframe named EMP already having 2 columns?
Assertion (A): DataFrame has both a row and column index.
Reasoning (R): A DataFrame is a two-dimensional labelled data structure like a table of MySQL.
Carefully observe the following code:
import pandas as pd
Year1 = {'Q1':5000,'Q2':8000,'Q3':12000,'Q4': 18000} Year2 = {'A' :13000,'B':14000,'C':12000}
totSales = {1:Year1,2:Year2}
df = pd.DataFrame(totSales)
print(df)
Answer the following:
- List the index of the DataFrame df
- List the column names of DataFrame df.
Consider the given DataFrame ‘Stock’:
Name | Price | |
0 | Nancy Drew | 150 |
1 | Hardy boys | 180 |
2 | Diary of a wimpy kid | 225 |
3 | Harry Potter | 500 |
Write suitable Python statements for the following:
- Add a column called Special_Price with the following data: [135,150,200,440].
- Add a new book named ‘The Secret' with a price of 800.
- Remove the column Special_Price.
Mr. Som, a data analyst has designed the DataFrame df that contains data about Computer Olympiad with ‘CO1’, ‘CO2’, ‘CO3’, ‘CO4’, and ‘CO5’ as indexes shown below. Answer the following questions:
School | Tot_students | Topper | First_Runnerup | |
CO1 | PPS | 40 | 32 | 8 |
CO2 | JPS | 30 | 18 | 12 |
CO3 | GPS | 20 | 18 | 2 |
CO4 | MPS | 18 | 10 | 8 |
CO5 | BPS | 28 | 20 | 8 |
- Predict the output of the following python statement:
i. df.shape
ii. df[2:4] - Write a Python statement to display the data of the Topper column of indexes CO2 to CO4.
OR
Write a Python statement to compute and display the difference of data of the Tot_students column and First_Runnerup column of the above given DataFrame.