Given the following code for histogram:
df.plot(kind='hist', edgecolor="Green", linewidth=2, linestyle='-', fill=False, hatch='o')
What is the role of fill=False?
fill=False
Given the following series ser1:
ser1
State the output of the following command:
print(ser1 >= 70)
Given the following DataFrame df:
df
Select the correct commands from the following to display the last five rows:
Given the following relations:
Table A
TableB
Find \( \text{TableA} \cup \text{TableB} \).
Given the following statement: import matplotlib.pyplot as plt 'plt' in the above statement is .............. name.
import matplotlib.pyplot as plt
'plt'
count(marks)
count()
avg(marks)
sum(marks)
Which of the following are the correct commands to delete a column from the DataFrame df1?
df1
Give the output of the query: SELECT MONTH("2010-03-05");
Given the following table:
State the output of the following query:
SELECT COUNT(SALARY) FROM EMPLOYEE;