Skip to main content

How to Run/Compile C/C++ code in Vs code Windows

Comments

Popular posts from this blog

MongoDB: Data Types

MongoDB Data Types   : MongoDB stores documents on disk in the BSON serialization format. BSON is a binary representation of JSON documents, though BSON data format provides more data types than JSON.

MongoDB - Create Database

MongoDB - Create Database If you want to check your databases list, use the command show dbs Your created database (mydb) is not present in list. To display database, you need to insert at least one document into it. MongoDB use DATABASE_NAME is used to create a database. > use database_name

Linear Regression (Python Implementation)

  Linear regression is perhaps one of the most well known and well-understood algorithms in statistics and machine learning. In this post, you will discover the linear regression algorithm, how it works, and how you can best use it in on your machine learning projects. Contents… •Linear Regression •Simple Linear Regression •Multiple Linear Regression •Assumptions •Applications L inear Regression A statistical approach for modeling relationship between a dependent variable with a given set of independent variables. We refer dependent variables as response and independent variables as  features Simple Linear Regression Simple linear regression is an approach for predicting a response using a single feature. It is assumed that the two variables are linearly related. Hence, we try to find a linear function that predicts the response value(y) as accurately as possible as a function of the feature or independent variable(x). Let us consider a dataset where we have a value of respon...