x
column for the x-axis and the y
column for the y-axis.
Expand
age
for the x-axis, salary
for the y-axis and group by gender
.
We can also add a line of best fit to each group in the plot.
Expand
gender + nationality
with the equation gender + nationality
.
We can then group by this new column.
Expand
gender
, one which groups by location
and one which groups by both.
We can then save this and revisit this dashboard again any time in future,
whenever more data is added into the project.
Expand
Expand
time
for the x-axis, speed
for the y-axis and group by model
.
Expand
Expand
identity
column before,
we can create a derived endpoint
column to plot a unique line for each model
+ provider
combination.
Let’s create some dummy data for this scenario:
Open in your console
Expand
Expand
n
bins on the x-axis, and plot the count of data in each bin on the y-axis.
For example, let’s say we want to see the distribution of user traffic over the past year.
Has our product been gaining traction?
Open in your console
Expand