Posts by Alice Ramos • 53 points
2 posts
-
5
votes1
answer84
viewsQ: How to select samples in R
How to select 100 size samples n = 10, without replacement, using a population of N = 1000? My population: set.seed(1234) x <- rnorm(1000, mean = 100, sd = 20)…
rasked Alice Ramos 53 -
-3
votes1
answer33
viewsQ: When I run the error appears: "Car() takes in Arguments". Can anyone help me? I don’t know what I did wrong
class Car(): """Uma tentativa simples de representar um carro.""" def _init_(self, make, model, year): """Inicializa os atributos…