Commit d642990e authored by G. Jay Kerns's avatar G. Jay Kerns

more changes

parent 767ea20f
...@@ -763,6 +763,13 @@ coefficients with the <code>coef</code> function: ...@@ -763,6 +763,13 @@ coefficients with the <code>coef</code> function:
</pre> </pre>
</div> </div>
<pre class="example">
3-element Float64 Array:
10.8164
-0.0454835
0.19518
</pre>
<p> <p>
and we can finish by looking at a summary table similar to something and we can finish by looking at a summary table similar to something
like <code>summary(treeslm)</code> in R. like <code>summary(treeslm)</code> in R.
...@@ -773,6 +780,14 @@ like <code>summary(treeslm)</code> in R. ...@@ -773,6 +780,14 @@ like <code>summary(treeslm)</code> in R.
<pre class="src src-julia"><span style="color: #0000ff;">coeftable</span>(treeslm) <pre class="src src-julia"><span style="color: #0000ff;">coeftable</span>(treeslm)
</pre> </pre>
</div> </div>
<pre class="example">
3x4 DataFrame:
Estimate Std.Error t value Pr(&gt;|t|)
[1,] 10.8164 1.9732 5.48165 7.44691e-6
[2,] -0.0454835 0.0282621 -1.60935 0.118759
[3,] 0.19518 0.0109553 17.8161 8.2233e-17
</pre>
</div> </div>
</div> </div>
</div> </div>
......
...@@ -397,6 +397,12 @@ coefficients with the =coef= function: ...@@ -397,6 +397,12 @@ coefficients with the =coef= function:
coef(treeslm) coef(treeslm)
#+END_SRC #+END_SRC
#+RESULTS:
: 3-element Float64 Array:
: 10.8164
: -0.0454835
: 0.19518
and we can finish by looking at a summary table similar to something and we can finish by looking at a summary table similar to something
like =summary(treeslm)= in R. like =summary(treeslm)= in R.
...@@ -404,6 +410,13 @@ like =summary(treeslm)= in R. ...@@ -404,6 +410,13 @@ like =summary(treeslm)= in R.
coeftable(treeslm) coeftable(treeslm)
#+END_SRC #+END_SRC
#+RESULTS:
: 3x4 DataFrame:
: Estimate Std.Error t value Pr(>|t|)
: [1,] 10.8164 1.9732 5.48165 7.44691e-6
: [2,] -0.0454835 0.0282621 -1.60935 0.118759
: [3,] 0.19518 0.0109553 17.8161 8.2233e-17
* Export to other formats * Export to other formats
Sooner or later you will want to share your work with others, people Sooner or later you will want to share your work with others, people
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment