-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update split by group added docu and added better error messages
- Loading branch information
1 parent
c310124
commit bab0531
Showing
4 changed files
with
37 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<div class="boxed-output"> | ||
<h4><strong>Split Dataset</strong></h4> | ||
<p> | ||
This modal window enables users to select a subset of their dataset. | ||
The process involves two drop-down menus: | ||
</p> | ||
<ul> | ||
<li><strong>Column Selection:</strong> The first drop-down menu displays the column names from the dataset. Users can select one or more columns for splitting.</li> | ||
<li><strong>Group Selection:</strong> The second drop-down menu presents the unique values (levels) for the selected columns. These values are displayed below each respective column.</li> | ||
</ul> | ||
<p> | ||
By selecting the desired groups, users can filter the dataset accordingly. | ||
Notably, if multiple columns are selected, the data is split sequentially based on the order of the selected columns. | ||
</p> | ||
</div> | ||
|