Skip to main content

Some practice case interview questions for data science

In Part 1 of my KDnuggets article, I explained what hiring managers mean when they look for critical thinking in the arena of data science and analytics. These requirements relate to the nature of data problems found in industry and business settings. The datasets are generally observational, self-selected, non-random, with hidden biases, and increasingly OCCAM (link); the business leaders have high-level objectives ("we want to increase customer loyalty"). The data scientist/analyst is the person in the "middle," trying to figure out how to make the problem precise, and solvable by a systematic analysis of available data. In Part 2, I offer some practice case interview questions, based on three recent news events the college admissions scandal IPOs of ride-sharing companies like Lyft and Uber the Blue Apron post-IPO doldrums. Long a staple of the management consulting hiring process, the case interview is a free-flowing dialogue between the interviewer and the interviewee. The interviewer is holding back some data to simulate what is known at the beginning of a data analysis process. The interviewee must be willing to probe, digging out more data, and shaping the structure of the analysis. The end product is an analytical framework. No one knows if the framework would be successful until it is implemented. Those who do well in case interviews are good at (a) thinking on their feet (b) embracing uncertainty e.g. by making appropriate assumptions (c) listening to the interviewer's hints and (d) persuading. *** As I mentioned in Part 2, the best way to practice is to form a group of 3-5 people, and interview each other. If there is enough interest, we can start a group in the comments below.

from Big Data, Plainly Spoken (aka Numbers Rule Your World) http://bit.ly/2GTZX4a
via IFTTT

Comments

Popular posts from this blog

Controlling legend appearance in ggplot2 with override.aes

[This article was first published on Very statisticious on Very statisticious , and kindly contributed to R-bloggers ]. (You can report issue about the content on this page here ) Want to share your content on R-bloggers? click here if you have a blog, or here if you don't. In ggplot2 , aesthetics and their scale_*() functions change both the plot appearance and the plot legend appearance simultaneously. The override.aes argument in guide_legend() allows the user to change only the legend appearance without affecting the rest of the plot. This is useful for making the legend more readable or for creating certain types of combined legends. In this post I’ll first introduce override.aes with a basic example and then go through three additional plotting scenarios to how other instances where override.aes comes in handy. Table of Contents R packages Introducing override.aes Adding a guides() layer Using the guide argument in scale_*() Changing multiple aesthetic par...

Using RStudio and LaTeX

(This article was first published on r – Experimental Behaviour , and kindly contributed to R-bloggers) This post will explain how to integrate RStudio and LaTeX, especially the inclusion of well-formatted tables and nice-looking graphs and figures produced in RStudio and imported to LaTeX. To follow along you will need RStudio, MS Excel and LaTeX. Using tikzdevice to insert R Graphs into LaTeX I am a very visual thinker. If I want to understand a concept I usually and subconsciously try to visualise it. Therefore, more my PhD I tried to transport a lot of empirical insights by means of  visualization . These range from histograms, or violin plots to show distributions, over bargraphs including error bars to compare means, to interaction- or conditional effects of regression models. For quite a while it was very tedious to include such graphs in LaTeX documents. I tried several ways, like saving them as pdf and then including them in LaTeX as pdf, or any other file ...