Files

36 lines
1.4 KiB
Markdown

---
id: 5e46f8edac417301a38fb930
title: 線性迴歸健康成本計算器
challengeType: 10
forumTopicId: 462379
dashedName: linear-regression-health-costs-calculator
---
# --description--
在這個挑戰中,你將使用迴歸算法預測醫療費用。
你會得到一個數據集,其中包含不同人的信息,包括他們的醫療費用。 用數據來預測基於新數據的醫療費用。
你可以訪問 [Google Colaboratory 上的完整項目說明和啓動代碼](https://colab.research.google.com/github/freeCodeCamp/boilerplate-linear-regression-health-costs-calculator/blob/master/fcc_predict_health_costs_with_regression.ipynb)。
進入該鏈接後,在你自己的賬戶或本地創建一個筆記本的副本。 一旦你完成項目並通過鏈接中的測試,請在下面提交你的項目鏈接。 如果你提交的是 Google Colaboratory 的鏈接,請確保打開鏈接共享時選擇 “anyone with the link”。
我們仍在開發機器學習課程的交互式課程部分。 現在,你可以通過這個認證中的視頻挑戰。 你可能還需要尋找額外的學習資源,類似於你在真實世界項目中的工作。
# --hints--
它應該通過所有的 Python 測試。
```js
```
# --solutions--
```py
# Python challenges don't need solutions,
# because they would need to be tested against a full working project.
# Please check our contributing guidelines to learn more.
```