holoviz-topics / EarthSim

Tools for working with and visualizing environmental simulations.
https://earthsim.holoviz.org
BSD 3-Clause "New" or "Revised" License
65 stars 21 forks source link

param + dataframes #209

Closed kcpevey closed 5 years ago

kcpevey commented 6 years ago

Is it possible to use param/parambokeh to hold a dataframe or something like a 2d numpy array?

I guess the alternative is to construct a bokeh table to give me an interact-able an array?

kcpevey commented 5 years ago

param.Array is a thing. I'm going to come up with a concrete example for discussion on Thursday.

jlstevens commented 5 years ago

@kcpevey I'm assigning myself based on our discussion in the technical meeting. I've been doing a fair bit of work on param recently!

philippjfr commented 5 years ago

Worth discussing whether we want param.Pandas (which I think is a bit weird) or separate param.DataFrame and param.Series parameters.

jlstevens commented 5 years ago

I just discussed this with Jim and we opted for separate param.DataFrame and param.Series.

jlstevens commented 5 years ago

This is now being implemented in https://github.com/ioam/param/pull/285

jlstevens commented 5 years ago

@kcpevey The PR mentioned above has now been merged into param. If you use param master, you can now use a parameter to hold a dataframe.

kcpevey commented 5 years ago

Closing since param.DataFrame is now implemented.