David Clark

Results 20 comments of David Clark

It looked like there was going to be a release of this package but then nothing for a few weeks now? Any idea when we can expect this and other...

It's a new year... is there a chance of getting some of these (e.g. this one) PRs accepted and a release (with other accepted PRs) out? Maybe if you don't...

It would be nice to see some of the _many_ similar questions about the performance of the API be answered by openai... For those of us working on projects that...

TL;DR: make sure you create your index specifying only the metadata fields other than "text" (where the metadata will be put by default) for indexing I also had the same...

I would really appreciate this, I only want the rules not the configs, and the plugins (vue) are behind on their eslint dep so I get warnings.

Question: does this even work with a single column index at the moment? I.e. is the pandas DataFrame.add behaviour where it will add values from rows by matching on their...

You can achieve what I think you want by just calling sortValues multiple times. The order of elements that have the same value for the column you are sorting on...

Actually, here is a quick utility function to do it for an arbitrary number of columns: ``` const sortByColumns = (orig: DataFrame, columns: string[], options?: { ascending?: boolean, inplace?: boolean...

I don't know what is going on with toDateTime and getting the date column into the Series or DataFrame (I can't make that work, I think it only supports string...

Using the other method in the documentation: [Query a DataFrame using a boolean mask](https://danfo.jsdata.org/api-reference/dataframe/danfo.dataframe.query#query-a-dataframe-using-a-boolean-mask) The example from [Query by a string column in a DataFrame](https://danfo.jsdata.org/api-reference/dataframe/danfo.dataframe.query#query-by-a-string-column-in-a-dataframe) in the docs: ``` df.query(df.column('A').apply(val...