I have a file with 50 comments and 3 variables in Excel (.xlsx) file, and I made it into .csv. I used banco1<- read.csv("teste1.csv") to create the table in R, but my 3 variables appear in the same column. How do I make them appear sep...
I do not understand what happens. Please note
> x<-c(-2,4,-6,5,9,7)
> x
[1] -2 4 -6 5 9 7
> order(x)
[1] 3 1 2 4 6 5
I do not understand why the x-vector is not ordered. Look, when I give order(x) add 7
And in...
I have grafo and I calculated the distribution of grades and grade as follows:
dd <- degree_distribution(graph)
d <- degree(graph)
From this, I estimated the Power Law , to see if my distribution follows the "Power law"...
Guys, I have a problem. I have 200 spreadsheets with some data from a search, and I'm importing it into R, and because they have different columns, I assign each element in my list a different spreadsheet.
I need to look up a name that can be in...
I want to generate separate databases in a loop. In the example below there would be 3 distinct bases with the following names: "data1", "data2", "data3".
for (n in 1:3){
dados<-paste0("dados",n)
dados<-runif(10,1,20)}
However, wh...
I'm trying to make a chart of Needles suggested in the Matter of Non-parametric Methods in the Histogram Study.
I found a command called rug() , but it does not seem like the idea.
I can not correctly position the names in an R barplot because they are too long. My data looks like this:
Thenamesendupappearingthisway:
fator_tecnologico_labels <- c(
"Facilidade de testar\n e de ser avaliado\n por usuários\n de um m...
Consider the objects:
vectorA<-1:10
vectorU<-1:10
vector<-1:10
vector1<-1:10
vector86<-1:10
How to remove objects that contain numbers?
How to remove objects that contain uppercase letters?
My goal is to do this all...
I'd like to know how I can get information about sharing posts on Facebook, such as name and id of users, and share date and time.
In the RFacebook package, you can get the same information but refer to tastings and comments, not shares....
Suppose you have the following data:
a<-c(rep("agosto",3),rep("janeiro",4),rep("maio",6))
table(a)
I want to know which month with the least amount of comments?
With the function min(table(a)) the response is the minimum value...