Commit
·
297ecde
1
Parent(s):
41d6eb4
Update README.md
Browse files
README.md
CHANGED
|
@@ -44,6 +44,15 @@ dataset_info:
|
|
| 44 |
num_examples: 411232
|
| 45 |
download_size: 311064786
|
| 46 |
dataset_size: 566804417
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 47 |
---
|
| 48 |
# Cross Validated / stats.stackexchange.com
|
| 49 |
|
|
@@ -102,7 +111,9 @@ for sample in iter(ds): print(sample["Body"])
|
|
| 102 |
The original Data Dump formats the "Body" field as HTML, using tags such as `<code>`, `<h1>`, `<ul>`, etc.
|
| 103 |
This HTML format has been converted to Markdown following [mikex86/stackoverflow-posts](https://huggingface.co/datasets/mikex86/stackoverflow-posts) conversion rule.
|
| 104 |
|
| 105 |
-
|
|
|
|
|
|
|
| 106 |
After differencing I saw that my constant/intercept is not statistically significant. Does anybody know how to fit the same model without the const term?
|
| 107 |
im using statsmodels.tsa.arima.model
|
| 108 |
To give a relative example I have: `ARIMA(data, order=(3,0,0))` an AR(3) model and say it that the second coefficient is insignificant. I can get rid of it by typing
|
|
@@ -111,4 +122,4 @@ ARMA(data,order=([1, 3], 0, 0)
|
|
| 111 |
```
|
| 112 |
|
| 113 |
but how can I get rid of coefficient??
|
| 114 |
-
|
|
|
|
| 44 |
num_examples: 411232
|
| 45 |
download_size: 311064786
|
| 46 |
dataset_size: 566804417
|
| 47 |
+
language:
|
| 48 |
+
- code
|
| 49 |
+
- en
|
| 50 |
+
task_categories:
|
| 51 |
+
- question-answering
|
| 52 |
+
- text-generation
|
| 53 |
+
- text2text-generation
|
| 54 |
+
tags:
|
| 55 |
+
- code
|
| 56 |
---
|
| 57 |
# Cross Validated / stats.stackexchange.com
|
| 58 |
|
|
|
|
| 111 |
The original Data Dump formats the "Body" field as HTML, using tags such as `<code>`, `<h1>`, `<ul>`, etc.
|
| 112 |
This HTML format has been converted to Markdown following [mikex86/stackoverflow-posts](https://huggingface.co/datasets/mikex86/stackoverflow-posts) conversion rule.
|
| 113 |
|
| 114 |
+
|
| 115 |
+
**Example:**
|
| 116 |
+
|
| 117 |
After differencing I saw that my constant/intercept is not statistically significant. Does anybody know how to fit the same model without the const term?
|
| 118 |
im using statsmodels.tsa.arima.model
|
| 119 |
To give a relative example I have: `ARIMA(data, order=(3,0,0))` an AR(3) model and say it that the second coefficient is insignificant. I can get rid of it by typing
|
|
|
|
| 122 |
```
|
| 123 |
|
| 124 |
but how can I get rid of coefficient??
|
| 125 |
+
|