You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/api_examples/histogram_plot.ipynb
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -134,7 +134,8 @@
134
134
"metadata": {},
135
135
"source": [
136
136
"### 0.3. Create sample data\n",
137
-
"We create a synthetic dataset simulating gene expression data across two experimental conditions to demonstrate how histograms can visualize data distribution."
137
+
"We create a synthetic dataset simulating gene expression data across two experimental\n",
138
+
"conditions to demonstrate how histograms can visualize data distribution."
138
139
]
139
140
},
140
141
{
@@ -260,7 +261,9 @@
260
261
"metadata": {},
261
262
"source": [
262
263
"## 1. Basic Histogram Plot\n",
263
-
"A basic histogram plot can be created by simply providing the `x` and `y` columns from the DataFrame, along with style options like `title`."
264
+
"A basic histogram plot can be created by simply providing the `x` and `y` columns from the DataFrame,\n",
Copy file name to clipboardExpand all lines: docs/api_examples/histogram_plot.py
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -82,7 +82,8 @@
82
82
83
83
# %% [markdown]
84
84
# ### 0.3. Create sample data
85
-
# We create a synthetic dataset simulating gene expression data across two experimental conditions to demonstrate how histograms can visualize data distribution.
85
+
# We create a synthetic dataset simulating gene expression data across two experimental
86
+
# conditions to demonstrate how histograms can visualize data distribution.
86
87
87
88
# %% tags=["hide-input"]
88
89
# Set a random seed for reproducibility of the synthetic data
@@ -117,7 +118,9 @@
117
118
118
119
# %% [markdown]
119
120
# ## 1. Basic Histogram Plot
120
-
# A basic histogram plot can be created by simply providing the `x` and `y` columns from the DataFrame, along with style options like `title`.
121
+
# A basic histogram plot can be created by simply providing the `x` and `y` columns from the DataFrame,
122
+
# along with style options like `title`
123
+
# using [`create_histogram_plot`](vuecore.plots.basic.histogram.create_histogram_plot) .
121
124
122
125
# %%
123
126
# Define output file path for the PNG basic histogram
0 commit comments