KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
datasets
★ 10
Open GitHub ↗
Loading datasets into Pharo
Download README (.md)
Explore Similar Repositories
php-eventsource
:
A simple EventSource / SSE (Server-Sent Events) client for PHP.
myimages
:
store images
video-autenticacao-usuarios-react
:
No description available.
robotframework-automation-practice
:
Example Robot Framework test suite utilizing object and variable files with custom keywords and functions
data-science-tutorial-for-beginners
:
Data science tutorial in Chinese.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
datasets
?
Download (.md)
# Pharo Datasets [](https://github.com/pharo-ai/Datasets/actions/workflows/test.yml) [](https://coveralls.io/github/PharoAI/Datasets?branch=master) [](https://raw.githubusercontent.com/PharoAI/Datasets/master/LICENSE) Datasets library is used to load datasets in Pharo. The datasets are loaded as [DataFrame](https://github.com/PolyMathOrg/DataFrame/) objects. ## Installation To install `Datasets`, go to the Playground (`Ctrl+OW`) in your [Pharo](https://pharo.org/) image and execute the following Metacello script (select it and press Do-it button or `Ctrl+D`): ```smalltalk Metacello new baseline: 'AIDatasets'; repository: 'github://pharo-ai/datasets'; load. ``` ## If you want to depend on it ```smalltalk spec baseline: 'AIDatasets' with: [ spec repository: 'github://pharo-ai/datasets' ]. ``` ## Usage To load a dataset, using `AIDataSets loadXYZ`. For example: ```smalltalk AIDatasets loadBostonHousing. AIDatasets loadBreastCancer. AIDatasets loadWine. AIDatasets loadDiabetes. AIDatasets loadDigits. AIDatasets loadMnistTest. AIDatasets loadIris. AIDatasets loadOldFaithful. ``` Loading a new dataset involves downloading the CSV file into the data/ directory in the local folder of your image. Then the data is read from the file and returned to you as a DataFrame object.