TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Show HN: Vizly – Query and visualize your data in seconds

24 pointsby ashobeiriabout 2 years ago
My friend Sami and I built Vizly, a project that lets you query and visualize your data in seconds<p>It works for any data so you can upload and starting querying&#x2F;visualizing your dataset right away

5 comments

foolEngiabout 2 years ago
I&#x27;d say this project is rather useful in that it made queries far much more intuitive, something SQL aimed for in 1970s but eventually fails: for simple ones like `SELECT type_1 FROM roles;` it is indeed intuitive, but for something a little bit complicated, that intuitiveness quickly fall apart:<p>```sql SELECT DISTINCT type_1 FROM roles AS r1 WHERE NOT EXISTS( SELECT * FROM roles AS r2 WHERE r2.type_1 = r1.type_1 AND r2.legendary = &#x27;True&#x27; ); ```<p>This queries all &quot;`TYPE_1`s that all characters in this type are not legendary&quot;, and it is near impossible for a newcomer who had never learnt about SQL before to figure out the query, yet typing the sentence in quotes in `Vizly` gives exactly what is needed. Sure it took 1 minute to execute (which is probably why some thought it is down), but formulating the above SQL statement took much longer, and I am not sure that statement even works (I haven&#x27;t touched SQL for quite some time).
cygnionabout 2 years ago
Nice idea and interesting space. I tried &#x27;show counts by type_1 ordered by occurrences&#x27; and it showed a bar chart, as expected. But &#x27;show statistical distributions&#x27; or &#x27;show something surprising about the data&#x27; gave the response &#x27;Vizly does not yet support this chart type.&#x27; Note that some of the standard tools like Tableau or Observable show basic charts over columns out-of-box after loading a dataset, so the default tabular view could be augmented. I&#x27;m aware of at least one mature-looking tool in this space [1] and an interesting thesis [2]. Best wishes with building it out!<p>[1] <a href="https:&#x2F;&#x2F;datachat.ai&#x2F;" rel="nofollow">https:&#x2F;&#x2F;datachat.ai&#x2F;</a> [2] Iris Agent - <a href="https:&#x2F;&#x2F;youtu.be&#x2F;3VZZbKoXDVM" rel="nofollow">https:&#x2F;&#x2F;youtu.be&#x2F;3VZZbKoXDVM</a>
i-use-nixos-btwabout 2 years ago
Nice idea. Not sure it’s fully ready yet, and I have a few suggestions.<p>One, you need more content to explain the concept to the user. A table and an input box is not sufficient. Sure, I could mess around and figure it out, but for all I know I’d be missing out on all the cool features.<p>Two, provide some examples, and some alternative datasets (e.g. tabular, nested, relational).<p>I’m not sure how to use it, so I gave the prompt:<p>&gt; plot speed vs defence<p>on the Pokémon dataset. It provided me with an empty scatter plot.<p>Three, you need an FAQ. Some example questions: Can I run this locally? Can I integrate this with private data sources such as Prometheus? How does the project work? Who worked on it? Are there terms and conditions? What kind of data sources does it currently work on? What are the ongoing plans? Etc.
karinemellataabout 2 years ago
Super cool demo. I uploaded a messy fraud dataset and asked it some queries like &quot;when have you seen the most fraud&quot;, and it was able to convert this to a COUNT aggregated on days.<p>At least for investigative workflows (where it&#x27;s pretty common for data scientist to often have to rebuild custom dashboards), it&#x27;d be really cool to have the system handle prompts such as &quot;give me a regex on email address that seem to incur the most amount of fraud&quot; -- or unveil some insight on the data that is usually just a mix of operator&#x2F;data scientist domain specific knowledge + pattern matching.
icemelt8about 2 years ago
Its down