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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: Do you use MongoDB for analytics?

4 点作者 blaurenceclark超过 10 年前
I have a lot of app data in MongoDB and I wanted to perform some analytics on that data. I was looking for a Data Visualization tool where I could easily run&#x2F;save mongodb queries and visualize them<p>i.e. how many of x has happened per date y and graph as a line graph.<p>Does anyone know of a solution like this and&#x2F;or want one?

3 条评论

buffyoda超过 10 年前
SlamData (<a href="http://slamdata.com" rel="nofollow">http:&#x2F;&#x2F;slamdata.com</a>) is open source and lets you perform analytics on data in MongoDB.<p>The 2.0 version will have data visualization baked in, but the current one doesn&#x27;t have that just yet. :(
caw超过 10 年前
If you&#x27;re okay with writing your own queries and some basic HTML, you could use something like d3.js to render graphs.<p>If you&#x27;re looking for more of an Excel pivot table on your MongoDB, there&#x27;s a category of enterprise software that does this basically called &quot;analytics dashboards&quot; or &quot;business intelligence dashboards&quot; like Pentaho or Jaspersoft (1st google results, not recommending necessarily).<p>Most of those products come with the associated enterprise price tag (&quot;call for pricing&quot;). I&#x27;m not aware of any free ones
评论 #9027996 未加载
vishalzone2002超过 10 年前
you could clearly build a small web app and use d3js. The cool thing here is you can get your data back in json format from mongo and d3js (or many other charting libraries) just work fine with json.<p>If you are a python person, this article might help<p><a href="http://adilmoujahid.com/posts/2015/01/interactive-data-visualization-d3-dc-python-mongodb/" rel="nofollow">http:&#x2F;&#x2F;adilmoujahid.com&#x2F;posts&#x2F;2015&#x2F;01&#x2F;interactive-data-visua...</a>