---
title: "Motivating Hypothetical: DataSciencester Explained in Fewer than 140 Characters"  
description: "a data scientist is someone who knows more statistics than a computer scientist and more computer science than a statistician. In fact, some data scie"  
author: "meenati biswal"  
published: 2019-09-27  
updated: 2019-09-27  
canonical: https://www.mindstick.com/articles/198548/motivating-hypothetical-datasciencester-explained-in-fewer-than-140-characters  
category: "database"  
tags: ["data modeling", "data structure"]  
reading_time: 3 minutes  

---

# Motivating Hypothetical: DataSciencester Explained in Fewer than 140 Characters

You’ve just been hired to lead the [data science](https://www.mindstick.com/services/data-science) efforts at DataScien‐ center, the [social network](https://answers.mindstick.com/qa/37502/what-films-are-similar-to-the-social-network-moneyball-etc) for [data scientists](https://www.mindstick.com/articles/331494/why-data-scientists-are-quitting-their-jobs). Despite being for data scientists, DataSciencester has never actually invested in building its data science course practice. \

In fairness, DataSciencester has never really invested in building its product either.

That will be your job! Throughout the book, we’ll be learning about data science concepts by solving problems that you encounter at work. Sometimes we’ll look at data explicitly supplied by users, sometimes we’ll look at data generated through their interactions with the site, and sometimes we’ll even look at data from experiments that we’ll design. \

And because DataSciencester has a strong “not-invented-here” mentality, we’ll be building our tools from scratch. In the end, you’ll have a pretty solid [understanding](https://answers.mindstick.com/qa/39151/india-has-signed-a-tripartite-memorandum-of-understanding-mou-with-which-countries-for-civil-nuclear-cooperation) of the [fundamentals](https://yourviews.mindstick.com/view/83845/healthcare-seo-fundamentals-to-grow-your-medical-practice) of data science. And you’ll be ready to apply [your skills](https://yourviews.mindstick.com/story/2578/books-to-master-your-skills) at a company with a less shaky premise, or to any other problems that happen to interest you. Welcome aboard, and good luck! (You’re allowed to [wear jeans](https://yourviews.mindstick.com/story/3894/5-reasons-you-should-not-wear-jeans) on Fridays, and the bathroom is down the hall on the right.) \

Finding Key Connectors It’s your first day on the job at DataSciencester, and the VP of Networking is full of questions about your users. Until now he’s had no one to ask, so he’s very excited to have you aboard. Learn more [Data Science Certification](https://www.mindstick.com/articles/269693/how-crucial-is-data-science-certification-for-your-career-growth)\

In particular, he wants you to identify who the “key connectors” are among data scientists. To this end, he gives you a dump of the entire DataSciencester network. (In real life, [people don](https://answers.mindstick.com/qa/36098/what-are-the-best-new-products-or-inventions-that-most-people-don-t-know-about)’t typically hand you the data you need. \

What does this data dump look like? It consists of a list of users, each represented by a dict that contains for each user his or her id (which is a number) and name (which, in one of the great cosmic coincidences, rhymes with the user’s id):

users = [

{ "id": 0, "name": "Hero" },

{ "id": 1, "name": "Dunn" },

{ "id": 2, "name": "Sue" },

{ "id": 3, "name": "Chi" },

{ "id": 4, "name": "Thor" },

{ "id": 5, "name": "Clive" },

{ "id": 6, "name": "Hicks" },

{ "id": 7, "name": "Devin" },

{ "id": 8, "name": "Kate" },

{ "id": 9, "name": "Klein" }

]

He also gives you the “friendship” data, represented as a list of pairs of IDs:

friendships = [(0, 1), (0, 2), (1, 2), (1, 3), (2, 3), (3, 4),

(4, 5), (5, 6), (5, 7), (6, 8), (7, 8), (8, 9)]

For example, the tuple (0, 1) indicates that the [data scientist](https://answers.mindstick.com/qa/52129/what-exactly-does-a-data-scientist-do) with id 0 (Hero) and the data scientist with id 1 (Dunn) are friends.

---

Original Source: https://www.mindstick.com/articles/198548/motivating-hypothetical-datasciencester-explained-in-fewer-than-140-characters

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
