Skip to content

Use of Seaborn images within JupyterQ not supported #67

@cmccarthy1

Description

@cmccarthy1

External Query

I have a table in kdb – just 5 columns and 100 rows – all numeric (features of a model let’s say)

I want to display the contents of this table in jupyterq from seaborn.

Specifically I want to:

  1. display the distribution of the 2nd column using the sns.displot function.
sns.displot(table, x=”feature2”)

in python

  1. display two comparative columns together – ie:
sns.displot(table, x="feature2", hue="feature3", stat="density")
  1. finally I want to display the relationships of all features against each other, perhaps with
sns.pairplot(table, diag_kind=’kde’)

Currently this behaviour is not supported likely due to the function used to provide inline displays in kxpy/kx_backend_inline.py, more research is needed on this however

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions