Launch HN: Evidence (YC S21) – Web framework for data analysts
51–60 of 94 posts
Re: Launch HN: Evidence (YC S21) – Web framework for data analysts
#52SQLite support would be nice!
Re: Launch HN: Evidence (YC S21) – Web framework for data analysts
#53Will check back again when MS SQL is supported.
Re: Launch HN: Evidence (YC S21) – Web framework for data analysts
#54I like it. I've seen the same issue and agree people over index on no code. I didn't see it on your page, do you get into visualization as well?
Thanks so much! Yes, definitely. We include a visualization library with the Evidence. You can write to add a line chart to your document, for a histogram etc. You can see the documentation for the chart types we have built under 'components' in our docs. Here's the histogram: https://docs.evidence.dev/components/hist Designing this is one of the trickiest parts of the project, and is going to be one of the biggest a…
Re: Launch HN: Evidence (YC S21) – Web framework for data analysts
#55Since you have some data processing inline with your Markdown, I am wondering if you explored using MdSvex? https://mdsvex.pngwn.io/
it would seem like it would be a pure win for you as you (your users) get reusable functions, on-document styles, local component state, and so on.
Re: Launch HN: Evidence (YC S21) – Web framework for data analysts
#56#+begin_src emacs-lisp (require 'ob-sqlite) #+end_src
#+RESULTS: : ob-sqlite
* Headline 1
* Headline 2 #+begin_src sqlite :db users.db :colnames yes select * from users where id > 1 limit 10 #+end_src
#+plot: set:"xlabel 'id'" set:"ylabel 'N'"
Re: Launch HN: Evidence (YC S21) – Web framework for data analysts
#57This looks very promising, also with the inclusion of svelte. I'd have to see how well it integrates with Python and R, as far as I can see you'd need to export data from those to make it usable, which is probably easy as well.
Re: Launch HN: Evidence (YC S21) – Web framework for data analysts
#58I have been doing this in emacs org mode for years i.e. reading from database and plotting the results along with documentation in single org file which is version controlled using git, how is this different? I can also export to html and share with others. something like this #+begin_src emacs-lisp (require 'ob-sqlite) #+end_src #+RESULTS: : ob-sqlite * Headline 1 * Headline 2 #+begin_src sqlite :db users.db :colnam…
OP wrote that people have been doing similar things for a long time. They are aiming to standardize and polish this approach.
Re: Launch HN: Evidence (YC S21) – Web framework for data analysts
#59If I could upvote this a 100 times, I would. I've felt this pain everyday with Looker, Mode, Metabase, every other BI tool that I've tried.