You are given a task to represent a complex data set in a visually appealing and easy to understand format for non-technical stakeholders. How would you approach this task?

  • Avoid using colors to keep the graph simple
  • Only use bar graphs, because everyone understands them
  • Use complex graph types to show your technical expertise
  • Use simple and familiar graph types, clear labels, and a thoughtful color scheme
When presenting complex data to non-technical stakeholders, it's best to use simple and familiar graph types, use clear labels and legends, and choose a thoughtful color scheme. Avoid using complex graphs that the audience might not understand, and remember that your goal is to make the data understandable, not to show off your technical skills.

A team member has used a histogram to represent a dataset but the representation seems biased. What could be the potential issue?

  • Improper choice of bin width
  • Poor color choice
  • The data was not cleaned properly
  • The scale of the axes is wrong
One of the most common reasons a Histogram might appear biased is due to an improper choice of bin width. The bin width greatly affects the resulting shape and patterns. If the bins are too wide, important features may be hidden. If they are too narrow, the representation may appear too cluttered or noisy.

______' in the EDA process typically involves cleaning the data and dealing with missing values and outliers.

  • communicating
  • concluding
  • questioning
  • wrangling
'Wrangling' in the EDA process typically involves cleaning the data and dealing with missing values and outliers. This step is crucial for preparing the data for subsequent exploration and analysis.

In the presence of outliers, the ________ correlation coefficient can provide misleading results.

  • Covariance
  • Kendall's Tau
  • Pearson's
  • Spearman's
In the presence of outliers, the Pearson's correlation coefficient can provide misleading results. Pearson's correlation is sensitive to outliers and hence can be significantly affected by them.

Imagine you're dealing with a classification model. The dataset has a significant amount of missing data that was replaced with the mean. How could this decision have impacted the model's performance?

  • It could distort the feature's statistical properties.
  • It could increase the model's accuracy.
  • It could lead to overfitting.
  • It could lead to underfitting.
Replacing missing data with the mean can distort the feature's statistical properties (like variance), which could affect the model's learning and prediction capability.

A data point that lies outside the overall distribution of the dataset is called a(n) _______.

  • Anomaly
  • Error
  • Inlier
  • Outlier
A data point that lies outside the overall distribution of the dataset is called an outlier. These are unusual observations that differ significantly from the other data points.

What does the term "Multicollinearity" refer to in the context of Exploratory Data Analysis?

  • A condition where the independent variables in a regression model are highly correlated
  • A statistical method to determine the correlation between variables
  • Correlation among three or more variables
  • Correlation between two variables
Multicollinearity refers to a situation where two or more independent variables in a multiple regression model are highly correlated. If these variables are closely correlated, it can be hard for the model to determine the effect of each variable independently, which may lead to unstable estimates.

What factors should be considered when assessing the aesthetics of a data visualization?

  • The balance, simplicity, clarity, and color scheme
  • The designer's personal taste
  • The latest trends in data visualization
  • The time it took to create the visualization
Aesthetics in data visualization involve multiple factors including balance (equal weightage to all parts), simplicity (avoiding unnecessary complexity), clarity (clearly understandable), and the color scheme (which can direct attention, represent categories, or express quantities). Good aesthetics make the data easy to understand and the message memorable.

Which method of data imputation is generally most appropriate for MCAR data?

  • Mean/Median imputation
  • Prediction model
  • Random Sample Imputation
  • nan
For MCAR data, Random Sample Imputation is a good choice as it assumes that the data are missing completely at random. It works by taking random observations from the dataset and using these to replace the missing values.

When the data is skewed to the right, the _____ will usually be greater than the median.

  • Mean
  • Median
  • Mode
  • Range
When data is skewed to the right, it means there are a number of observations with large values, which pull the "Mean" up, making it greater than the median.