families is a data frame consisting of records about familie…
families is a data frame consisting of records about families, including their number of children and their income (on a scale of 0 – 9). What expression returns a DataFrame containing all records where the family has more than 2 children and all records where the family’s income is above 7?
Read DetailsThe pandas DataFrame candidates has, among other columns, th…
The pandas DataFrame candidates has, among other columns, the name of applicants for a job opening and a logical (or Boolean) column named complete which indicates whether or not the candidate’s application is complete. Which expression returns a DataFrame consisting of all candidates with complete applications?
Read DetailsThe DataFrame df contains, among other columns, a column rep…
The DataFrame df contains, among other columns, a column representing the salary of each entry in the data. To return a DataFrame sorted by salary, you use: df.sort_values(‘salary’) What is the best way to modify this statement such that the record with the highest salary appears first in the output?
Read DetailsThe case study dealing with Bernard Ebbers shows that white…
The case study dealing with Bernard Ebbers shows that white collar criminals such as Mr. Ebbers can steal enormous sums of money through devious means, but garner very little time in jail even after they have been caught and convicted.
Read Details