Posts by Victor Resende • 33 points
4 posts
-
3
votes1
answer41
viewsQ: Grid on R does not work
Hello, I’m trying to create a chart with the following code: boxplot(covid_DF$obitosNovos ~ month(covid_DF$data), main="Média de obitos novos por mês no Distrito Federal", xlab="Mês",…
-
0
votes0
answers31
viewsQ: Java Random Numbers
Hello, I’m trying to do an exercise involving random numbers with the following code: int sorteio1 = (int)(Math.random() * 6) +1; int sorteio2 = (int)(Math.random() * 6) +1; int sorteio3 =…
javaasked Victor Resende 33 -
1
votes1
answer105
viewsQ: For in the C language
I studied the iterative artifice for and thought the same applied to the following example: for(i = 0; i < 7; i++){Código} However, when studying the pointer part with vectors, I came across the…
-
1
votes1
answer94
viewsQ: What’s a good accuracy?
Hello, I’m a young student and I’ve been working alone on a project. The project involves car sales (analyzing the amount of cars sold) from Norway from 2007 to 2016. I wanted to try to create a…