Displaying 20 results from an estimated 400 matches similar to: "deduplication"
2006 Mar 31
1
model comparison with mixed effects glm
I use model comparison with glms without mixed effects with
anova(modelA,modelB),
with mixed effects glm (glmmPQL), this doesn't work. Is there a way to
compare model fits with glmmPQL's?
Paula M. den Hartog
Behavioural Biology
Institute of Biology Leiden
Leiden University
[[alternative HTML version deleted]]
2013 Mar 07
2
Copying a dataframe
Hi, I am trying to create a data frame using the dimensions of another data
frame that I have input. This is the code I am using:
tab is the data frame that is input.
c.leng<-length(tab[,1]); r.leng<-length(tab[1,]);
opdf<-data.frame(ncol=c.leng, nrow=r.leng);
a<-1;
while(a<=c.leng)
{
opdf[[1]][a]<-tab[[1]][a];
a<-a+1;
}
This is the error message I am getting:
Error in
2024 Sep 24
1
Provincia y municipio en Shiny
Isidro:
La segunda lista se tiene que generar en el server con el filtro que quieras:
- En UI, creas un elemento uiOutput, por ejemplo con id = id1
- Tendrás la lista de provincias en otro input, por ejemplo con id = id0
- En Server, lo renderizas con output$id1 <- renderUI()
- Este renderUI devuelve la lista de municipios ya filtrada, usando el filtro de input$id0
Aquí lo explica Hadley
2013 Mar 12
2
Troubleshooting code
Hi everyone, I am having trouble understanding where I went wrong with my
code. It seems to logically be "all there" but the output says otherwise.
I know this is a bit long but I can't seem to find the errors so I would
appreciate your help :)
This is my program :
files<-Sys.glob("*.rescount.txt");length<-length(files);* #selecting all
files of a particular
2024 Sep 24
2
Provincia y municipio en Shiny
Queridos colegas:
?Qu? funci?n tengo que utilizar para, en la interfaz de usuario de un Shiny, una vez seleccionada una provincia de una lista, elegir un municipio de otra lista (filtrados los de la provincia elegida)?
?C?mo se puede hacer ese filtro? Seguro que es una chorrada, pero no doy con ello... estoy medio aterrizando en Shiny...
Mil gracias
Isidro Hidalgo Arellano
Observatorio del
2019 Aug 23
2
non-terminating processes
FreeBSD psg.com 11.3-RELEASE-p3 FreeBSD 11.3-RELEASE-p3
dovecot 2.3.6 (7eab80676) (latest from binary package system)
symptom: multiple imap4s users complain that they can not fetch mail
stopping and restarting dovecot is a temporary workaround
dovenull 3713 0.0 0.0 11036 6816 - I 02:27 0:00.17 dovecot/imap-login
user19 3714 0.0 0.0 9464 4756 - S 02:27
2003 Sep 14
1
reading in a file with multiple data types
Hi,
I have a data file which contains multiple data types
(char and numeric) alongside with line spaces, tabs
and spaces. I hope to extract out the numeric blocks
of the data, probably as matrices or dataframes where
each line in the data block is a corresponding row in
the dataframe/ matrix.
I have tried using many R read functions but they do
not seem to yield the appropriate structure that
2005 Jan 21
5
SPA-2000
Hi, I have not implemented any of the spa-2000's yet. Do they work ok with
asterisk? Is the 2000 capable of having 2 FXS extensions off each one or is
it two fxs ports with the same extension?
2003 Aug 04
1
Error in calling stepAIC() from within a function
Hi,
I am experiencing a baffling behaviour of stepAIC(),
and I hope to get any advice/help on what went wrong
or I'd missed. I greatly appreciate any advice given.
I am using stepAIC() to, say, select a model via
stepwise selection method.
R Version : 1.7.1
Windows ME
Many thanks and best regards,
Siew-Leng
***Issue :
When stepAIC() is placed within a function, it seems
2007 Feb 04
2
Centos 4.0 updates repo & local repository creation
Hello all
I used Centos 4.0 iso to setup my systems and updated till date. I
assume they are equivalent to systems created with Centos 4.4
Now, I am planning to setup a full local repository of Centos updates,
extras, centosplus etc. (not isos...as I intend to download isos only
when Centos 5 becomes available.
Please advise what directories I should download for my local
repository, as the
2004 Dec 12
2
Help : generating correlation matrix with a particular structure
Hi,
I would like to generate a correlation matrix with a
particular structure. For example, a 3n x 3n matrix :
A_(nxn) aI_(nxn) bI_(nxn)
aI_(nxn) A_(nxn) cI_(nxn)
aI_(nxn) cI_(nxn) A_(nxn)
where
- A_(nxn) is a *specified* symmetric, positive
definite nxn matrix.
- I_(nxn) is an identity matrix of order n
- a, b, c are (any) real numbers
Many attempts have been unsuccessful because a
2007 Dec 19
2
speed and connection problems after samba upgrade - RH 5 -> RH 5.1, samba 3.0.23c -> 3.0.25b
Hi,
recently we upgraded a central RHEL 5 fileserver to the latest RH EL 5.1
rpms, including samba. (samba-3.0.23c-2.el5.2 update to
samba-3.0.25b-1.el5_1.4)
Now some users have the problem, that opening a word or excel file saved
on a samba share takes up to 30 seconds. Today I could verify this on
the users desktop XP PC.
This problem occures only from time to time, so it may be also a
2004 May 16
2
Error in using coxph()
Hi,
I am getting errors of the following kind. I can't
seem to point the source of the error. I would greatly
appreciate any advice.
Many thanks and good day,
-Melinda
Error message :
----------------
"Ran out of iterations and did not converge in:
fitter(X, Y, strats, offset, init, control, weights =
weights,..."
Details :
---------
E is a vector of survival times (or censored
2004 Aug 06
3
Videoconferencing with speex and jabber
Hi Allen,
> Speaking of video conferencing in conjunction with Speex, we are
> currently beta testing a solution we developed that offers multi-point,
> multi-party video and audio using the Speex engine for voice.
I have visit your website and the solution looks interesting for
big entities. Of course it is comercial, so it's not in my scope.
I'm taregeting smal entities. Some
2006 May 26
1
Indexing vector with repeated values
Hi all,
I have a vector which contains many repeated values.
>Z <- c(1,2,3,4,5,1,2,3,4,5,1,2,3,5,5,2,3,4,5)
I need to know how many times each number in this vecetor is repeated.
I can use a command like this:
> table (cut(Z,seq(1,5,1)))
(1,2] (2,3] (3,4] (4,5]
4 4 3 5
But how can I find a break points for vector with random values and random
number sequence
2007 Aug 20
1
About cluster size (read/write)
Hello list,
I need understand more about cluster-size. Cluster size are small space
when i create some file in ocfs2 disk, but when i read some data this
size are small part that i can read? Or smal part are block-size to
read? cluster-size are only to optimize fragmentation?
I create my ocfs2 mounts with block-size 4k and cluster-size 1M and i
have few files per filesystem with more than
2006 Dec 21
3
[LLVMdev] LLVM capability question.
I'm losing my sanity, so I thought I'd try and generate an LLVM target
for the Glasgow Haskell Compiler (GHC). In talking to some of the
people in the GHC mailing list some issues have come up that I can't
find a ready answer to. (Others came up that I could, so I don't feel
quite as stupid or helpless as I could.)
1. Is there any way to hint that a global pointer variable
2011 Mar 19
1
Dual-booting VMware and chainbooting GRUB
Dear All:
I am having trouble trying to dual-boot VMware and Linux, and I tried
everything I could come up with.
The situation is that /dev/sda is fully used by VMware and /dev/sdb
is used by Linux. VMware uses Syslinux, so I thought this would be
simple... However, it is not. The bootable FAT partition is too smal
to have kernels in it. As a fallback I tried to chain-load GRUB,
but that did not
2018 May 31
4
Samba 4.8 RODC not working
Hai Gaetan,
Can you post the output this this command : netstat -plaunt | egrep "ntp|bind|named|samba|?mbd"
and iptables -S
@Rowland, https://wiki.samba.org/index.php/Samba_AD_DC_Port_Usage
might need a smal change. test as followed
The wiki line: netstat -tulpn | egrep "samba|smbd|nmbd|winbind"
Now test my line and see the changes. this catches everything a DC
2020 Oct 13
2
Samba SSSD authentication via userPrincipalName does not work because samba claims that the username does not exist.
On 13/10/2020 15:01, Markus Jansen via samba wrote:
> Thank you very much for your hints.
>
> I got rid of SSSD and managed to get a successful kerberos
> authentication via wbinfo -K and the UPN.
>
> But accessing via SMB (using MAC OS' smbutil or Finder) still fails with
> "FAILED with error NT_STATUS_NO_SUCH_USER".
>
> As I'm using CentOS 8, I used