Funnel Charts
Big Number
Coming soon!
Wordcloud
src.dx.plotting.dex.basic_charts.wordcloud(df, word_column, size, text_format='sentence', word_rotation=None, random_coloring=False, return_view=False, **kwargs)
Generates a DEX wordcloud from the given DataFrame.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
df |
DataFrame
|
The DataFrame to plot. |
required |
word_column |
str
|
The column to use for the words in the cloud. |
required |
size |
str
|
The column to use for the size of the words in the cloud. |
required |
text_format |
DEXTextDataFormat
|
The format of the text data. Either |
'sentence'
|
word_rotation |
Optional[DEXWordRotate]
|
The rotation to use for the words in the cloud ( |
None
|
random_coloring |
bool
|
Whether to use random coloring for the words in the cloud. |
False
|
return_view |
bool
|
Whether to return a |
False
|
**kwargs |
Additional keyword arguments to pass to the view metadata. |
{}
|
Source code in src/dx/plotting/dex/basic_charts.py
Dimension Matrix
Coming soon!
Violin
src.dx.plotting.dex.summary_charts.violin(df, split_by, metric, bins=30, show_interquartile_range=False, column_sort_order='asc', column_sort_type='string', return_view=False, **kwargs)
Generates a DEX violin plot from the given DataFrame.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
df |
DataFrame
|
The DataFrame to plot. |
required |
split_by |
str
|
The column to use for splitting the data. |
required |
metric |
str
|
The column to use to show distribution and density. |
required |
bins |
int
|
The number of bins to use for the violin plot. |
30
|
show_interquartile_range |
bool
|
Whether to show the interquartile range. |
False
|
column_sort_order |
DEXSortColumnsByOrder
|
The order to sort the columns by. ( |
'asc'
|
column_sort_type |
DEXSortColumnsByType
|
The type of sorting to use. ( |
'string'
|
return_view |
bool
|
Whether to return a |
False
|
**kwargs |
Additional keyword arguments to pass to the view metadata. |
{}
|
Source code in src/dx/plotting/dex/summary_charts.py
Boxplot
Coming soon!
Heatmap
Coming soon!
Histogram
Coming soon!
Ridgeline
Coming soon!
Horizon
Coming soon!
Hexbin
Coming soon!