Skip to content

Commit

Permalink
knit
Browse files Browse the repository at this point in the history
  • Loading branch information
NoaLRX committed Jun 17, 2024
1 parent e465301 commit 75ea922
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ You can install the development version of FastForecast from [GitHub](https://gi
devtools::install_github("NoaLRX/FastForecast")
```

## Functions
## Functions

Here are the different functions that you can use in this package.

Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ You can install the development version of FastForecast from
devtools::install_github("NoaLRX/FastForecast")
```

## Examples
## Functions

Here are the different functions that you can use in this package.

Expand All @@ -45,7 +45,7 @@ column in the dataframe.
To use this function you need to pass a dataframe as the first argument,
a year, month and frequency as the last argument.

For example:
<u>For example:</u>

``` r
ts_transfo(land_w, 2013, 01, 4) # Start the 1st January 2013, with quarterly data
Expand Down Expand Up @@ -161,7 +161,7 @@ and remove the variables not retained by the two methods.

### Econometrics Forecasting Models

This function takes three arguments:
<u>This function takes three arguments:</u>

- `DATAFRAME`: Your dataframes with $n$ rows and $p$ columns (with
$n > p$)
Expand All @@ -177,7 +177,7 @@ eco_models(df, "My_Y_Variable", 12)
eco_models(dataframe, "Gas_Price", 4)
```

This function uses the following models and packages:
<u>This function uses the following models and packages:</u>

- ARX model with gets
([gets](https://cran.r-project.org/web/packages/gets/gets.pdf))
Expand All @@ -202,7 +202,7 @@ This function uses the following models and packages:

### Machine-Learning Forecasting Models

This function takes three arguments:
<u>This function takes three arguments:</u>

- `DATAFRAME`: Your dataframes with $n$ rows and $p$ columns (with
$n > p$)
Expand All @@ -214,7 +214,7 @@ This function takes three arguments:
ml_models(df, "My_Y_Variable")
```

This function uses the following models and packages:
<u>This function uses the following models and packages:</u>

- MLP models
([neuralnet](https://www.rdocumentation.org/packages/neuralnet/versions/1.44.2))
Expand Down

0 comments on commit 75ea922

Please sign in to comment.