During an experiment, you discover that a certain variable is presenting a high number of outliers. What might this suggest about your data collection process?

  • Both are possible
  • Data collection process is accurate
  • Data collection process is flawed
  • Neither of these is possible
A high number of outliers might suggest that there are issues with the data collection process, such as measurement errors or other issues.

What is the primary cause of outliers in normally distributed data?

  • All of these
  • Data entry errors
  • Data processing errors
  • Measurement errors
Outliers in normally distributed data can be a result of various factors such as data entry errors, measurement errors, or errors in data processing.

In Plotly, the ________ object is the top-level container for all plot attributes.

  • Diagram
  • Figure
  • Graph
  • Plot
In Plotly, the 'Figure' object is the top-level container in which all plot-related attributes such as data and layout are stored.

How does EDA help in understanding the underlying structure of data?

  • By cleaning data
  • By modelling data
  • By summarizing data
  • By visualizing data
EDA, particularly data visualization, plays a crucial role in understanding the underlying structure of data. Visual techniques such as histograms, scatterplots, or box plots, can uncover patterns, trends, relationships, or outliers that would remain hidden in raw, numerical data. Visual exploration can guide statistical analysis and predictive modeling by revealing the underlying structure and suggesting hypotheses.

What are the disadvantages of using backward elimination in feature selection?

  • It assumes a linear relationship
  • It can be computationally expensive
  • It can result in overfitting
  • It's sensitive to outliers
Backward elimination in feature selection involves starting with all variables and then removing the least significant variables one by one. This process can be computationally expensive, especially when dealing with datasets with a large number of features.

How can EDA assist in identifying errors or anomalies in the dataset?

  • By conducting a statistical test of normality
  • By creating a correlation matrix of the variables
  • By running the dataset through a predefined ML model
  • By summarizing and visualizing the data, which can reveal unexpected values or patterns
EDA, especially through summarizing and visualizing data, can assist in identifying errors or anomalies in the dataset. Graphical representations of data often make it easier to spot unexpected values, patterns, or aberrations that may not be apparent in the raw data.

When applying regression imputation, what factors need to be taken into consideration?

  • Both dependent and independent variables
  • None of the variables
  • Only the dependent variable
  • Only the independent variables
When applying regression imputation, both dependent and independent variables need to be taken into consideration. A regression model is built using the complete cases and then this model is used to predict the missing values in the incomplete cases. Therefore, it is important to carefully consider which variables to include in the regression model.

When would it be appropriate to use 'transformation' as an outlier handling method?

  • When the outliers are a result of data duplication
  • When the outliers are errors in data collection
  • When the outliers are extreme but legitimate data points
  • When the outliers do not significantly impact the data analysis
Transformation is appropriate to use as an outlier handling method when the outliers are extreme but legitimate data points that carry valuable information.

Suppose you are comparing the dispersion of two different data sets. One has a higher range, but a lower IQR than the other. What might this tell you about each data set?

  • The one with the higher range has more outliers
  • The one with the higher range has more variability
  • The one with the lower IQR has more variability
  • The one with the lower IQR is more skewed
If one dataset has a higher range but a lower IQR than the other, it could suggest that "The one with the higher range has more outliers". The range is sensitive to extreme values, while the IQR focuses on the middle 50% of data and is not affected by outliers.

What is a primary assumption when using regression imputation?

  • All data is normally distributed
  • Missing data is missing completely at random (MCAR)
  • Missing values are negligible
  • The relationship between variables is linear
A primary assumption when using regression imputation is that the relationship between variables is linear. This is because regression imputation uses a regression model to predict missing values, and the basic form of regression models assumes a linear relationship between predictor and response variables.