Contenido del Curso
Visualization in Python with matplotlib
Visualization in Python with matplotlib
Set Ticks and Limits
Tarea
Swipe to show code editor
Using the .set()
function, set the following parameters:
- limit values on the x-axis to
(0, 30000)
; - limit values on the y-axis to
(40, 80)
; - set ticks on the x-axis so that they will have a step of
5000
(for instance,0, 5000, 10000, 15000, ...
). You can use thenp.arange(start, end, step)
function there. It will generate numbers fromstart
toend
with the step ofstep
.
Solución
Cambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
¿Todo estuvo claro?
¡Gracias por tus comentarios!
Sección 3. Capítulo 4
Set Ticks and Limits
Tarea
Swipe to show code editor
Using the .set()
function, set the following parameters:
- limit values on the x-axis to
(0, 30000)
; - limit values on the y-axis to
(40, 80)
; - set ticks on the x-axis so that they will have a step of
5000
(for instance,0, 5000, 10000, 15000, ...
). You can use thenp.arange(start, end, step)
function there. It will generate numbers fromstart
toend
with the step ofstep
.
Solución
Cambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
¿Todo estuvo claro?
¡Gracias por tus comentarios!
Sección 3. Capítulo 4
Cambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones