Coder Social home page Coder Social logo

vmware-archive / hillview Goto Github PK

View Code? Open in Web Editor NEW
103.0 103.0 29.0 19.05 MB

Big data spreadsheet

License: Other

Shell 0.69% HTML 0.16% Java 65.07% CSS 0.32% TypeScript 32.03% JavaScript 0.05% Python 1.57% Batchfile 0.06% PowerShell 0.03% Jinja 0.03%

hillview's People

Contributors

arvind008 avatar bin-wang avatar blp avatar cmadhankumar avatar daniarherikurniawan avatar dependabot[bot] avatar dn0sar avatar hankruiger avatar huilyu2 avatar jiten-thakkar avatar lalithsuresh avatar parikg avatar uwieder avatar vmwsrpbot avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

hillview's Issues

Sorting by counts

In many scenarios (like heavy hitters), it is natural to sort entries by counts. For instance, sorting airlines by number of flights that they operate.

Heavy hitters filtering

After we run heavy hitters, we should filter the results by computing the exact frequency counts.

Heat map trendline not working correctly when swapping axes

Steps to reproduce:

  • Load one of the flight datasets
  • Select columns ArrTime and ArrDelay
  • Right click on one of the columns -> Heat map
  • The trendline should follow the green colour, and it does
  • In the heat map, select view -> swap axes
  • The trendline should follow the green colour, but it doesn't.

Slecting rows in a table

Currently, the only way to select rows is to first go to the histogram and then select. We might want to support selection in the table view.

Going from Histogram to table view

Suppose we are viewing a histogram where data is sorted by attribute A. Suppose we click on the table view. Currently, we get the table view where no columns are displayed. Ideally, we should be seeing the data sorted by attribute A (in the same order that the histogram uses, which is presumably ascending.)

Front-end fails to build due to missing file

When building the front-end (mvn package in web), the build system mentions a missing file:

ERROR in ./rpc.ts
(2,22): error TS6053: File '/Users/hkruiger/Projects/hiero_fresh/web/src/main/webapp/typings/index.d.ts' not found.
   [1] ./rpc.ts 6.61 kB {0} [built] [1 error]
ERROR in ./rpc.ts
(2,22): error TS6053: File '/Users/hkruiger/Projects/hiero_fresh/web/src/main/webapp/typings/index.d.ts' not found.

Removing the violating import line (line 2 in web/src/main/webapp/rpc.ts) removes this error, and I don't see any problems in the application after that. But I'm not sure if this is a good fix, as the file may need to be imported for a reason(?).

SplitTable changing the type of columns - causes null exception without converter

After creating a table of Integer columns and splitting it using SplitTable, the columns of the subtables are changed to ObjectArrayColumn. As a result when invoking the column's asDouble() method the default converter from ints to doubles is not invoked. If an explicit converter is not supplied this results in a null exception. Below is a code that generates the bug:

Test
public void createBug() {
// Creating Int Table
final SmallTable bigTable = getIntTable(10000, 1);
// Grabbing the Column
String colName = bigTable.getSchema().getColumnNames().iterator().next();
IColumn column = bigTable.getColumn(colName);
IMembershipSet memset = bigTable.getMembershipSet();
IRowIterator iter = memset.getIterator();
// All seem to work fine
System.out.println(" printing the double " + column.asDouble(iter.getNextRow(), null));
System.out.println(" printing the double " + column.asDouble(iter.getNextRow(), null));

// Splitting the table
List<SmallTable> tabList = SplitTable(bigTable, 10000);
// Grabbing the column from  the sub-tables
ITable subtable = tabList.iterator().next();
IColumn column1 = subtable.getColumn(colName);
IMembershipSet memset1 = subtable.getMembershipSet();
IRowIterator iter1 = memset1.getIterator();

//Null Exception!!!
System.out.println(" printing the double " + column1.asDouble(iter1.getNextRow(), null));
System.out.println(" printing the double " + column1.asDouble(iter1.getNextRow(), null));

}

NextK sketch returns strange results

Displaying the DepTime column shows .2% of the data. However, after page-down it jumps to offset 2.7%.
This seems to be related to the handling of missing values.

Websocket address is hard coded

rpc.ts has the following line:

const HillviewServiceUrl : string = "ws://localhost:8080";

We need to determine the URL dynamically instead.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.