Quiz Python Effective Programming Week 2
Quiz Python Effective Programming Week 2
4. What is required to select a specific data of a specific well name in the dataframe?
a. Using a mask by inputting the well name, then apply to dataframe
b. Using a mask by deleting unwanted columns, then filter by well name
c. Deleting manually the unwanted rows, then apply to dataframe
d. It can only be done in Excel
10. If the date from Excel is written as “19-Mar-97”, what is the appropriate Pandas datetime
format?
a. “%m-%d-%y”
b. “%M-%d-%y”
c. “%d-%B-%Y”
d. “%d-%b-%y”
11. What information is NOT contained in summary statistics? (Answers more than 1)
a. Minimum and maximum value
b. Mean
c. Median
d. 25th, 50th, and 75th percentiles
e. 15th, 50th, and 95th percentiles
f. Variance
g. Standard deviation
12. These are part of activities done in data analysis, EXCEPT … (Answers more than 1)
a. Data pre-processing that includes handling missing values
b. Statistical analysis using summary statistics
c. Interpolation to see trends in our data
d. Loading data from source (website, database, etc)
e. Analyzing data distribution using histogram
f. Machine learning