Graficas con matlab y pandas

Graficas con matlab y pandas

University

10 Qs

quiz-placeholder

Similar activities

Python Quiz - 2.6

Python Quiz - 2.6

University

12 Qs

taQuizz_4

taQuizz_4

University

11 Qs

DSA Dec Batch Numpy,Pandas,Matplotlib Quiz

DSA Dec Batch Numpy,Pandas,Matplotlib Quiz

University

10 Qs

Python Quiz-2.2

Python Quiz-2.2

University

12 Qs

Python with DataScience

Python with DataScience

7th Grade - University

10 Qs

IDS TAE-III

IDS TAE-III

University

9 Qs

TA MODUL 8 (VERSI 2)

TA MODUL 8 (VERSI 2)

University

10 Qs

Tugas PJJ DA I 2022

Tugas PJJ DA I 2022

University

8 Qs

Graficas con matlab y pandas

Graficas con matlab y pandas

Assessment

Quiz

Computers

University

Medium

Created by

Ma. Guadalupe Roque

Used 43+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Instrucción para abrir y cargar todos los datos en un data frame dt- desde archivo tacos.csv

df = pd.read_csv("tacos.csv")

df = pd.read_csv(tacos.csv)

pd.read_csv("tacos.csv")

pd.read_csv(tacos.csv)

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Instrucción para crear la lista con los datos de la columna total_profit

profit=df[ total_profit ]

df['total_profit']

df[ total_profit ]

profit=df[ 'total_profit' ]

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Instrucción para mostrar una gráfica de líneas -de las ganancias de cada mes.

list_p = df ['total_profit']

list_m = df['month_number']

plt.plot(list_m, list_p)

plt.plot(list_p, list_m)

plt.plot [ list_m , list_p]

plt.plot[list_p, list_m]

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Media Image

Instrucciones para desplegar los string que estan junto a la estrellita rosa.

plt.ylabel('Month Number')

plt.xlabel('Sales units in number')

plt.title('Month Number')

plt.title('Sales units in number'')

plt.xlabel('Month Number')

plt.ylabel('Sales units in number')

plt.label('Month Number')

plt.label('Sales units in number')

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

¿Función que si no la añadimos en el programa no muestra la gráfica?

plt.bar(list_m, list_p)

plt.show()

plt.plot(list_m, list_p)

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

¿Función para dibujar una gráfica de líneas?

plt.bar(list_m, list_p)

plt.line(list_m, list_p)

plt.plot(list_m, list_p)

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

¿Función para dibujar una gráfica de barras?

plt.bar(monthList, list_p)

plt.line(monthList, list_p)

plt.plot(monthList, list_p)

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?