Skip to content
#

table

Here are 2,124 public repositories matching this topic...

sheetjs
ViggoV
ViggoV commented Nov 21, 2019

Environment

  • Package version(s): @blueprintjs/core@3.17.2 @blueprintjs/select@3.11.2
  • Browser and OS versions: MacOS Catalina (10.15.1) / Chrome 78.0.3904.108

Question

Is there any solid documentation for the renderFilteredItems() utility function exported from the select package? It is briefly mentioned under the itemListRenderer props section of the select c

danfojs
kylemcdonald
kylemcdonald commented Mar 2, 2022

I would like to convert a DataFrame to a JSON object the same way that Pandas does with to_dict().

toJSON() treats rows as elements in an array, and ignores the index labels. But to_dict() uses the index as keys.

Here is an example of what I have in mind:

function to_dict(df) {
    const rows = df.toJSON();
    const entries = df.index.map((e, i) => ({ [e]: rows[i] }));
  
enhancement good first issue
glide-data-grid
pzcfg
pzcfg commented Jun 21, 2022

In #150 @ivoelbert added support to pass in padding to the scrollTo which is useful, however I need this to happen when appendRow is called as well. In my fork I'm just adding overscrollY to the scrollY here

https://github.com/glideapps/glide-data-grid/blob/91b2843ba5b248b7485293b8bc9f6fe53fb3a1fd/packages/core/src/data-editor/data-editor.tsx#L850

but it might be better to make this

good first issue help wanted

Improve this page

Add a description, image, and links to the table topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the table topic, visit your repo's landing page and select "manage topics."

Learn more