Oleksandr Zaitsev

Results 101 issues of Oleksandr Zaitsev

#mean and #stdev are implemented by Pharo Collection #mode is implemented by PolyMath We should put them together either here or there

Priority: Low
Status: Available
Type: Enhancement

I am not sure about this. At the moment, `isComplexNumber` means _"is this an instance of PMComplexNumber?"_ and `isRealNumber` means _"is this an instance on Number which is not an...

We have two ways of instantiating `PMSymmetricMatrix`: 1. by using the `rows:` method, inherited from `PMMatrix` ```Smalltalk m := PMSymmetricMatrix rows: #( (1 2) (2 3)). ``` 2. by converting...

Priority: Medium
Status: In Progress
Type: Question

PolyMath data structures should be well integrated into the system of standard Smalltalk collections. This means that PMVector should behave as an Array since it is a subclass of Array...

Priority: Medium
Status: Available
Type: Enhancement

Some names are very bad. For example, `uniform` and `uniformDefaultValue` are booleans so they should be called something like `isUniform` and `isUniformDefaultValue` (although I'm not sure what that second one...

api
Difficulty: Easy
fun and creative
Novi Sad

The family of replaceNilsWith: methods is defined for DataSeries but not for DataFrame

new feature
Difficulty: Easy

I have removed methods DataFrame>>columnTypes and DataSeries>>type and the related functionality in #61 because their implementation was very bad and slowed down all other methods. However, for exploratory purposes it...

new feature
Difficulty: Medium

I found this for example: https://pandas.pydata.org/docs/user_guide/reshaping.html Also: ![download](https://user-images.githubusercontent.com/8271691/127003109-3c77a36d-bcaa-45e9-a13e-20e14db03e70.png) And this: ![data-transformation](https://user-images.githubusercontent.com/8271691/127002904-1de43284-0a3a-4da6-8589-d353afdd4654.png)

to be discussed
read & research