Course Content
Visualization in Python with matplotlib
Visualization in Python with matplotlib
Group by Continuous Variable
Task
Swipe to begin your solution
This time, we are goint to paint the points for the same scatter plot in respect to the 'hdi'
column values.
-
Initialize a scatter plot with the next parameters:
- Set points color (
c
) to the'hdi'
column values of thedata
; - Set colormap (
cmap
) to'plasma'
.
Save the call of the
.scatter()
function to thecax
variable. - Set points color (
-
Apply
.colorbar()
function toFigure
object assigningcax
as an argument.
Solution
Switch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?
Thanks for your feedback!
Section 3. Chapter 10
Group by Continuous Variable
Task
Swipe to begin your solution
This time, we are goint to paint the points for the same scatter plot in respect to the 'hdi'
column values.
-
Initialize a scatter plot with the next parameters:
- Set points color (
c
) to the'hdi'
column values of thedata
; - Set colormap (
cmap
) to'plasma'
.
Save the call of the
.scatter()
function to thecax
variable. - Set points color (
-
Apply
.colorbar()
function toFigure
object assigningcax
as an argument.
Solution
Switch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?
Thanks for your feedback!
Section 3. Chapter 10
Switch to desktop for real-world practiceContinue from where you are using one of the options below