What kind of data types do you know?
Numerical (or quantitv):
discrete data: countable
continuous data: measurable (length, weight, temperature)
Categorical (or qualitiv)
nominal data: if you can brand it, tick it off in a checkbox (gender, color)
oridnal data: if you can rank or order it ( eg. a checkbox with options -> bad, okay, good, very good)
Which data type is the preferred one and why?
= numercial, because
arithmetic operations are possible
enumeration is possible
consistent interval differences
suitable for statistical analysis
visualization possible: pie charts, bar charts, various plots
-> if data is not numerical we often transform it to a numerical data type
How can you use oridnal data?
arithmetic operations are not possible
no consistent interval differences
partly suitable for statistical analysis (eg. test statistics, regression)
visualization possible: pie charts, bar charts, tables
-> can often be converted to a numerical scale (with assumptions)
How can you use nominal data?
enumeration is not possible
-> often converted to a numerical data by One-hot-encoding
What is One-hot-encoding?
technique to transform categorical into numerical features
Example: matrix of cat, dog, mouse as feature with one when true
What is the difference between structured and unstructured data
structured: well defined and highly organized (e.g. SQL requests)
unstructured: can be anything that is not in a specific format (e.g. audio or video format, emails)
both data types eed preprocessing/ feature extraction
Which data formats do you know?
CSV: comma separated values
JSON: JavaScript Object Notation
What is a data frame?
it is a table or a 2D array-like structure
visualization can be done with package pandas
data frames can be created from dictionaries or importing files such as CSVs
What are the principles of EDA (Exploratory data analysis)
A plot or table conveys a message
Show the data (use appropriate plot and plot should be clear
Compare things directly (Plot on the same graph and plot (log) ratio)
Be careful with scale (use of common scales and consider starting a zero)
What are the most common plotting mistakes?
no proper axes description
comparing without using the same sclae for the x or y axis
inconsistent use of color
too much information in one plot
What does the mean describe?
sample mean (dt. Stichprobenmittelwert)
is the maximum likelihood estimator for the expected value of the gaussian distribution (für den Erwartungswert einer normalverteilten Grundgesamtheit)
What a are problems to consider when using the sample mean?
certainty (Konfindenzniveau): depends on the number of underlying samples -> use with standard deviation or percentiles
not robust (highly sensitiv to outliers) -> consider using median
often oversimplyfying complex relationships -> start with mean or median, the go more complex if need
What does the standard deviation and standard error (of the mean) describe?
standard deviation: measure of variability of data
standard error (of the mean): its quality also depends on the number of samples (explanation missing)
What are percentiles?
= the x-th percentile means that x% of values fall at or below that number.
What is stratification
the process of classifying your data into different groups so you can do separate analyses
typically by age, gedenr, ethnicity, income, education etc.
Describe the common confusion between
Example: My classifier went from 30% to 60% accuracy
Its accuracy increased by 30 percentage points
it i 100% more accurate
What are the steps of a typical data science process
Business problem: Who is user, stakeholder? What are their pain points?
proof if value: Is it possible to solve the problem?
MVP (minimal viable product): How would the customer use the solution?
Product definition: Clear product vision, Roadmap, Budget
How can genAI support within these process steps?
Business problem: used as a challenger, for documentation
proof if value: sparring partner, accelerator
MVP (minimal viable product): Builder or Multiplier
Product definition: Documentation, Mock Ups, Requirements
Last changed5 days ago