-
**Describe the bug**
I receive the following error when I try to call fit for a `KNeighborsTimeSeriesClassifier` with "pd-multiindex" data:
```
FutureWarning: Creating a Groupby object with a lengt…
-
This is an Epic Issue to track development of Python Challenges. As per our [initial planning draft](https://docs.google.com/document/d/1lNi2bKms52uMtvwxn3znnspz08UUwuSTMYXKDyiUd_k/edit), we need subm…
-
Related to #1 , when we build an index and try to monitor it like:
```
select * from pg_stat_progress_create_index;
```
It shows:
```
pid | datid | datname | relid | index_relid | comman…
-
Python (and various other languages) has a nice feature for unpacking a list into multple variables:
`a,b,c := [1,2,3];`
assigns the values 1,2,3 to the variables a,b,c. This is quite useful for funct…
-
## 🐛 Tuple in the config dictionary changed to string when run a python notebook with papermill
I used the current config to run papermill with the following script
#### The config dictionary
…
-
Copied from with more discussion at: https://github.com/qiemem/PythonExtension/issues/6
Some examples:
```
observershow py:runresult "{1: 2}"
observer: [["1" 2]]
observershow py:runresult "{(…
-
Because of `NestedDict`'s behavior when indexing tuples, the following situation could arise for a user of this project
```python
def my_user_function(dictobject):
assert(isinstance(dictobject,…
-
Support unpacking an array into function arguments similar to a tuple. I propose the same syntax of unpacking a tuple here, because Python uses the same syntax for unpacking tuples and lists as argume…
-
Hi,
Following error is getting generated when trying to load the model.
ERROR:
TypeError Traceback (most recent call last)
in ()
8 detector.setModelTypeAsRetinaNet()
9 detector.setModelPat…
Aban8 updated
3 years ago
-
```
Just watch R Hettinger's pycon video where he talks about namedtuple
(collections.namedtuple) It would be great if you added this as an option like
'asdict'.
Since you can build the dict, you…