668 B
668 B
| 1 | # example_dataset.csv |
|---|---|
| 2 | # This is a small example dataset to demonstrate the dataset-splitter plugin. |
| 3 | # It contains [NUMBER] rows and [NUMBER] columns. |
| 4 | # The first row is the header row, defining the column names. |
| 5 | # You can replace this with your own dataset. |
| 6 | # To use this dataset with the plugin, save it as a .csv file and place it in the same directory as your plugin execution. |
| 7 | # Column descriptions: |
| 8 | # - feature1: [DESCRIPTION OF FEATURE 1] |
| 9 | # - feature2: [DESCRIPTION OF FEATURE 2] |
| 10 | # - target: [DESCRIPTION OF TARGET VARIABLE] |
| 11 | feature1,feature2,target |
| 12 | 1.0,2.0,0 |
| 13 | 3.0,4.0,1 |
| 14 | 5.0,6.0,0 |
| 15 | 7.0,8.0,1 |
| 16 | 9.0,10.0,0 |
| 17 | 11.0,12.0,1 |
| 18 | 13.0,14.0,0 |
| 19 | 15.0,16.0,1 |
| 20 | 17.0,18.0,0 |
| 21 | 19.0,20.0,1 |