https://github.com/neemiasbsilva/linear-regression-js
Predicting Brain Weight Based on Head Size Using Linear Regression (JavaScript Programing Language)
https://github.com/neemiasbsilva/linear-regression-js
headbrain-dataset javascript linear-regression linear-regression-javascript
Last synced: over 1 year ago
JSON representation
Predicting Brain Weight Based on Head Size Using Linear Regression (JavaScript Programing Language)
- Host: GitHub
- URL: https://github.com/neemiasbsilva/linear-regression-js
- Owner: neemiasbsilva
- Created: 2020-07-24T14:44:37.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-11T20:57:26.000Z (about 5 years ago)
- Last Synced: 2025-01-05T13:13:40.138Z (over 1 year ago)
- Topics: headbrain-dataset, javascript, linear-regression, linear-regression-javascript
- Language: JavaScript
- Homepage:
- Size: 40 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Predicting Brain Weight Based on Head Size Using Linear Regression.
## How to Get Dataset
The dataset was available on [kaggle compettion - head brain](https://www.kaggle.com/jemishdonda/headbrain).
## What is Regression?
_Regression is a form of predictive modelling technique which investigates the relationship between a dependent and independent variable_
## Undestanding Linear Regression

Example of how work linear regression algorithm step by step.
## Getting Started
### Prerequisites
What things you need to undertand this repository
```
Good knowledgment in Linear Regression, and know how to use Node.js server using command-line interpreter.
```
### Installing
After dowload [Node.js](https://nodejs.org/en/) you need to iniatialize new Node.js project in your terminal:
```
npm init -y
```
The next step is install some librarys:
```
npm install csvtojson ml-regression --save
```
## Usage
To run the regression algorithm, you need to open your terminal and type the following command:
```
node app.js
```
#
Sincerely: Neemias B. da Silva
#