Displaying 20 results from an estimated 33 matches for "zle".
Did you mean:
le
2009 Dec 02
4
Again on overlaying plots (a plot region within a plot region)
...rlay on it PLOT 2 with pixmap() as in this example
http://www.stat.auckland.ac.nz/~paul/RGraphics/custombase-pixmap.R
but it seems to me a bit too much complicate
Thanks in advance for your time
--
Ottorino-Luca Pantani, Universit? di Firenze
Dip. Scienza del Suolo e Nutrizione della Pianta
P.zle Cascine 28 50144 Firenze Italia
Ubuntu 8.04.3 LTS -- GNU Emacs 23.0.60.1 (x86_64-pc-linux-gnu, GTK+
Version 2.12.9)
ESS version 5.5 -- R 2.10.0
2009 Sep 03
2
dividing a dataframe column by different constants
...NTAGE <-
ifelse(df.mydata$SAMPLE == "A", df.mydata$CONC / MAX[1],
ifelse(df.mydata$SAMPLE == "B", df.mydata$CONC / MAX[2],
df.mydata$CONC / MAX[3])))
--
Ottorino-Luca Pantani, Universit? di Firenze
Dip. Scienza del Suolo e Nutrizione della Pianta
P.zle Cascine 28 50144 Firenze Italia
Tel 39 055 3288 202 (348 lab) Fax 39 055 333 273
OLPantani at unifi.it http://www4.unifi.it/dssnp/
2024 Jul 08
1
Can we reset CSI u mode on client disconnect? via
...ences and then turn them off. Example .zshrc
snippet:
function skip-csi-sequence() {
local key
while read -sk key && (( $((#key)) < 0x40 || $((#key)) > 0x7E )); do
# empty body
done
if [[ $key = u ]] || [[ $key = "~" ]]; then
# Ensure keys are sent normally, zle doesn't expect modifyOtherKeys / CSI u
# (This means this key press is discarded, but the next one should
be handled.)
printf '\e[>4m\e[<u'
fi
}
zle -N skip-csi-sequence
bindkey '\e[' skip-csi-sequence
Based on that it would probably be possible to write a Zsh...
2009 Nov 12
1
Rearranging long tables, Sweave, xtable, LaTeX
...xtable, but similar to the one
of the first line ?
In other words I do not want to use \longtables and the similar.
Where should I look for info ?
In Latex ? In Sweave ? In xtable ?
Thanks a lot
--
Ottorino-Luca Pantani, Universit? di Firenze
Dip. Scienza del Suolo e Nutrizione della Pianta
P.zle Cascine 28 50144 Firenze Italia
Tel 39 055 3288 202 (348 lab) Fax 39 055 333 273
OLPantani at unifi.it http://www4.unifi.it/dssnp/
2008 May 06
4
Is there in R a function equivalent to the mround, as found in most spreadsheets?
...out success.
Any hint to solve this problem ?
Thanks a lot
http://www.openofficetips.com/blog/archives/2005/04/rounding_to_the.html
http://www.gnome.org/projects/gnumeric/doc/gnumeric-MROUND.shtml
--
Ottorino-Luca Pantani, Universit? di Firenze
Dip. Scienza del Suolo e Nutrizione della Pianta
P.zle Cascine 28 50144 Firenze Italia
Tel 39 055 3288 202 (348 lab) Fax 39 055 333 273
OLPantani at unifi.it http://www4.unifi.it/dssnp/
2013 Oct 19
1
Fail to build shells/zsh on 10.0-BETA1 due to conflict of 'bool' definition between rpcsvc/yp_prot.h and stdbool.h
...K for zsh-5.0.2-doc.tar.bz2.
===> Patching for zsh-5.0.2_1
===> Applying extra patch /am/eastasia/usr0/freebsd/ports/ports/shells/zsh/files/extra-patch-bsdtar
===> Applying FreeBSD patches for zsh-5.0.2_1
===> Configuring for zsh-5.0.2_1
(snip)
cc -c -I. -I../Src -I../Src -I../Src/Zle -I. -I/usr/local/include -DHAVE_CONFIG_H -O2 -pipe -fno-strict-aliasing -o hashnameddir.o hashnameddir.c
In file included from hashnameddir.c:52:
/usr/include/rpcsvc/yp_prot.h:71:15: error: cannot combine with previous 'type-name' declaration specifier
typedef u_int bool;
^
/...
2007 Jul 26
3
substituting dots in the names of the columns (sub, gsub, regexpr)
...rance in the topic of
regular expression and its syntax.
Is there any page with examples, where I can improve my knowledge and
stop being frustrated each time I have to manipulate strings?
8rino
--
Ottorino-Luca Pantani, Universit? di Firenze
Dip. Scienza del Suolo e Nutrizione della Pianta
P.zle Cascine 28 50144 Firenze Italia
Tel 39 055 3288 202 (348 lab) Fax 39 055 333 273
OLPantani at unifi.it
2024 Jul 08
2
Can we reset CSI u mode on client disconnect? via
ssh already restores all TTY flags on exit:
https://github.com/openssh/openssh-portable/blob/V_9_8_P1/sshtty.c#L56-L78
It's possible there are some exit cases that are not hitting the
leave_raw_mode(), but if so then they aren't obvious.
On Sun, 7 Jul 2024, Johannes Altmanninger wrote:
> Some terminals support CSI u style encoding of keystrokes, typically via
> the Kitty keyboard
2007 Dec 03
1
again on ubuntu 7.10 and amd64
...ears.
Thanks a lot for any suggestion
Processor AMD ATHLON 64 DUAL CORE 4000+ (socket AM2)
Mother board ASR SK-AM2 2
Ram Corsair Value 1 GB DDR2 800 Mhz
Hard Disk WESTERN DIGITAL 160 GB SATA2 8MB
--
Ottorino-Luca Pantani, Universit? di Firenze
Dip. Scienza del Suolo e Nutrizione della Pianta
P.zle Cascine 28 50144 Firenze Italia
Tel 39 055 3288 202 (348 lab) Fax 39 055 333 273
OLPantani at unifi.it http://www4.unifi.it/dssnp/
2009 Nov 16
2
on gsub (simple, but not to me!) sintax
...on
gsub('V_\(.\)_', 'V_0\1_', foo)
or I get not what I'm looking for on
gsub('V_._', 'V_0._', foo)
gsub('V_._', 'V_0\1_', foo)
Thanks in advance
--
Ottorino-Luca Pantani, Universit? di Firenze
Dip. Scienza del Suolo e Nutrizione della Pianta
P.zle Cascine 28 50144 Firenze Italia
Ubuntu 8.04.3 LTS -- GNU Emacs 23.0.60.1 (x86_64-pc-linux-gnu, GTK+
Version 2.12.9)
ESS version 5.5 -- R 2.10.0
2012 Apr 10
2
substitution of the ASCII character "squared" AKA "^2" AKA (alt+0178) with a tractable one
...g at the
source, but it is possible only on manual basis, quite inconvenient if
you have to process many files.
Any help ? I'm quite discouraged ...
--
Ottorino-Luca Pantani, Universit? di Firenze
Dip.to di Scienze delle Produzioni Vegetali,
del Suolo e dell'Ambiente Forestale (DiPSA)
P.zle Cascine 28 50144 Firenze Italia
Ubuntu 10.04 -- GNOME 2.30.2
GNU Emacs 23.1.50.1 (x86_64-pc-linux-gnu, GTK+ Version
2.18.0)
ESS version 12.04 -- R 2.15.0
2009 Aug 13
1
R code to reproduce (while studying) Bates & Watts 1988
...idea
##Figure 3.57, pag 94
acf(resid(nls.1), xlim = c(1, 15), lab = c(5, 4, 7))
##Try to fit a model with autocorrelated residues (Problems !!)
nls.2 <- update(nls.1, corr = corAR1(0.67))
--
Ottorino-Luca Pantani, Universit? di Firenze
Dip. Scienza del Suolo e Nutrizione della Pianta
P.zle Cascine 28 50144 Firenze Italia
Tel 39 055 3288 202 (348 lab) Fax 39 055 333 273
OLPantani at unifi.it http://www4.unifi.it/dssnp/
2009 Oct 30
1
How to properly shade the background panels of an xyplot?
...ariables external to the panel
itself.
I suppose that the panel functions are not useful here.
I'm wandering through par.settings, themes and panel.fill, but still
without success.
Any hint ?
--
Ottorino-Luca Pantani, Universit? di Firenze
Dip. Scienza del Suolo e Nutrizione della Pianta
P.zle Cascine 28 50144 Firenze Italia
Ubuntu 8.04.3 LTS -- GNU Emacs 23.0.60.1 (x86_64-pc-linux-gnu, GTK+
Version 2.12.9)
ESS version 5.5 -- R 2.9.2
2007 Dec 05
5
Which Linux OS on Athlon amd64, to comfortably run R?
...ow from you, how can I solve this problem:
Should I install the i386 version of R ?
Should I install another flavour of Linux ?
Which one ?
Fedora Core 7 ?
Debian ?
Thanks a lot, for any suggestion
--
Ottorino-Luca Pantani, Universit? di Firenze
Dip. Scienza del Suolo e Nutrizione della Pianta
P.zle Cascine 28 50144 Firenze Italia
Tel 39 055 3288 202 (348 lab) Fax 39 055 333 273
OLPantani at unifi.it http://www4.unifi.it/dssnp/
2007 Dec 05
5
Which Linux OS on Athlon amd64, to comfortably run R?
...ow from you, how can I solve this problem:
Should I install the i386 version of R ?
Should I install another flavour of Linux ?
Which one ?
Fedora Core 7 ?
Debian ?
Thanks a lot, for any suggestion
--
Ottorino-Luca Pantani, Universit? di Firenze
Dip. Scienza del Suolo e Nutrizione della Pianta
P.zle Cascine 28 50144 Firenze Italia
Tel 39 055 3288 202 (348 lab) Fax 39 055 333 273
OLPantani at unifi.it http://www4.unifi.it/dssnp/
2009 Aug 20
0
[Fwd: Re: Several simple but hard tasks to do with R]
...e use of emacs + ESS + R.
http://ess.r-project.org/
This will complicate things a little more, (A LOT !) but you will not
regret the time spent in learning.
Emacs will be useful in MANY other ways.
--
Ottorino-Luca Pantani, Universit? di Firenze
Dip. Scienza del Suolo e Nutrizione della Pianta
P.zle Cascine 28 50144 Firenze Italia
Tel 39 055 3288 202 (348 lab) Fax 39 055 333 273
OLPantani at unifi.it http://www4.unifi.it/dssnp/
2010 Nov 16
0
LATTICE. On skip, index.cond with a formula like Y~X|A+B
...nes$index.cond
# In this case I think I can only remove columns or rows, but not single
# panels.
# Any suggestion ?
# Thanks in advance for your time.
--
Ottorino-Luca Pantani, Universit? di Firenze
Dip.to di Scienze delle Produzioni Vegetali,
del Suolo e dell'Ambiente Forestale (DiPSA)
P.zle Cascine 28 50144 Firenze Italia
Ubuntu 10.04 -- GNOME 2.30.2
GNU Emacs 23.1.50.1 (x86_64-pc-linux-gnu, GTK+ Version
2.18.0)
ESS version 5.11 -- R 2.12.0
2009 Aug 17
4
Rounding to the nearest 5
Dear all,
A hopefully simple question: how do I round a series of values (held in an object) to the nearest 5? I've checked out trunc, round, floor and ceiling, but these appear to be more tailored towards rounding decimal places.
Thanks,
Steve
_________________________________________________________________
icons.
2010 Oct 19
2
superpose.polygon, panel.polygon and their colors
...})
In other words I can modify the borders, but not the shaded areas.
This sounds strange to me.
Where am I wrong ?
Thanks in advance for your time.
--
Ottorino-Luca Pantani, Universit? di Firenze
Dip.to di Scienze delle Produzioni Vegetali,
del Suolo e dell'Ambiente Forestale (DiPSA)
P.zle Cascine 28 50144 Firenze Italia
Ubuntu 10.04 -- GNU Emacs 23.1.50.1 (x86_64-pc-linux-gnu, GTK+ Version
2.18.0)
ESS version 5.8 -- R 2.10.1
2010 Jan 07
4
link in zpool upgrade -v broken
http://www.opensolaris.org/os/community/zfs/version/
No longer exists. Is there a bug for this yet?
--
Ian.