Use of Tilde ~ in R Last Updated : 28 Nov, 2021 Comments Improve Suggest changes Like Article Like Report In this article, we will be looking at the use of tilde(~) in the R programming language. Tilde symbol l is used within formulas of statistical models, as mainly this symbol is used to define the relationship between the dependent variable and the independent variables in the statistical model formula in the R programming language. The left side of the tilde symbol specifies the target variable (dependent variable or outcome) and the right side of the tilde specifies the predictor variable(independent variables). Using ~ within lm() Function to Estimate Linear Regression Model In this, we will be going through the process of applying the linear regression fitting of the model and further by the use of the tilde symbol will be used inside the lm() function and at the left side of the tilde symbol specifies the target variable (dependent variable or outcome) and the right side of the tilde specifies the predictor variable(independent variables). The ~ symbol defines the predictors and the target variable when used with the lm function in the Rb programming language lm() is used to fit linear models. It can be used to carry out regression, single stratum analysis of variance and analysis of covariance. Syntax: lm(formula, data, subset, weights, na.action,method = "qr", model = TRUE, x = FALSE, y = FALSE, qr = TRUE, singular.ok = TRUE, contrasts = NULL, offset, …) Parameters: formula:-an object of class "formula": a symbolic description of the model to be fitted.data:-an optional data frame, list, or environment containing the variables in the model.subset:-an optional vector specifying a subset of observations to be used in the fitting process.weights:-an optional vector of weights to be used in the fitting process. Should be NULL or a numeric vector. If non-NULL, weighted least squares are used with weights. Example: Program to show use of tilde sign R g1 <- rnorm(1000) g2 <- rnorm(1000) + g1 o<-rnorm(1000) + g1 + g2 gfg <- data.frame(g1, g2, o) model <- lm(o ~ g1 + g2,gfg) summary(model) Output: Example 2: Program to show use of tilde sign R g1 <- rnorm(500) g2 <- rnorm(500) * g1 o<-rnorm(500) + g1 - g2 gfg <- data.frame(g1, g2, o) model <- lm(o ~ g1 + g2,gfg) summary(model) Output: Comment More infoAdvertise with us G geetansh044 Follow Improve Article Tags : R Language R-basics Explore R Tutorial | Learn R Programming Language 4 min read IntroductionR Programming Language - Introduction 4 min read Interesting Facts about R Programming Language 4 min read R vs Python 5 min read Environments in R Programming 3 min read Introduction to R Studio 4 min read How to Install R and R Studio? 4 min read Creation and Execution of R File in R Studio 5 min read Clear the Console and the Environment in R Studio 2 min read Hello World in R Programming 2 min read Fundamentals of RBasic Syntax in R Programming 3 min read Comments in R 3 min read R-Operators 5 min read R-Keywords 2 min read R-Data Types 5 min read VariablesR Variables - Creating, Naming and Using Variables in R 5 min read Scope of Variable in R 5 min read Dynamic Scoping in R Programming 5 min read Lexical Scoping in R Programming 4 min read Input/OutputTaking Input from User in R Programming 7 min read Printing Output of an R Program 4 min read Print the Argument to the Screen in R Programming - print() Function 2 min read Control FlowControl Statements in R Programming 4 min read Decision Making in R Programming - if, if-else, if-else-if ladder, nested if-else, and switch 3 min read Switch case in R 2 min read For loop in R 5 min read R - while loop 5 min read R - Repeat loop 2 min read goto statement in R Programming 2 min read Break and Next statements in R 3 min read FunctionsFunctions in R Programming 5 min read Function Arguments in R Programming 4 min read Types of Functions in R Programming 6 min read Recursive Functions in R Programming 4 min read Conversion Functions in R Programming 4 min read Data StructuresData Structures in R Programming 4 min read R Strings 6 min read R-Vectors 4 min read R-Lists 6 min read R - Array 7 min read R-Matrices 10 min read R-Factors 4 min read R-Data Frames 6 min read Object Oriented ProgrammingR-Object Oriented Programming 7 min read Classes in R Programming 3 min read R-Objects 3 min read Encapsulation in R Programming 3 min read Polymorphism in R Programming 6 min read R - Inheritance 7 min read Abstraction in R Programming 3 min read Looping over Objects in R Programming 5 min read S3 class in R Programming 8 min read Explicit Coercion in R Programming 3 min read Error HandlingHandling Errors in R Programming 3 min read Condition Handling in R Programming 5 min read Debugging in R Programming 3 min read Like