Skip to content

Commit 23fad9b

Browse files
authored
Merge pull request microsoft#654 from suphanf/fix-quiz-link
Fix Pre-lecture and Post-lecture quiz links
2 parents 7bb8775 + 3fa6b42 commit 23fad9b

File tree

20 files changed

+29
-29
lines changed

20 files changed

+29
-29
lines changed

1-Introduction/01-defining-data-science/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ Visit [`notebook.ipynb`](/1-Introduction/01-defining-data-science/notebook.ipynb
153153
154154

155155

156-
## [Post-lecture quiz](https://ff-quizzes.netlify.app/en/ds/)
156+
## [Post-lecture quiz](https://ff-quizzes.netlify.app/en/ds/quiz/1)
157157

158158
## Assignments
159159

1-Introduction/02-ethics/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ Note that there remains an intangible gap between _compliance_ (doing enough to
247247
The latter requires [collaborative approaches to defining ethics cultures](https://towardsdatascience.com/why-ai-ethics-requires-a-culture-driven-approach-26f451afa29f) that build emotional connections and consistent shared values _across organizations_ in the industry. This calls for more [formalized data ethics cultures](https://www.codeforamerica.org/news/formalizing-an-ethical-data-culture/) in organizations - allowing _anyone_ to [pull the Andon cord](https://en.wikipedia.org/wiki/Andon_(manufacturing)) (to raise ethics concerns early in the process) and making _ethical assessments_ (e.g., in hiring) a core criteria team formation in AI projects.
248248

249249
---
250-
## [Post-lecture quiz](https://ff-quizzes.netlify.app/en/ds/) 🎯
250+
## [Post-lecture quiz](https://ff-quizzes.netlify.app/en/ds/quiz/3) 🎯
251251
## Review & Self Study
252252

253253
Courses and books help with understanding core ethics concepts and challenges, while case studies and tools help with applied ethics practices in real-world contexts. Here are a few resources to start with.

1-Introduction/03-defining-data/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Kaggle is an excellent source of open datasets. Use the [dataset search tool](ht
5959
- Is the data quantitative or qualitative?
6060
- Is the data structured, unstructured, or semi-structured?
6161

62-
## [Post-lecture quiz](https://ff-quizzes.netlify.app/en/ds/)
62+
## [Post-lecture quiz](https://ff-quizzes.netlify.app/en/ds/quiz/5)
6363

6464

6565

1-Introduction/04-stats-and-probability/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ Use the sample code in the notebook to test other hypothesis that:
244244
2. First basemen are taller than third basemen
245245
3. Shortstops are taller than second basemen
246246

247-
## [Post-lecture quiz](https://ff-quizzes.netlify.app/en/ds/)
247+
## [Post-lecture quiz](https://ff-quizzes.netlify.app/en/ds/quiz/7)
248248

249249
## Review & Self Study
250250

2-Working-With-Data/05-relational-databases/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
Chances are you have used a spreadsheet in the past to store information. You had a set of rows and columns, where the rows contained the information (or data), and the columns described the information (sometimes called metadata). A relational database is built upon this core principle of columns and rows in tables, allowing you to have information spread across multiple tables. This allows you to work with more complex data, avoid duplication, and have flexibility in the way you explore the data. Let's explore the concepts of a relational database.
88

9-
## [Pre-lecture quiz](https://purple-hill-04aebfb03.1.azurestaticapps.net/quiz/8)
9+
## [Pre-lecture quiz](https://ff-quizzes.netlify.app/en/ds/quiz/8)
1010

1111
## It all starts with tables
1212

@@ -166,7 +166,7 @@ There are numerous relational databases available on the internet. You can explo
166166

167167
## Post-Lecture Quiz
168168

169-
## [Post-lecture quiz](https://ff-quizzes.netlify.app/en/ds/)
169+
## [Post-lecture quiz](https://ff-quizzes.netlify.app/en/ds/quiz/9)
170170

171171
## Review & Self Study
172172

2-Working-With-Data/06-non-relational/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
|:---:|
55
|Working with NoSQL Data - _Sketchnote by [@nitya](https://twitter.com/nitya)_ |
66

7-
## [Pre-Lecture Quiz](https://purple-hill-04aebfb03.1.azurestaticapps.net/quiz/10)
7+
## [Pre-Lecture Quiz](https://ff-quizzes.netlify.app/en/ds/quiz/10)
88

99
Data is not limited to relational databases. This lesson focuses on non-relational data and will cover the basics of spreadsheets and NoSQL.
1010

@@ -132,7 +132,7 @@ There is a `TwitterData.json` file that you can upload to the SampleDB database.
132132

133133
Try to run a few select queries to find the documents that have Microsoft in the text field. Hint: try to use the [LIKE keyword](https://docs.microsoft.com/en-us/azure/cosmos-db/sql/sql-query-keywords#using-like-with-the--wildcard-character)
134134

135-
## [Post-lecture quiz](https://ff-quizzes.netlify.app/en/ds/)
135+
## [Post-lecture quiz](https://ff-quizzes.netlify.app/en/ds/quiz/11)
136136

137137

138138

2-Working-With-Data/07-python/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ Here are some examples of exploring data from Image data sources:
256256

257257
Whether you already have structured or unstructured data, using Python you can perform all steps related to data processing and understanding. It is probably the most flexible way of data processing, and that is the reason the majority of data scientists use Python as their primary tool. Learning Python in depth is probably a good idea if you are serious about your data science journey!
258258

259-
## [Post-lecture quiz](https://ff-quizzes.netlify.app/en/ds/)
259+
## [Post-lecture quiz](https://ff-quizzes.netlify.app/en/ds/quiz/13)
260260

261261
## Review & Self Study
262262

2-Working-With-Data/08-data-preparation/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ letters numbers
317317

318318
All of the discussed materials are provided as a [Jupyter Notebook](https://github.com/microsoft/Data-Science-For-Beginners/blob/main/2-Working-With-Data/08-data-preparation/notebook.ipynb). Additionally, there are exercises present after each section, give them a try!
319319

320-
## [Post-lecture quiz](https://ff-quizzes.netlify.app/en/ds/)
320+
## [Post-lecture quiz](https://ff-quizzes.netlify.app/en/ds/quiz/15)
321321

322322

323323

3-Data-Visualization/09-visualization-quantities/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ In this plot, you can see the range per bird category of the Minimum Length and
195195

196196
This bird dataset offers a wealth of information about different types of birds within a particular ecosystem. Search around the internet and see if you can find other bird-oriented datasets. Practice building charts and graphs around these birds to discover facts you didn't realize.
197197

198-
## [Post-lecture quiz](https://ff-quizzes.netlify.app/en/ds/)
198+
## [Post-lecture quiz](https://ff-quizzes.netlify.app/en/ds/quiz/17)
199199

200200
## Review & Self Study
201201

3-Data-Visualization/10-visualization-distributions/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ Perhaps it's worth researching whether the cluster of 'Vulnerable' birds accordi
192192

193193
Histograms are a more sophisticated type of chart than basic scatterplots, bar charts, or line charts. Go on a search on the internet to find good examples of the use of histograms. How are they used, what do they demonstrate, and in what fields or areas of inquiry do they tend to be used?
194194

195-
## [Post-lecture quiz](https://ff-quizzes.netlify.app/en/ds/)
195+
## [Post-lecture quiz](https://ff-quizzes.netlify.app/en/ds/quiz/19)
196196

197197
## Review & Self Study
198198

0 commit comments

Comments
 (0)