Re: S-M-{,} on CLOCK timestamp

2021-08-21 Thread Tim Cross


"Jorge P. de Morais Neto"  writes:

> Keywords: org-timestamp-down org-timestamp-up
>
> Hi.  Suppose the buffer has the following text:
>
> * Task A
> :LOGBOOK:
> CLOCK: [2021-08-21 sáb 18:00]--[2021-08-21 sáb 18:10] =>  0:10
> :END:
>
> * Task B
> :LOGBOOK:
> CLOCK: [2021-08-21 sáb 18:18]
> :END:
>
> If I invoke M-S- on Task B's clock-in timestamp, with point right
> after the colon that separates HH from MM, then it correctly changes to
> 18:15 (decreases by three minutes), but Task A's clock-out timestamp
> changes to 18:05---decreases by *five* minutes.
>
> In my opinion, in this case the previous clock-out timestamp should not
> change at all, because it was already less than 18:15.  But even if you
> do think it should change, then surely you at least agree that it should
> change by *three* minutes, just like Task A's clock-in timestamp.
>
> This occurs on GNU Emacs 28.0.50 installed with
> ~guix package --with-branch=emacs-next=master -i emacs-next~
> (upgraded last Thursday morning), invoked as ~emacs -Q~.  Note that on
> my Guix-installed Emacs, an ~emacs -Q~ does load the emacs-org Guix
> package (version 9.4.6).  Note also that my Org Mode has been patched
> with Ihor Radchenko's patch to org-clock.el (attached to my previous
> message), but it clearly can't influence this problem.
>
> Regards
>
> Emacs  : GNU Emacs 28.0.50 (build 1, x86_64-pc-linux-gnu, GTK+ Version 
> 3.24.24, cairo version 1.16.0)
> Package: Org mode version 9.4.6 (9.4.6-gab9f2a @
> /gnu/store/yg6kjzigqyfzbkzj99xmwmv3nssvhvnq-emacs-org-9.4.6/share/emacs/site-lisp/org-9.4.6/)


I cannot reproduce this.

When I do the same, I don't see any change in Task A's timestamp at all.
There must be some other setting in play here which I don't have.



Re: Bug: org-timestamp-{down,up} with numeric argument on time range modifies length [9.4.6 (9.4.6-gab9f2a @ /gnu/store/yg6kjzigqyfzbkzj99xmwmv3nssvhvnq-emacs-org-9.4.6/share/emacs/site-lisp/org-9.4.6

2021-08-21 Thread Tim Cross


Confirm.

I am able to confirm this bug using Emacs 27.2 and org 9.4.6 from ELPA.

It seems that when changing the first time interval with a C-u argument
to set the amount of change, the units are not applied to the second
time in the interval, it always changes by 5. So

[2021-08-22 Sun 10:00-11:00] with S- gives
[2021-08-22 Sun 10:05-11:05]

but 

[2021-08-22 Sun 10:00-11:00] with C-u 42 S- gives
[2021-08-22 Sun 10:42-11:05]

and

[2021-08-22 Sun 10:00-11:00] with C-u 42 S- gives
[2021-08-22 Sun 10:18-11:55]

the size of the change units does not need to be 42. Problem exists with
any unit > 5.

Note that this issue seems to only be applied to minutes. The hours
change looks to be correct.

"Jorge P. de Morais Neto"  writes:

> [1. text/x-diff; 
> 0001-Correctly-handle-org-log-note-clock-out-non-interact.patch]...
>
> Hello everyone!  The manual says:
>
>
> ‘S-’ (‘org-timestamp-up’)
> ‘S-’ (‘org-timestamp-down’)
>  On the beginning or enclosing bracket of a timestamp, change its
>  type.  Within a timestamp, change the item under point.  Point can
>  be on a year, month, day, hour or minute.  When the timestamp
>  contains a time range like ‘15:30-16:30’, modifying the first time
>  also shifts the second, shifting the time block with constant
>  length. [...]
>
> However, on the timestamp [2021-08-21 sáb 10:00-12:00], with point right
> after the first colon, typing C-u 42 S- results in
> [2021-08-21 sáb 10:42-12:05].  The problem also occurs with S-.
>
> This occurs on GNU Emacs 28.0.50 installed with
> ~guix package --with-branch=emacs-next=master -i emacs-next~
> (upgraded last Thursday morning), invoked as ~emacs -q~.  Note that on
> my Guix-installed Emacs, an ~emacs -q~ does load the emacs-org Guix
> package (version 9.4.6).  Note also that my Org Mode has been patched
> with Ihor Radchenko's patch to org-clock.el (attached), but it clearly
> can't influence this problem.
>
> Regards
>
> Emacs  : GNU Emacs 28.0.50 (build 1, x86_64-pc-linux-gnu, GTK+ Version 
> 3.24.24, cairo version 1.16.0)
> Package: Org mode version 9.4.6 (9.4.6-gab9f2a @
> /gnu/store/yg6kjzigqyfzbkzj99xmwmv3nssvhvnq-emacs-org-9.4.6/share/emacs/site-lisp/org-9.4.6/)




S-M-{,} on CLOCK timestamp

2021-08-21 Thread Jorge P. de Morais Neto
Keywords: org-timestamp-down org-timestamp-up

Hi.  Suppose the buffer has the following text:

* Task A
:LOGBOOK:
CLOCK: [2021-08-21 sáb 18:00]--[2021-08-21 sáb 18:10] =>  0:10
:END:

* Task B
:LOGBOOK:
CLOCK: [2021-08-21 sáb 18:18]
:END:

If I invoke M-S- on Task B's clock-in timestamp, with point right
after the colon that separates HH from MM, then it correctly changes to
18:15 (decreases by three minutes), but Task A's clock-out timestamp
changes to 18:05---decreases by *five* minutes.

In my opinion, in this case the previous clock-out timestamp should not
change at all, because it was already less than 18:15.  But even if you
do think it should change, then surely you at least agree that it should
change by *three* minutes, just like Task A's clock-in timestamp.

This occurs on GNU Emacs 28.0.50 installed with
~guix package --with-branch=emacs-next=master -i emacs-next~
(upgraded last Thursday morning), invoked as ~emacs -Q~.  Note that on
my Guix-installed Emacs, an ~emacs -Q~ does load the emacs-org Guix
package (version 9.4.6).  Note also that my Org Mode has been patched
with Ihor Radchenko's patch to org-clock.el (attached to my previous
message), but it clearly can't influence this problem.

Regards

Emacs  : GNU Emacs 28.0.50 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.24, 
cairo version 1.16.0)
Package: Org mode version 9.4.6 (9.4.6-gab9f2a @ 
/gnu/store/yg6kjzigqyfzbkzj99xmwmv3nssvhvnq-emacs-org-9.4.6/share/emacs/site-lisp/org-9.4.6/)

-- 
- Disinformation flourishes because many people care about injustice
  but very few check the facts.  Ask me about 
- I am Brazilian.  I hope my English is correct and I welcome feedback.
- Free Software Supporter: https://www.fsf.org/free-software-supporter
- If an email of mine arrives at your spam box, please notify me.



Bug: org-timestamp-{down,up} with numeric argument on time range modifies length [9.4.6 (9.4.6-gab9f2a @ /gnu/store/yg6kjzigqyfzbkzj99xmwmv3nssvhvnq-emacs-org-9.4.6/share/emacs/site-lisp/org-9.4.6/)]

2021-08-21 Thread Jorge P. de Morais Neto
>From 7dc855ae1d7992eaacc2cab13a39c6000e4e66bf Mon Sep 17 00:00:00 2001
Message-Id: <7dc855ae1d7992eaacc2cab13a39c6000e4e66bf.1622468529.git.yanta...@gmail.com>
From: Ihor Radchenko 
Date: Mon, 31 May 2021 21:39:51 +0800
Subject: [PATCH] Correctly handle org-log-note-clock-out non-interactively

* org-clock.el (org-clock-out): Delay log popup to
after-command-hook to avoid messing up non-interactive calls.
`org-add-log-setup' without 'note argument would raise interactive
note buffer immediately, so we do pass the 'note argument.
---
 org-clock.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/org-clock.el b/org-clock.el
index 3b7d97639..0328bddd3 100644
--- a/org-clock.el
+++ b/org-clock.el
@@ -1691,7 +1691,7 @@ (defun org-clock-out ( switch-to-state fail-quietly at-time)
 (line-beginning-position 2)))
 		(org-log-note-clock-out
 		 (org-add-log-setup
-		  'clock-out nil nil nil
+		  'clock-out nil nil 'note
 		  (concat "# Task: " (org-get-heading t) "\n\n"
 	  (when org-clock-mode-line-timer
 	(cancel-timer org-clock-mode-line-timer)
-- 
2.26.3

Hello everyone!  The manual says:


‘S-’ (‘org-timestamp-up’)
‘S-’ (‘org-timestamp-down’)
 On the beginning or enclosing bracket of a timestamp, change its
 type.  Within a timestamp, change the item under point.  Point can
 be on a year, month, day, hour or minute.  When the timestamp
 contains a time range like ‘15:30-16:30’, modifying the first time
 also shifts the second, shifting the time block with constant
 length. [...]

However, on the timestamp [2021-08-21 sáb 10:00-12:00], with point right
after the first colon, typing C-u 42 S- results in
[2021-08-21 sáb 10:42-12:05].  The problem also occurs with S-.

This occurs on GNU Emacs 28.0.50 installed with
~guix package --with-branch=emacs-next=master -i emacs-next~
(upgraded last Thursday morning), invoked as ~emacs -q~.  Note that on
my Guix-installed Emacs, an ~emacs -q~ does load the emacs-org Guix
package (version 9.4.6).  Note also that my Org Mode has been patched
with Ihor Radchenko's patch to org-clock.el (attached), but it clearly
can't influence this problem.

Regards

Emacs  : GNU Emacs 28.0.50 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.24, 
cairo version 1.16.0)
Package: Org mode version 9.4.6 (9.4.6-gab9f2a @ 
/gnu/store/yg6kjzigqyfzbkzj99xmwmv3nssvhvnq-emacs-org-9.4.6/share/emacs/site-lisp/org-9.4.6/)
-- 
- Disinformation flourishes because many people care about injustice
  but very few check the facts.  Ask me about 
- I am Brazilian.  I hope my English is correct and I welcome feedback.
- Free Software Supporter: https://www.fsf.org/free-software-supporter
- If an email of mine arrives at your spam box, please notify me.


Re: Number format for table results outut from R data.frame/tibble

2021-08-21 Thread Jeremie Juste


Hello, John

For my workflow, I generally use the minimum from xtable and do the
formatting in org-mode using the :post parameter to call another lisp code
block.


That said, as Chuck said, you can go a long way with xtable. In my
attic, I found the following code where I take only the core data from
xtable and do formatting in org-mode. This code may be a little
extravagant on the latex side but, it shows the possibilities.

HTH,

Jeremie

#+LATEX_HEADER: \usepackage{booktabs}
#+LATEX_HEADER: \usepackage{array}
#+LATEX_HEADER: \usepackage{setspace}
#+LATEX_HEADER: \usepackage{dcolumn}
#+LATEX_HEADER: \usepackage{array}
#+LATEX_HEADER: \usepackage{setspace}
#+LATEX_HEADER:\usepackage{longtable,tabularx,ltablex}
#+LATEX_HEADER:\usepackage{siunitx}
#+LATEX_HEADER:\usepackage[flushleft]{threeparttablex}


#+Name: add-table-env
#+BEGIN_SRC emacs-lisp :var  table="TABLE" notes="NOTES" caption="CAPTION" 
:results silent :exports none
(replace-regexp-in-string 
"begin{tabular}.*\\S.*\\toprule\\|end{tabular}" "" 
(format "\\scriptsize{
\\begin{center}
\\begin{TableNotes}\\footnotesize
 \\item[\\hspace{-\\fontdimen2\\font}]   
%s
\\end{TableNotes}
\\begin{ThreePartTable}
 \\sisetup{table-format=-2.3, table-space-text-post=***, 
table-number-alignment=center}
\\keepXColumns
\\begin{tabularx}{\\textwidth}{l *{3}{D..{5.3}}}
\\caption{%s} 
\\toprule
\\toprule
\\multicolumn{1}{c}{colnum 1} &\\multicolumn{1}{c}{colnum 2}   
  \\cmidrule(lr){1-1}  \\cmidrule(lr){2-2}  

%s
\\insertTableNotes
\\end{tabularx}
\\end{ThreePartTable}
\\end{center}
}
\\pagebreak
" notes caption table))
 #+END_SRC




#+begin_src R :session foo :results output latex :post add-table-env(*this*, 
"Some note", "A caption" ) :exports results
  library(tibble)
  library(xtable)
  tmp <- tibble(x=1:5, y=x/pi)
  print.xtable(xtable(tmp),
   include.colnames=FALSE,include.rownames=FALSE,floating=FALSE,
   comment = FALSE,dcolumn=TRUE,booktabs=TRUE
  ,sanitize.text.function = function(x) {
x[x=="NA"] <-""
x})
#+end_src




Re: Number format for table results outut from R data.frame/tibble

2021-08-21 Thread Berry, Charles



> On Aug 21, 2021, at 9:58 AM, John Hendy  wrote:
> 
> 
> Interesting, and thanks for taking a look. I don't think I specified
> sufficiently that I'm actually aiming for latex/pdf output and
> therefore want the org table. 

John,

If you want a latex export, you should use one of the many R packages[1] that 
format R objects for latex output.

For example:

#+begin_src R :session foo :results output latex
library(tibble)
library(xtable)
tmp <- tibble(x=1:5, y=x/pi)
xtable(tmp)
#+end_src

#+RESULTS:
#+begin_export latex

% latex table generated in R 4.1.0 by xtable 1.8-4 package
% Sat Aug 21 10:23:18 2021
\begin{table}[ht]
\centering
\begin{tabular}{rrr}
  \hline
 & x & y \\ 
  \hline
1 &   1 & 0.32 \\ 
  2 &   2 & 0.64 \\ 
  3 &   3 & 0.95 \\ 
  4 &   4 & 1.27 \\ 
  5 &   5 & 1.59 \\ 
   \hline
\end{tabular}
\end{table}
#+end_export

The xtable() and its print method have loads of options for formatting, setting 
environments and labels, and adding captions.

If you insist on doing this in org without the assistance of an R package, you 
will need to use a `:post' header argument.  If you have solid elisp skills, 
this is a viable option.

HTH,
Chuck

[1] One list of such is at: 
https://stackoverflow.com/questions/5465314/tools-for-making-latex-tables-in-r



Re: Number format for table results outut from R data.frame/tibble

2021-08-21 Thread John Hendy
On Fri, Aug 6, 2021 at 2:30 PM Berry, Charles  wrote:
>
> John,
>
> > On Aug 6, 2021, at 8:38 AM, John Hendy  wrote:
> >
> > Greetings,
> >
> > I'm wondering how to align the results from the R buffer (which I
> > like) vs. the results printed by Org-mode for table results. Here's a
> > toy example:
> >
>
> `tbl_df' objects come with their own print/show method. And it does things 
> like add color and text formats. This is nice in a terminal, but not when you 
> want to display them in org.
>
> Turning off the color might be enough to give you a usable result:
>
> #+begin_src R :session foo :results output drawer
> library(tibble)
> options( cli.num_colors=1 )
> tmp <- tibble(x=1:5, y=x/pi)
> tmp
> #+end_src
>
> #+RESULTS:
> :results:
>
> # A tibble: 5 x 2
>   x y
>
> 1 1   0.3
> 2 2   0.6
> 3 3   1.
> 4 4   1.
> 5 5   2.
> :end:
>

Interesting, and thanks for taking a look. I don't think I specified
sufficiently that I'm actually aiming for latex/pdf output and
therefore want the org table. I can just add my own header row and get
booktabs formatting free upon export. If I keep with :results output,
the color options trick does remove a bunch of garbage from the
output... but :results value still yields:

#+RESULTS:
| 1 | 0.318309886183791 |
| 2 | 0.636619772367581 |
| 3 | 0.954929658551372 |
| 4 |  1.27323954473516 |
| 5 |  1.59154943091895 |

I was hoping there was a way to either (a) have org post-format or (b)
take the results as printed. I'm not sure on the exact mechanism used
which creates the mismatched output in the session vs. the table. I
get that behind the scenes I still have long, irrational numbers
here... it's just that if org can print them with x decimal places, is
there some way to get Org to intercept *those* values?

John

>
> If this is not close to what you need, I suggest writing your own formatting 
> function. If you have limited emacs-lisp skill, I suggest doing this in R.
>
> HTH,
>
> Chuck



Re: forms and org-mode

2021-08-21 Thread Ihor Radchenko
Tim Cross  writes:

> Transient on the other hand is a UI library for getting user input where
> the options are a little too complex/large for the more common input
> methods - for example, it could be a good candidate for the export
> 'menu'. which I find can be very frustrating on a smaller screen when
> you have lots of defined export back-ends.

I agree. Other good candidates are org-agenda dispatcher and org-attach
dispatcher.

Best,
Ihor




Bug: Unable to follow links to org files using org-open-at-point when the link is located in a property drawer [9.4.4 (release_9.4.4 @ /home/sync0/.emacs.d/straight/build/org/)]

2021-08-21 Thread Carlos Alberto Rivera Carreño



Remember to cover the basics, that is, what you expected to happen and
what in fact did happen.  You don't know how to make a good report?  See

 https://orgmode.org/manual/Feedback.html#Feedback

Your bug report will be posted to the Org mailing list.

Hello,

I am using org-id to create links between org-mode files. I am trying to
place such links as properties in property drawers in this way:

:PROPERTIES:
:AUTHOR:  [[id:1e705ded-0364-412d-bb01-02a99fc78694][John Doe]]
:END:

The problem is that when I try to follow such links using
org-open-at-point, I get an error message like this:

org-id-open: Cannot find entry with ID "1e705ded-0364-412d-bb01-02a99fc78694"

which is puzzling since both the file and the org-id exist. I even
attempted reloading with org-id-update-id-locations, but the problem
persists.

Thank you very much for your help.

Emacs  : GNU Emacs 27.2 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.27, 
cairo version 1.17.4)
 of 2021-03-26
Package: Org mode version 9.4.4 (release_9.4.4 @ 
/home/sync0/.emacs.d/straight/build/org/)

-- 
Carlos RIVERA CARRENO

Doctorant en sciences économiques
Laboratoire Triangle (UMR 5206)
Université Lyon 2

(+57) 31 36 85 98 72



Bug: unexpected behavior of nesting braces when exporting to LaTeX

2021-08-21 Thread Chlo De
Hello,

I use Org-mode to take notes. I found that when there are nesting braces inside 
\emph{ }, \textit{ }, etc. the output is unexpected. The following org text

\emph{{n+1}-a}
\textit{a{b}c}

will be translated as LaTeX expressions

\emph\{\{n+1\}-a\}
\textit\{a\{b\}c\}

Can this be fixed?
Best,
Yue


Re: forms and org-mode

2021-08-21 Thread Tim Cross


Ihor Radchenko  writes:

> Greg Minshall  writes:
>
>> wasn't there also some talk a while back about whatever form'ish
>> technology "magit" uses?  my sense was it provides something similar to
>> Emacs forms.
>
> To clarify, I am not aware about Emacs forms (unless you refer to
> widgets used in customize interface). Magit uses transient which is one
> of the possible completion interfaces in Emacs.
>

Yes, Emacs Forms is part of Emacs and provides an interface for
collecting data - either it is based on Emacs widgets or something very
similar. Very much like old 'form' data entry interfaces we use to see
on terminals in the 80s. A bit like ncurses with a little 'window'
decoration. 

Transient on the other hand is a UI library for getting user input where
the options are a little too complex/large for the more common input
methods - for example, it could be a good candidate for the export
'menu'. which I find can be very frustrating on a smaller screen when
you have lots of defined export back-ends.




Re: forms and org-mode

2021-08-21 Thread Ihor Radchenko
Greg Minshall  writes:

> wasn't there also some talk a while back about whatever form'ish
> technology "magit" uses?  my sense was it provides something similar to
> Emacs forms.

To clarify, I am not aware about Emacs forms (unless you refer to
widgets used in customize interface). Magit uses transient which is one
of the possible completion interfaces in Emacs.

Best,
Ihor



Re: forms and org-mode

2021-08-21 Thread Greg Minshall
Ihor,

> A possible alternative to forms could be using custom capture templates
> for table lines. You can restrict the captured information to a specific
> list or a function (like org-read-date).

wasn't there also some talk a while back about whatever form'ish
technology "magit" uses?  my sense was it provides something similar to
Emacs forms.

cheers, Greg



Re: forms and org-mode

2021-08-21 Thread Ihor Radchenko
Jude DaShiell  writes:

> Interesting, thanks for your response.  I keep tables in their own files,
> one table per file to minimize complexity.

A possible alternative to forms could be using custom capture templates
for table lines. You can restrict the captured information to a specific
list or a function (like org-read-date).

Best,
Ihor



Re: forms and org-mode

2021-08-21 Thread Jude DaShiell
Interesting, thanks for your response.  I keep tables in their own files,
one table per file to minimize complexity.


On Sat, 21 Aug 2021, Tim Cross wrote:

>
> OK, but I'm still a little unclear exactly what you are asking about.
>
> If it is just a general question about whether Emacs Forms could be used
> for data input into an org table, the basic answer is yes, I think so.
>
> If your asking if anyone has done this - not that I'm aware of.
>
> If your asking how hard it would be to do, well that depends.
>
> The biggest challenge I can see is that Emacs forms expects a data file
> which  just consists of one record per line where each record is
> separated by a specific character. That part is not too hard. However,
> where things might get tricky is if you want to keep the data in an org
> file with other org data.
>
> I imagine you could maintain a table in a data file fairly easily. You
> can use the org '|' as the field separators and you would likely need to
> write an input and output filter function to remove white space and add
> it back on writing. None of this would be too hard.
>
> However, if you wanted an emacs forms interface to one or more tables
> inside a normal org file, it might be more tricky. You would need a far
> more sophisticated input/output filters and possibly need to narrow the
> file or do something else to help the filter functions target the data.
>
> It has been many years since I used Emacs Forms. From memory, I gave up
> on them as the level of maintenance exceeded the usefulness. I guess it
> all really depends on how much data you need to edit and how predictable
> the target data files are.
>
> .
> Jude DaShiell  writes:
>
> > My reason for using forms to do data input into org tables is to minimize
> > errors in the data input to the org tables.
> >
> > On Sat, 21 Aug 2021, Tim Cross wrote:
> >
> >>
> >> So you are asking about using Emacs forms for data input into an org
> >> table?
> >>
> >> Just not clear on what exactly your asking about.
> >>
> >> Jude DaShiell  writes:
> >>
> >> > A table with a time stamp column, a text column for notes and an interval
> >> > column rounded to nearest hour.  Any statistics to be calculated on that
> >> > intervals column.
> >> >
> >> >
> >> > On Sat, 21 Aug 2021, Ihor Radchenko wrote:
> >> >
> >> >> Can you elaborate?
> >> >>
> >> >>
> >>
> >>
> >>
>
>
>



Re: forms and org-mode

2021-08-21 Thread Tim Cross


OK, but I'm still a little unclear exactly what you are asking about.

If it is just a general question about whether Emacs Forms could be used
for data input into an org table, the basic answer is yes, I think so.

If your asking if anyone has done this - not that I'm aware of.

If your asking how hard it would be to do, well that depends.

The biggest challenge I can see is that Emacs forms expects a data file
which  just consists of one record per line where each record is
separated by a specific character. That part is not too hard. However,
where things might get tricky is if you want to keep the data in an org
file with other org data.

I imagine you could maintain a table in a data file fairly easily. You
can use the org '|' as the field separators and you would likely need to
write an input and output filter function to remove white space and add
it back on writing. None of this would be too hard.

However, if you wanted an emacs forms interface to one or more tables
inside a normal org file, it might be more tricky. You would need a far
more sophisticated input/output filters and possibly need to narrow the
file or do something else to help the filter functions target the data.

It has been many years since I used Emacs Forms. From memory, I gave up
on them as the level of maintenance exceeded the usefulness. I guess it
all really depends on how much data you need to edit and how predictable
the target data files are.

.
Jude DaShiell  writes:

> My reason for using forms to do data input into org tables is to minimize
> errors in the data input to the org tables.
>
> On Sat, 21 Aug 2021, Tim Cross wrote:
>
>>
>> So you are asking about using Emacs forms for data input into an org
>> table?
>>
>> Just not clear on what exactly your asking about.
>>
>> Jude DaShiell  writes:
>>
>> > A table with a time stamp column, a text column for notes and an interval
>> > column rounded to nearest hour.  Any statistics to be calculated on that
>> > intervals column.
>> >
>> >
>> > On Sat, 21 Aug 2021, Ihor Radchenko wrote:
>> >
>> >> Can you elaborate?
>> >>
>> >>
>>
>>
>>




Re: forms and org-mode

2021-08-21 Thread Jude DaShiell
My reason for using forms to do data input into org tables is to minimize
errors in the data input to the org tables.

On Sat, 21 Aug 2021, Tim Cross wrote:

>
> So you are asking about using Emacs forms for data input into an org
> table?
>
> Just not clear on what exactly your asking about.
>
> Jude DaShiell  writes:
>
> > A table with a time stamp column, a text column for notes and an interval
> > column rounded to nearest hour.  Any statistics to be calculated on that
> > intervals column.
> >
> >
> > On Sat, 21 Aug 2021, Ihor Radchenko wrote:
> >
> >> Can you elaborate?
> >>
> >>
>
>
>