Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sibeux/data-mining-college
Lecture Data Mining Semester 4, University of Jember using Jupyter Notebook Miniconda Visual Studio Code by Nasrul Wahabi - sibeux [nasrulwahabi - sibe ux]
https://github.com/sibeux/data-mining-college
college data-science datamining ipython-notebook jupyter-notebook miniconda python sibeux
Last synced: 6 days ago
JSON representation
Lecture Data Mining Semester 4, University of Jember using Jupyter Notebook Miniconda Visual Studio Code by Nasrul Wahabi - sibeux [nasrulwahabi - sibe ux]
- Host: GitHub
- URL: https://github.com/sibeux/data-mining-college
- Owner: sibeux
- Created: 2022-03-24T06:59:57.000Z (over 2 years ago)
- Default Branch: MyProgram
- Last Pushed: 2022-07-12T07:03:28.000Z (over 2 years ago)
- Last Synced: 2024-10-12T15:24:06.668Z (about 1 month ago)
- Topics: college, data-science, datamining, ipython-notebook, jupyter-notebook, miniconda, python, sibeux
- Language: Jupyter Notebook
- Homepage:
- Size: 1.04 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# data-mining-college
# Samples-Data-Mining
This is the README file for SAMPLES-DATA-MINING.
The end of the file has setup instructions.
************************************************************************************
Use or operation of this code is subject to acceptance of the license available in the code
repository for this code.
************************************************************************************
SAMPLES-DATA-MINING is meant for use with the InterSystems IRIS. It provides a copy of the
Iris data set, which is well known in pattern recognition literature. You can use this data
to explore the Predictive Model Markup Language (PMML) capability of InterSystems IRIS Data
Platform.If you have a suitable license, you can also use this data with InterSystems IRIS Business Intelligence.
In addition to the data, the sample also includes various analytics model elements based on this data.
## Contents of the DataMining package
* `DataMining.IrisDataset` is the core class. This class defines the data set. See [this article](http://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cls?KEY=APMML).
* `DataMining.PMML.Iris` defines a PMML model based on this data. See [this article](http://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cls?KEY=APMML).
* `DataMining.IrisCube` is a cube definition based on the same data. To use this class,
you must have a license that includes analytics capabilities.
* The classes in `DataMining.ClusterAnalysis` provide a demo and test for the Cluster Analysis
algorithms included as part of the InterSystems IRIS analytics capabilities. To use this class,
you must have a license that includes analytics capabilities.These classes all provide detailed descriptions, visible as part of the class reference.
After you have set up the sample, go to http://localhost:52773/csp/documatic/%25CSP.Documatic.clsReplace `localhost` with the name of your InterSystems IRIS server instance, and replace 52773 with the
web server port used by that instance.## Setup instructions
1. Clone or [download](http://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cls?KEY=asamples) the repository.
2. If you have not yet created a namespace in InterSystems IRIS, follow the [detailed instructions](http://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cls?KEY=ASAMPLES_createns) to do so.
3. Open the InterSystems IRIS Terminal.
4. Enter the following command (replacing `mynamespace` with the namespace where you want to load the sample):
```
ZN "mynamespace"
```
5. Enter the following commands (replacing with the full path of the `buildsample/Build.DataMiningSample.cls` file):
```
do $system.OBJ.Load("full-path-to-Build.DataMiningSample.cls","ck")do ##class(Build.DataMiningSample).Build()
```
6. When prompted, enter the full path of the directory to which you downloaded this sample. The method then loads and compiles the code and performs other needed setup steps.