Skip to main content

Tool for exploring columnar data, including multimedia

Project description

Kangas DataGrid

The high-performance, multimedia grid tool for data analysis and exploration.

What is Kangas DataGrid?

Kangas DataGrid is a Python library for creating a table of text, numbers, and images, and then exploring them via a web browser-based UI.

A short example

from kangas import DataGrid, Image

dg = DataGrid(
    name="Short Example",
    columns=["Category", "Image", "Output"],
)


model = build_model()
model.fit(x_train, y_train)
outputs = model.predict(x_test)

for index in range(len(x_test)):
    dg.append([
        y_test[index],
        Image(x_test[index]),
        outputs[index].argmax(),
    ])

dg.show()

Further Documentation

  1. General README
  2. DataGrid Filters
  3. Getting Started - Jupyter Notebook

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

kangas-1.1.18-py3-none-any.whl (16.1 MB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page