Displaying 20 results from an estimated 135 matches for "jeffery".
2012 Jul 10
1
Help with vectors and rollapply
Hello
I have a vector a =(-2,0,0,0,1,0,0,3,0,0,-4)
I want to replace all zeros into previous non-zero state. So for instance the above vector should be converted into:
a= (-2,-2,-2,-2,1,1,1,3,3,3,-4)
I tried many things and finally concluded that probably(?) rollapply may be the best way?
I tried
f= function(x){
ifelse(x==0,Lag(x),x)
}
And then, rollappy(a,1,f) and that
2019 May 29
3
Making a package CITATION file from BibTeX
Dear Colleagues,
I would like to provide a CITATION file for my package nat.nblast [1].
I have the correct citation in BibTeX format [2]. How can I convert this
BibTeX to the format needed by R for a package CITATION file (I have a
lot of other packages needing citations ...).
I think what I need is the opposite of RefManageR::toBiblatex [3]. This
seems like it should be a common need, so I
2011 Dec 06
1
Read Windows BMP format images
Hello,
Does anyone know of an R package that can read Windows BMP format images? Many thanks,
Greg Jefferis.
--
Gregory Jefferis, PhD
Division of Neurobiology
MRC Laboratory of Molecular Biology,
Hills Road,
Cambridge, CB2 0QH, UK.
http://www2.mrc-lmb.cam.ac.uk/group-leaders/h-to-m/g-jefferis
2006 Jun 15
1
Access and assign list sub-elements using a string such as "l$a$b"
If I have a list I can set a sub-element as follows on the command line:
people=list()
people$tom$hair="brown"
people
But what if I have a string containing the name of the sub-element that I
want to access?
subel= "people$tom$hair"
get(subel) # returns error
assign(subel,"red") # silent but doesn't change list
people
The attempts above using assign/get
2003 Sep 22
1
Data frame from list of lists
This seems to be a simple problem, and I feel that there ought to be a
simple answer, but I can't seem to find it.
I have a function that returns a number of values as a heterogeneous list -
always the same length and same names(), but a number of different data
types, including character. I want to apply it to many inputs, resulting in
a list of lists.
I would like to turn this list of
2006 Jul 02
7
xen will only load images built for xen v3.0
...get as
far as the initial loading screen which happens to be failing with:
"xen will only load images built for xen v3.0"
I am following the instructions outlined at
http://qa.mandriva.com/twiki/bin/view/Main/HowToXen
Any hints on where I should start debugging this problem?
cheers,
Jeffery
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
http://lists.xensource.com/xen-users
2019 May 29
0
Making a package CITATION file from BibTeX
On Thu, 30 May 2019, Dr Gregory Jefferis wrote:
> Dear Colleagues,
>
> I would like to provide a CITATION file for my package nat.nblast [1].
>
> I have the correct citation in BibTeX format [2]. How can I convert this
> BibTeX to the format needed by R for a package CITATION file (I have a
> lot of other packages needing citations ...).
(1) You can use read.bib() from the
2001 Sep 22
2
Finding a 3D convex hull in R
Dear List Members,
I'm presently carrying out morphological analysis of a data set of neuronal
structures. These are essentially 3D binary trees. In due course I will be
trying to use discriminant analysis or other methods to classify these
neurons based on morphological variables such as total tree length, segment
number etc.
I would like to calculate a 3D convex hull for a set of X,Y,Z
2006 Jan 10
2
Correct way to test for exact dimensions of matrix or array
Dear R Users,
I want to test the dimensions of an incoming vector, matrix or array safely
and succinctly. Specifically I want to check if the unknown object has
exactly 2 dimensions with a specified number of rows and columns.
I thought that the following would work:
> obj=matrix(1,nrow=3,ncol=5)
> identical( dim( obj) , c(3,5) )
[1] FALSE
But it doesn't because c(3,5) is numeric
2007 Jan 01
2
minimum install Disks required
Hi,
I am currently downloading CentOS-4.4-i386-bin1of4.iso and was wondering
what is the minimum number of install disks I require to get a working
install of Centos ? Do I need to download all four of the disks ?
cheers,
Jeffery
-------------- next part --------------
A non-text attachment was scrubbed...
Name: jeffery.vcf
Type: text/x-vcard
Size: 293 bytes
Desc: not available
URL: <http://lists.centos.org/pipermail/centos/attachments/20070102/e281d5d9/attachment-0001.vcf>
2016 Nov 10
12
[Bug 98677] New: [NVAC] iMac9, 1 effective backlight brightness range changes after S3
...Product: xorg
Version: unspecified
Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: NEW
Severity: normal
Priority: medium
Component: Driver/nouveau
Assignee: nouveau at lists.freedesktop.org
Reporter: jefferym at gmail.com
QA Contact: xorg-team at lists.x.org
Created attachment 127900
--> https://bugs.freedesktop.org/attachment.cgi?id=127900&action=edit
dmesg output after the resume with some nouveau trace options
I have an iMac 9,1 where the behaviour of the backlight of the built in...
2014 Nov 10
1
subscripting a data.frame (without changing row order) changes internal row.names
Dear R-devel,
Can anyone help me to understand this? It seems that subscripting the
rows of a data.frame without actually changing their order, somehow
changes an internal representation of row.names that is revealed by e.g.
dput/dump/serialize
I have read the docs and inspected the (R) code for data.frame,
rownames, row.names and dput without enlightenment.
df=data.frame(a=1:10, b=1)
2008 May 07
4
Updating a Facebook Status
Does anyone know how to update a Facebook Status with Facebooker?
2018 Jul 05
4
[PATCH 0/2] drm/nouveau: Fix panic on nouveau unload.
.../0x70 [nouveau]
pci_device_remove+0x3b/0xb0
device_release_driver_internal+0x180/0x250
driver_detach+0x32/0x5f
bus_remove_driver+0x74/0xc6
pci_unregister_driver+0x22/0xa0
nouveau_drm_exit+0x15/0x16b [nouveau]
I don't beleive them to be related. Perhaps there is another issue here?
Jeffery Miller (2):
drm/nouveau/fbcon: Fix NULL pointer access in nouveau_fbcon_destroy.
drm/nouveau/bl: Allocate backlight connector nodes.
drivers/gpu/drm/nouveau/nouveau_backlight.c | 70 ++++++++++++++-------
drivers/gpu/drm/nouveau/nouveau_fbcon.c | 5 +-
2 files changed, 51 insertions(+),...
2006 Jul 28
3
Private Interconnect and self fencing
I have an OCFS2 filesystem on a coraid AOE device.
It mounts fine, but with heavy I/O the server self fences claiming a
write timeout:
(16,2):o2hb_write_timeout:164 ERROR: Heartbeat write timeout to device
etherd/e0.1p1 after 12000 milliseconds
(16,2):o2hb_stop_all_regions:1789 ERROR: stopping heartbeat on all
active regions.
Kernel panic - not syncing: ocfs2 is very sorry to be fencing this
2001 Oct 24
0
Re: Compiling R v 1.3.1 under Irix 6.5 on SGI Origin
Hello Laurent, Ray and Greg,
I tried the gmake settings.
Yet, I still got an Error code 1 message when I run the test.
running regression tests
don't know how to make ../library/base/R/base (bu42).
*** Error code 1 (bu21)
Thanks you if you have any idea.
Manuel
-----Message d'origine-----
De : Laurent Gautier [ mailto:laurent at genome.cbs.dtu.dk
<mailto:laurent at
2005 Mar 05
1
Reverse plot axes with xlim=rev(range(x)) fails with asp=1
Dear R users,
I would like to reverse the axes on some xy plots (for example to set the
origin at the top left rather than the bottom left). I had planned to use
something of the following form:
plot(y=y<-c(20,4,5,6),x=x<-c(10,20,30,40),ylim=rev(range(y)))
ie reversing ylim to reverse the y axis. This works fine however I also
want to use the parameter asp=1 to ensure that equal
2009 Jul 15
4
duplicate data points on a line graph
...I am trying to increase the data point
observation when duplicate data points exist
x y
1 10
1 10
2 3
4 5
9 8
in the about example 1, 10 would be displayed larger than the other
data points. Could someone give me some assistance with this problem
757-864-7114
LARC/J.L.Shipman/jshipman
Jeffery.L.Shipman at nasa.gov
2001 Dec 06
0
3D spatial statistics
Dear R Users,
This is only partly an R question, but I would be very grateful if anyone
could offer some suggestions for approaches or packages I could use in R. I
have 11 sets of points in 3D (synapses in a region of a fly's brain for 11
different kinds of neurons as it happens); each set has between 80-250
points distributed in an irregularly shaped cloud. I would like to
calculate
a) a
2008 Mar 31
0
3d line smoothing
Dear R People,
I would like to smooth some 3d lines, which consist of line segments
specified by start and end 3d coordinates. These are experimentally derived
from microscope images of neurons, so there is no sense in which one axis is
any different from any other (predictor vs response).
I have tried doing repeated smoothing interpolation with smooth.splines (see
below), but this doesn't