Hi Jack,
As a frequent reticulate user I am very excited to see this patch. I hope
others feel the same and it gets included into org mode as I cannot wait to
use it.
Best Regards,
Kyle
On Mon, Aug 24, 2020, 11:28 Jack Kamm wrote:
> Hi all,
>
> Reticulate is an R package for interfacing betwee
If you wanted to fit a linear regression model with R, you could do so with
the lm function. Calling anova on the output of the regression would give
you a regression anova table.
model <- lm(delivered_seeing ~ zeenith_seeing, data = delsee)
anova(model)
You would need non-zero residuals for that
I included SAS code for reference in an org file and noticed that a SAS
comment breaks the folding feature. The buffer is folded only until the
comment. The snippet below placed in an org-buffer should clarify what I
mean.
<
** SAS
#+BEGIN_SRC sas
* a full line comment in SAS code;
proc mixe
Hello everyone,
I want to use an org-spreadsheet to perform unit conversions for me.
| Mass (g) | Mass (lb) |
|--+---|
| 300 g| 0.66138679 lb |
| 23 kg| 50.706320 lb |
| 50 Mg| 110231.13 lb |
#+TBLFM: $2=uconvert($1, lb)
I made the table above, but can't fi
Hi Martin,
You should be able to link to Excel and Word documents from Org by
prefixing the normal path with "file+sys:" instead of just file. This
doesn't work when the files are on a Windows Share (at least for me),
though. I'm also interested in getting a robust connection between Org and
Out
I am having both of these issues on Emacs 24. Emacs crashes sometimes on
geiser and babel won't evaluate scheme code as Racket code despite setting
'scheme-program-name and 'org-babel-scheme-cmd to "racket". However, Guile
will work if both of those variables hold "guile".
Any new developments?