Displaying 20 results from an estimated 48 matches for "gine".
Did you mean:
fine
2024 Feb 12
1
Avoiding Delete key function as 'Quit R' in Rterm when there are no characters in cursor line
...t.org/show_bug.cgi?id=18666
Best
Tomas
> Iago
>
> ________________________________
> De: CALUM POLWART <polc1410 at gmail.com>
> Enviat el: divendres, 9 de febrer de 2024 18:28
> Per a: Duncan Murdoch <murdoch.duncan at gmail.com>
> A/c: Iago Gin? V?zquez <iago.gine at sjd.es>; r-help at r-project.org <r-help at r-project.org>
> Tema: Re: [R] Avoiding Delete key function as 'Quit R' in Rterm when there are no characters in cursor line
>
> I don't use term, but I've just tested it and this is reproducable.
>
> Is it a bug...
2024 Feb 09
1
Avoiding Delete key function as 'Quit R' in Rterm when there are no characters in cursor line
Duncan, do you think it's worth to comment this in R-devel list?
Iago
________________________________
De: CALUM POLWART <polc1410 at gmail.com>
Enviat el: divendres, 9 de febrer de 2024 18:28
Per a: Duncan Murdoch <murdoch.duncan at gmail.com>
A/c: Iago Gin? V?zquez <iago.gine at sjd.es>; r-help at r-project.org <r-help at r-project.org>
Tema: Re: [R] Avoiding Delete key function as 'Quit R' in Rterm when there are no characters in cursor line
I don't use term, but I've just tested it and this is reproducable.
Is it a bug? Not sure. If you hit...
2024 Feb 09
1
Avoiding Delete key function as 'Quit R' in Rterm when there are no characters in cursor line
...Rterm in Windows.
> >
> > Iago
> > ------------------------------------------------------------------------
> > *De:* Duncan Murdoch <murdoch.duncan at gmail.com>
> > *Enviat el:* divendres, 9 de febrer de 2024 13:50
> > *Per a:* Iago Gin? V?zquez <iago.gine at sjd.es>
> > *Tema:* Re: [R] Avoiding Delete key function as 'Quit R' in Rterm when
> > there are no characters in cursor line
> > On 09/02/2024 6:25 a.m., Iago Gin? V?zquez wrote:
> >> Hi all,
> >>
> >> I cite from README.Rterm
> >>...
2024 Mar 01
1
gsub issue with consecutive pattern finds
...tition specifier. I used
"?" for the optional character below (which must be escaped).
> gsub("([aeiouAEIOU])\\?*([aeiouAEIOU])", "\\1_\\2", "aerioue")
[1] "a_eri_ou_e"
Cheers,
Bert
On Fri, Mar 1, 2024 at 3:59?AM Iago Gin? V?zquez <iago.gine at sjd.es> wrote:
>
> Hi Iris,
>
> Thank you. Further, very nice solution.
>
> Best,
>
> Iago
>
> On 01/03/2024 12:49, Iris Simmons wrote:
> > Hi Iago,
> >
> >
> > This is not a bug. It is expected. Patterns may not overlap. However, there
&g...
2024 Apr 12
1
Debugging functions defined (locally) inside another functions
...ce() it,
inserting a call to debug(g) after it's created.
How should I call trace() if f was a function?
Best regards,
Iago
________________________________
De: Ivan Krylov <ikrylov at disroot.org>
Enviat el: divendres, 12 d??abril de 2024 14:38
Per a: Iago Gin?? V??zquez <iago.gine at sjd.es>
A/c: r-help at r-project.org <r-help at r-project.org>
Tema: Re: [R] Debugging functions defined (locally) inside another functions
?? Fri, 12 Apr 2024 12:15:07 +0000
Iago Gin?? V??zquez <iago.gine at sjd.es> ??????:
> f <- function(whatever){
> ...
> g...
2024 Apr 12
1
Debugging functions defined (locally) inside another functions
? Fri, 12 Apr 2024 12:15:07 +0000
Iago Gin? V?zquez <iago.gine at sjd.es> ?????:
> f <- function(whatever){
> ...
> g <- function(whatever2){
> ...
> }
> ...
> }
>
> If I wanted to debug some thing directly inside f I would do
> debug(f). But this does not go inside g code. On the other hand,
> debug...
2020 Jan 15
4
A bug understanding F relative to FALSE?
Hi all,
Is the next behaviour suitable?
identical(F,FALSE)
## [1] TRUE
utils::getParseData(parse(text = "c(F,FALSE)", keep.so=rce = TRUE))
## line1 col1 line2 col2 id parent token terminal text
## 14 1 1 1 10 14 0 expr FALSE
## 1 1 1 1 1 1 3 SYMBOL_FUNCTION_CALL TRUE c
## 3 1 1 1 1 3
2024 Mar 01
1
gsub issue with consecutive pattern finds
...t;\\1_", "aerioue", perl = TRUE, ignore.case =
> TRUE)
>
> ## or
>
> gsub("(?i)([aeiou])(?=[aeiou])", "\\1_", "aerioue", perl = TRUE)
> ```
>
> I hope this helps!
>
>
> On Fri, Mar 1, 2024, 06:37 Iago Gin? V?zquez<iago.gine at sjd.es> wrote:
>
>> Hi all,
>>
>> I tested next command:
>>
>> gsub("([aeiouAEIOU])([aeiouAEIOU])", "\\1_\\2", "aerioue")
>>
>> with the following output:
>>
>> [1] "a_eri_ou_e"
>>
>>...
2024 May 15
1
FR: Customize background colour of row and column headers for the View output
...bbg = guiColors[dataeditbg];
Thanks!
Iago
[1] https://svn.r-project.org/R/trunk/src/library/utils/src/windows/dataentry.c
________________________________
De: Duncan Murdoch <murdoch.duncan at gmail.com>
Enviat el: dimarts, 14 de maig de 2024 14:22
Per a: Iago Gin?? V??zquez <iago.gine at sjd.es>; r-devel at R-project.org <r-devel at r-project.org>
A/c: Ivan Krylov <ikrylov at disroot.org>
Tema: Re: FR: Customize background colour of row and column headers for the View output
This seems like something that should be fairly easily doable. Why
don't you work ou...
2024 May 14
1
FR: Customize background colour of row and column headers for the View output
...,
> Iago
> ------------------------------------------------------------------------
> *De:* Ivan Krylov <ikrylov at disroot.org>
> *Enviat el:* dilluns, 13 de maig de 2024 14:34
> *Per a:* Duncan Murdoch <murdoch.duncan at gmail.com>
> *A/c:* Iago Gin? V?zquez <iago.gine at sjd.es>; r-help at r-project.org
> <r-help at r-project.org>
> *Tema:* Re: [R] Is there some way to customize colours for the View output?
> ? Mon, 13 May 2024 06:08:22 -0400
> Duncan Murdoch <murdoch.duncan at gmail.com> ?????:
>
>> The row and column names...
2024 Feb 09
1
Avoiding Delete key function as 'Quit R' in Rterm when there are no characters in cursor line
Yes, indeed, I am talking about Rterm in Windows.
Iago
________________________________
De: Duncan Murdoch <murdoch.duncan at gmail.com>
Enviat el: divendres, 9 de febrer de 2024 13:50
Per a: Iago Gin? V?zquez <iago.gine at sjd.es>
Tema: Re: [R] Avoiding Delete key function as 'Quit R' in Rterm when there are no characters in cursor line
On 09/02/2024 6:25 a.m., Iago Gin? V?zquez wrote:
> Hi all,
>
> I cite from README.Rterm
>
> ^D, DEL?????: Delete the character under the cursor.
>
&g...
2019 Sep 13
2
Printing chinese characters (UTF-8) on R 3.5.2 -windows 10
But if I type
> "?"
the output is
[1] "?"
so seemingly it can be represented. Or, am I wrong?
Best
Iago
________________________________
De: Tomas Kalibera <tomas.kalibera at gmail.com>
Enviat el: divendres, 13 de setembre de 2019 11:24
Per a: IAGO GIN? V?ZQUEZ <i.gine at pssjd.org>; r-devel at r-project.org <r-devel at r-project.org>
Tema: Re: [Rd] Printing chinese characters (UTF-8) on R 3.5.2 -windows 10
On 9/13/19 11:01 AM, IAGO GIN? V?ZQUEZ wrote:
> I have a chinese character on a data frame, but the output of printing it is its UTF-8 code. Conc...
2019 Sep 13
2
Printing chinese characters (UTF-8) on R 3.5.2 -windows 10
...gt;
> >
> > Best
> > Iago
> > ------------------------------------------------------------------------
> > *De:* Tomas Kalibera <tomas.kalibera at gmail.com>
> > *Enviat el:* divendres, 13 de setembre de 2019 11:24
> > *Per a:* IAGO GIN? V?ZQUEZ <i.gine at pssjd.org>; r-devel at r-project.org
> > <r-devel at r-project.org>
> > *Tema:* Re: [Rd] Printing chinese characters (UTF-8) on R 3.5.2
> > -windows 10
> > On 9/13/19 11:01 AM, IAGO GIN? V?ZQUEZ wrote:
> > > I have a chinese character on a data frame, bu...
2024 Mar 01
1
gsub issue with consecutive pattern finds
...```R
gsub("([aeiou])(?=[aeiou])", "\\1_", "aerioue", perl = TRUE, ignore.case =
TRUE)
## or
gsub("(?i)([aeiou])(?=[aeiou])", "\\1_", "aerioue", perl = TRUE)
```
I hope this helps!
On Fri, Mar 1, 2024, 06:37 Iago Gin? V?zquez <iago.gine at sjd.es> wrote:
> Hi all,
>
> I tested next command:
>
> gsub("([aeiouAEIOU])([aeiouAEIOU])", "\\1_\\2", "aerioue")
>
> with the following output:
>
> [1] "a_eri_ou_e"
>
> So, there are two consecutive vowels where an un...
2024 May 14
1
FR: Customize background colour of row and column headers for the View output
...tps://ibb.co/Dkn2pVs).
Could this be implemented?
Thank you!
Best regards,
Iago
________________________________
De: Ivan Krylov <ikrylov at disroot.org>
Enviat el: dilluns, 13 de maig de 2024 14:34
Per a: Duncan Murdoch <murdoch.duncan at gmail.com>
A/c: Iago Gin?? V??zquez <iago.gine at sjd.es>; r-help at r-project.org <r-help at r-project.org>
Tema: Re: [R] Is there some way to customize colours for the View output?
?? Mon, 13 May 2024 06:08:22 -0400
Duncan Murdoch <murdoch.duncan at gmail.com> ??????:
> The row and column names don't appear to be contr...
2024 Feb 09
1
Avoiding Delete key function as 'Quit R' in Rterm when there are no characters in cursor line
...s, indeed, I am talking about Rterm in Windows.
>
> Iago
> ------------------------------------------------------------------------
> *De:* Duncan Murdoch <murdoch.duncan at gmail.com>
> *Enviat el:* divendres, 9 de febrer de 2024 13:50
> *Per a:* Iago Gin? V?zquez <iago.gine at sjd.es>
> *Tema:* Re: [R] Avoiding Delete key function as 'Quit R' in Rterm when
> there are no characters in cursor line
> On 09/02/2024 6:25 a.m., Iago Gin? V?zquez wrote:
>> Hi all,
>>
>> I cite from README.Rterm
>>
>> ^D, DEL?????: Delete...
2024 May 13
1
Is there some way to customize colours for the View output?
...did not change. May this be a bug?
Thank you for your help.
Best regards,
Iago
________________________________
De: Rolf Turner <rolfturner at posteo.net>
Enviat el: dimarts, 7 de maig de 2024 23:58
Per a: Duncan Murdoch <murdoch.duncan at gmail.com>
A/c: Iago Gin? V?zquez <iago.gine at sjd.es>; r-help at r-project.org <r-help at r-project.org>; Achim Zeileis <Achim.Zeileis at uibk.ac.at>
Tema: Re: [R] Is there some way to customize colours for the View output?
On Tue, 7 May 2024 06:34:50 -0400
Duncan Murdoch <murdoch.duncan at gmail.com> wrote:
> On...
2005 Jan 27
3
Domain admins not getting local admin rights
...ed "nsu", which is a member of "domain admins", modify files in
C:\WINNT, or modify the local registry, etc.
On a W2K orkstation, In the Local Users and Groups applet I can see that
the local "Administrators" does in fact contain "PD/Domain Admins" and
it gines a partial listing of the group's SID.
I cannot confirm if this is the same SID as my SID in samba for "Domain
Admins". It should be the same, right? Can anyone suggest a tool I could
use to confirm this?
I *really* don't want to have to add a domain group of people who should...
2019 Sep 13
0
Printing chinese characters (UTF-8) on R 3.5.2 -windows 10
...--------------------------------------------------------------
> > *De:* Tomas Kalibera <tomas.kalibera at gmail.com
> <mailto:tomas.kalibera at gmail.com>>
> > *Enviat el:* divendres, 13 de setembre de 2019 11:24
> > *Per a:* IAGO GIN? V?ZQUEZ <i.gine at pssjd.org
> <mailto:i.gine at pssjd.org>>; r-devel at r-project.org
> <mailto:r-devel at r-project.org>
> > <r-devel at r-project.org <mailto:r-devel at r-project.org>>
> > *Tema:* Re: [Rd] Printing chinese characters (UTF-8) on R 3.5....
2024 May 15
1
FR: Customize background colour of row and column headers for the View output
...-project.org/R/trunk/src/library/utils/src/windows/dataentry.c>
> ------------------------------------------------------------------------
> *De:* Duncan Murdoch <murdoch.duncan at gmail.com>
> *Enviat el:* dimarts, 14 de maig de 2024 14:22
> *Per a:* Iago Gin? V?zquez <iago.gine at sjd.es>; r-devel at R-project.org
> <r-devel at r-project.org>
> *A/c:* Ivan Krylov <ikrylov at disroot.org>
> *Tema:* Re: FR: Customize background colour of row and column headers
> for the View output
> This seems like something that should be fairly easily doab...