Texto formateado como Negrita
Texto formateado como Cursiva
Texto formateado como negritra y cursiva
Texto tachado
Texto subrayado
mtcars$cyl
x <- table(mtcars$cyl)
colores <- c("orange","blue","purple")
barchart_001 <- barplot(x,xlab="Cilindros",ylab="Frecuencias",main="Número de cilindros",
c
import numpy as np
import matplotlib.pyplot as plt
# creating the dataset
data = {'C':20, 'C++':15, 'Java':30,
'Python':35}
courses = list(data.keys())
values = list(data.values())
fig = plt.figure(figsize = (10, 5))
# creating the bar plot
plt.bar(courses, values, color ='maroon',
width = 0.4)
plt.xlabel("Courses offered")
plt.ylabel("No. of students enrolled")
plt.title("Students enrolled in different courses")
plt.show()
USE Northwind;
SELECT * FROM Products;