コードの横にMarkdownでメモを書く
結果のすぐそばに分析内容を記録します
「コードの横にMarkdownでメモを書く」はCoddyKit上の無料Data Science Academyレッスンです。 これはレッスン3/4です。 下記で完全なレッスンを無料で読むことができます。その後、ブラウザ内の組み込みコードエディタと24時間対応のAIチューターでハンズオン演習できます。 これはData Science Academy学習パスの一部であり、ウェブとCoddyKitアプリ全体で進捗が同期されます。 Data Science Academyコースには全4レッスンが含まれています。
このレッスンの一部はまだ翻訳されておらず、英語で表示されています。
Two Kinds of Cells
A notebook cell can hold code or words. Switching one to a Markdown cell lets you write notes that sit right beside your analysis.
Make a Cell Markdown
Select a cell, press Esc, then M to turn it into a Markdown cell. Press Y to turn it back into code whenever you need.
Render It With Run
A Markdown cell shows raw text until you run it. Shift+Enter renders it into clean, formatted prose, just like running code.
Headings Give Structure
Start a line with # to make a heading. More hashes mean smaller headings, so you can outline your analysis like a real document.
# Sales Analysis
## Data CleaningBold and Italic Emphasis
Wrap words in double stars for bold and single stars for italic. A little emphasis makes the key finding jump off the page.
**Key result** and *a soft note*Bullet Lists for Steps
Begin lines with a dash to build a list. Lists are perfect for laying out the steps or assumptions behind your analysis.
- Loaded the data
- Removed duplicates
- Computed totalsLinks to Sources
Add a link by putting text in brackets and the URL in parentheses. Now your reader can jump straight to the data source.
[Data source](https://example.com/data)Inline Code Snippets
Wrap a name in single backticks to show it as inline code. It signals that df or mean() is a literal name, not prose.
Tables Summarize Neatly
Pipes and dashes build a small table in Markdown. Use it to summarize a result without writing a single line of code.
| Month | Sales |
|-------|-------|
| Jan | 120 |Math With LaTeX
Wrap an expression in dollar signs to render math. It is ideal for showing the formula behind a metric right in your notes.
$mean = \frac{1}{n}\sum x_i$Notes Make Notebooks Reusable
Good Markdown turns a pile of cells into a story a teammate, or future you, can follow months later without guessing.
Quick Check
You want a large title above your data-cleaning section in a notebook.
Recap: Document as You Go
You can now write Markdown cells with headings, lists, links, tables, and math, so your analysis explains itself clearly. 📝
よくある質問
「コードの横にMarkdownでメモを書く」レッスンは無料ですか?
はい。「コードの横にMarkdownでメモを書く」の完全なテキストはこのウェブで無料で読めます。インタラクティブに演習し(組み込みコードエディタと24時間対応のAIチューター)、Data Science Academyコースの残りをアンロックするには、CoddyKit PROにアップグレードしてください。 Data Science Academyコースには全4レッスンが含まれています。
「コードの横にMarkdownでメモを書く」で何を学びますか?
結果のすぐそばに分析内容を記録します ブラウザで直接実行するハンズオンコードでData Science Academyを演習し、24時間対応のAIチューターがレッスンを進める中での質問に答えます。
Data Science Academyを始めるのに経験は必要ですか?
事前経験は必要ありません。CoddyKitのData Science Academyは初級者から上級者向けに構成されているため、ここから始めるか最初から始めて、自分のペースで進むことができます。 これはレッスン3/4です。
「コードの横にMarkdownでメモを書く」レッスンにはどのくらい時間がかかりますか?
ほとんどのCoddyKitレッスンは約5~10分かかります。各レッスンはコンパクトでインタラクティブなので、着実に進歩し、ウェブとアプリ全体で正確に前回の場所から再開できます。
このData Science Academyレッスンでコードを書いて実行できますか?
はい。すべてのData Science Academyレッスンに組み込みコードエディタが含まれているため、ブラウザでリアルコードを書いて実行し、即座のAIフィードバックを取得できます。ローカル設定は不要です。
このコースのすべてのレッスン
- 手間なくPythonをインストールする
- セル、カーネル、実行順序
- コードの横にMarkdownでメモを書く
- インポート、確認、反復