DataFrame
DataFrame copied to clipboard
DataFrame in Pharo - tabular data structures for data analysis
I have the following printer for DataFrames which I can push to this repo if you want. Given: ``` df := DataFrame withRowNames: #(r1 r2) columnNames: #(c1 c2 c3 c4)....
DataFrame should not depend on normalizer
It would be nice to have the a method describe, similar to pandas.describe() To give you useful descriptive statistic information about the data https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.describe.html
Currently there is no easy way to directly create a DataFrame with preconfigured collections of column and row names. Add a class method named withColumnNames:withRowNames: to answer a new DataFrame...
This a strange idea to have the core depending on morphic!
glamorous Toolkit was removed from Pharo 9 and 10 So we should delete the references to it and update the inspector panes to the new Spec2 inspector
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...
With this Pull Request I would like to add new feature for the DataFrame project, `dataTypes` , which helps statisticians and data scientists perform some _data type oriented analysis_ to...
In real world data, there are some instances where a particular element is absent because of various reasons, such as, corrupt data, failure to load the information, or incomplete extraction....