Visual Python Documentation
Search…
GETTING STARTED
Welcome to Visual Python
How to install
Installing FAQ
TUTORIALS
Data Preparation
Data Exploration
Data Transformation
Modify DataFrames
Create Subsets
Group & Aggregate DataFrames
Combine DataFrames
Reshape DataFrames
RESOURCES
License
Brand Story
Community
Powered By
GitBook
Create Subsets
To Create Subsets
1.
Click on the
Subset
app.
2.
Select a variable(DataFrame or Series) to subset .
3.
Select the method:
loc
(location): to select rows/columns by label/index/conditions.
iloc
(integer location): to select rows/columns by number.
Subset Rows
1.
Select the method from
Row Subset
box on the left.
2.
Select rows/a range of rows, or Specify conditions:
Indexing
: to select individual items
Slicing
: to select a sequence of elements
Condition
: to filter data with the condition
Subset Columns
1.
Select the method from
Column Subset
box on the right.
2.
Select columns/a range of columns:
Indexing
: to select individual items
Slicing
: to select a sequence of elements
and then,
Run
!
Previous
Modify DataFrames
Next
Group & Aggregate DataFrames
Last modified
3mo ago
Copy link
Contents
To Create Subsets