Re: [RFC] ob-reticulate: R+Python interface from Babel

2020-08-25 Thread Kyle Andrews
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

Re: [O] orgmode and anova

2016-04-21 Thread Kyle Andrews
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

[O] Bug: sas comments in source blocks confused with headings [8.2.10 (8.2.10-35-g19a7d6-elpaplus @ ~/.emacs.d/elpa/org-plus-contrib-20150406/)]

2015-04-12 Thread Kyle Andrews
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

[O] org-spreadsheet: formatting chops off units

2012-09-05 Thread Kyle Andrews
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

Re: [O] How to integrate org-mode in a MS Windows-/Office-based environment?

2012-07-16 Thread Kyle Andrews
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

Re: [O] Using org-babel with Scheme

2012-02-22 Thread Kyle Andrews
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?