Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 258 Bytes

R.md

File metadata and controls

23 lines (15 loc) · 258 Bytes

R

  • Install a package:
  install.packages("package_name")

Bioinformatics

  • Define the model with example data:
  Model<-lm(Data$Y~Data$x1+Data$x2,data = Data)
  • Give a summary of the model:
  summary(Model)