Posts
Showing posts from July, 2022
- Get link
- X
- Other Apps
Data Analysis with Python -> week 5 -> Graded Quiz: Model Refinement What type of file allows data to be saved in a tabular format? html csv pdf 2.What Python library is used forstatistical modelling including regression and classification? Numpy Scikit-learn Matplotlib 3.In order to read any data using Python Pandas package what are the 2 most important factors? File types and format Format and file path Encoding scheme and file path 4.What does the tail() method return? It returns the first five rows It returns the data types of each column It returns the last five rows 5.According to this course datasets can be stored where? Sometimes online or server Server or local machine local machine or sometimes online 6. The Pandas library is mostly used for what? Machine learning Data analysis Data visualization 7.How would you check the bottom 10 rows of dataframe df? df.head() df.tail() df.tail(10) 8. What does the following code segment perform in a dataframe? df.dropna(subset...
Machine Learning with Python -> Classification -> week 3
- Get link
- X
- Other Apps
Machine Learning with Python -> Classification -> week 3 1. Which of the following examples is/are a sample application of Logistic Regression? (select all that apply) The probability that a person has a heart attack within a specified time period using the person's age and sex. Customer's propensity to purchase a product or halt a subscription in marketing applications. Estimating the blood pressure of a patient based on her symptoms and biographical data. Likelihood of a homeowner defaulting on a mortgage. 2. Which one is TRUE about the kNN algorithm? kNN is a classification algorithm that takes a bunch of unlabelled points and uses them to learn how to label other points. kNN algorithm can be used to estimate values for a continuous target. Question 3 3. What is " information gain " in decision trees? Question 3 What is " information gain " in decision trees? It is the information that can decrease the level of certainty after splitting in each...