TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

How to figure out value per member?

5 点作者 cvinson超过 16 年前
I have a subscription based web app, and would like an accurate way to track lifetime value for each member. This would help figure out what is reasonable to pay for AdWords, for example.<p>Our app goes back to 2005, but we still have hundreds of members still paying from back then. So, the "good" customers skew any results based on customer cancellations. Is there some kind of formula for this? Without a solid number, for those of you that advertise your app, how do you set a budget?

4 条评论

immad超过 16 年前
Hmm, maybe I am simplifying this but can't you do:<p>Fraction that convert to paying * How much they per on average per month * Average months before cancellation * Some sort of Discounting for value of future money (unless you plan to increase price) = value per member<p>For avg months before cancellation count all those that are yet to cancel as 2x there lifetime (seems reasonable). Would give you a fairly reasonable guess. Then you just have to make sure that the value of a paid member is the same.<p>discounting: <a href="http://en.wikipedia.org/wiki/Discount" rel="nofollow">http://en.wikipedia.org/wiki/Discount</a>
pmikal超过 16 年前
Take the average length of time that a user stays with your service.<p>Find out the average number of purchases they make.<p>Multiply to get average lifetime value.<p>Spend less than this number on your customer acquisition, ie Adsense.<p>Example: The average subscriber stays with you 1 year. It's a monthly service, so the average customer makes 12 purchases. You have a low/no cost service with a gross profit of $2/mo.<p>12 x $2 Profit per Unit = $24 LTV of the average customer<p>If you have some sort of viral component where users are getting other users, you'll want to account for that as well.
lowkey超过 16 年前
The one suggestion I would add is to segment your users in the model: flighty, regular, loyal (or something similar) Focus your analysis on clearly modeling usage by segment in the first few months to get a good feel for who is dropping, when, and why (good exercise). There is nothing wrong with modeling a 'loyal' segment that simply loves your service and never or rarely cancels, so long as you also model 'regular' and 'flighty' users.
cvinson超过 16 年前
The problem with these methods is that they assume you can figure out average months before cancellation.<p>If 10% of your members are still active (have never cancelled) since you launched, how can you estimate this? They may stay on for another week or another 5 years.<p>Clearly, this isn't something that can have a hard answer, but it would be nice to reduce the guesswork.