We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
R codes:
T-TEST: R CODE:
x<-rnorm(100) one sample T-Test t.test(x, mu = 5)
x<-rnorm(100)
one sample T-Test t.test(x, mu = 5)
codes used for analyzing the data:
df1<-read.csv("type11.csv") df1 av=as.numeric(df1$No.of.companies) a=rep() for (i in av) { a=append(a,i) } m=sum(av) m=m/length(av) print("mean is : ") print(m) print(a) hist(a,ylim = c(0,30),col = blues9)
df1<-read.csv("location11.csv") df1 av=as.numeric(df1$No.of.companies) a=rep() for (i in av) { a=append(a,i) } m=sum(av) m=m/length(av) print("mean is : ") print(m) print(a) hist(a,ylim = c(0,30),col = blues9)
code used for barplot:
library(corrplot)
corrplot(corr=cor(disclosedfunding.df[,c(4,5,6,9)]),method="ellipse")
code used for small graph: barplot(yeartable, xlab="Year", ylab = "No. of Startups which received funding", col="lightblue" )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
R codes:
T-TEST:
R CODE:
defining sample vector
codes used for analyzing the data:
df1<-read.csv("type11.csv")
df1
av=as.numeric(df1$No.of.companies)
a=rep()
for (i in av)
{
a=append(a,i)
}
m=sum(av)
m=m/length(av)
print("mean is : ")
print(m)
print(a)
hist(a,ylim = c(0,30),col = blues9)
df1<-read.csv("location11.csv")
df1
av=as.numeric(df1$No.of.companies)
a=rep()
for (i in av)
{
a=append(a,i)
}
m=sum(av)
m=m/length(av)
print("mean is : ")
print(m)
print(a)
hist(a,ylim = c(0,30),col = blues9)
code used for barplot:
library(corrplot)
corrplot 0.84 loaded
corrplot(corr=cor(disclosedfunding.df[,c(4,5,6,9)]),method="ellipse")
code used for small graph:
barplot(yeartable, xlab="Year", ylab = "No. of Startups which received funding", col="lightblue" )
The text was updated successfully, but these errors were encountered: