0Pricing
Indie Hacker Mobile Apps · レッスン

コホート分析とリテンションカーブ

見かけだけの指標に頼らず、ユーザーをコホートに分けてリテンションカーブを読み、プロダクトが本当に利用者を引き付け続けているかを理解します。

「コホート分析とリテンションカーブ」はCoddyKit上の無料Indie Hacker Mobile Appsレッスンです。 これはレッスン4/4です。 下記で完全なレッスンを無料で読むことができます。その後、ブラウザ内の組み込みコードエディタと24時間対応のAIチューターでハンズオン演習できます。 これはIndie Hacker Mobile Apps学習パスの一部であり、ウェブとCoddyKitアプリ全体で進捗が同期されます。 Indie Hacker Mobile Appsコースには全4レッスンが含まれています。

このレッスンの一部はまだ翻訳されておらず、英語で表示されています。

Beyond Total User Counts

Total downloads feel good but hide the truth. A growing total can mask the fact that everyone leaves after a week. Cohort analysis reveals what is really happening.

This lesson teaches you to read retention honestly.

What Is a Cohort?

A cohort is a group of users who share a starting event — usually the week or month they signed up. You then track how each cohort behaves over time.

This separates new-user noise from real retention.

Retention Defined

Retention is the percentage of a cohort still active after N days. Day-1, Day-7, and Day-30 retention are the classic checkpoints.

function retention(active, cohortSize) {
  return (active / cohortSize) * 100;
}
console.log(retention(40, 100) + '%');

The Retention Curve

Plot retention over time and you get a curve. It drops fast at first, then ideally flattens. A curve that flattens above zero means you have a core of users who stay.

A curve that hits zero means no real retention.

The Flattening Smile

The best products show a curve that flattens and sometimes ticks back up as dormant users return — the smile curve. This signals product-market fit.

Aim to flatten the curve before scaling spend.

Building a Cohort Table

A cohort table has cohorts as rows and periods as columns. Each cell is the retention for that cohort at that age.

const cohort = { signups: 100, day1: 55, day7: 30, day30: 18 };
const pct = (n) => (n / cohort.signups * 100) + '%';
console.log('D1', pct(cohort.day1), 'D7', pct(cohort.day7));

Comparing Cohorts

The real power: compare cohorts over time. If newer cohorts retain better than older ones, your changes are working. If worse, something regressed.

Cohorts turn product changes into measurable cause and effect.

Segmenting Cohorts

Slice cohorts further by:

  • Acquisition channel
  • Platform
  • Whether they hit the aha moment

This reveals which users to acquire more of and which onboarding paths to fix.

Defining Active

Retention depends on what counts as active. For a daily app it might be opening the app; for a weekly tool, completing a key action.

Choose a definition that reflects real value, not just app opens.

From Insight to Action

Cohort insights drive iteration:

  • Low D1: onboarding problem
  • Steep D1 to D7 drop: weak habit formation
  • Curve never flattens: missing core value

Diagnose, change, then watch the next cohort.

A Retention Workflow

Put it together:

  • Group users into signup cohorts
  • Define a meaningful active event
  • Track D1, D7, D30 retention
  • Look for a flattening curve
  • Compare and segment cohorts to guide changes

Retention curves tell you the truth about your product.

Quick Check

Test your cohort analysis knowledge.

Recap

You learned cohort-based retention analysis:

  • Cohorts group users by signup period to reveal true retention
  • Retention curves should flatten above zero
  • The smile curve signals product-market fit
  • Compare and segment cohorts to measure changes
  • Define active by real value, then act on the diagnosis

Cohorts cut through vanity metrics to the truth.

よくある質問

「コホート分析とリテンションカーブ」レッスンは無料ですか?

はい。「コホート分析とリテンションカーブ」の完全なテキストはこのウェブで無料で読めます。インタラクティブに演習し(組み込みコードエディタと24時間対応のAIチューター)、Indie Hacker Mobile Appsコースの残りをアンロックするには、CoddyKit PROにアップグレードしてください。 Indie Hacker Mobile Appsコースには全4レッスンが含まれています。

「コホート分析とリテンションカーブ」で何を学びますか?

見かけだけの指標に頼らず、ユーザーをコホートに分けてリテンションカーブを読み、プロダクトが本当に利用者を引き付け続けているかを理解します。 ブラウザで直接実行するハンズオンコードでIndie Hacker Mobile Appsを演習し、24時間対応のAIチューターがレッスンを進める中での質問に答えます。

Indie Hacker Mobile Appsを始めるのに経験は必要ですか?

事前経験は必要ありません。CoddyKitのIndie Hacker Mobile Appsは初級者から上級者向けに構成されているため、ここから始めるか最初から始めて、自分のペースで進むことができます。 これはレッスン4/4です。

「コホート分析とリテンションカーブ」レッスンにはどのくらい時間がかかりますか?

ほとんどのCoddyKitレッスンは約5~10分かかります。各レッスンはコンパクトでインタラクティブなので、着実に進歩し、ウェブとアプリ全体で正確に前回の場所から再開できます。

このIndie Hacker Mobile Appsレッスンでコードを書いて実行できますか?

はい。すべてのIndie Hacker Mobile Appsレッスンに組み込みコードエディタが含まれているため、ブラウザでリアルコードを書いて実行し、即座のAIフィードバックを取得できます。ローカル設定は不要です。

このコースのすべてのレッスン

  1. 高度なモバイル分析プラットフォーム
  2. ユーザー行動データの解釈
  3. 反復開発のためのアジャイル開発
  4. コホート分析とリテンションカーブ
← Indie Hacker Mobile Appsに戻る