similar to: PDBEDIT policy

Displaying 20 results from an estimated 900 matches similar to: "PDBEDIT policy"

2010 Aug 17
2
Delete user data from Dovecot server
Hello, I'm testing Dovecot 2.0. I plan to use Dovecot 2.0 with thousands of domains per server. My user base is under virtual MySQL. when I add a user in the database, it is automatically created in the structure of Dovecot at first login. Is there a easy way to delete a user ? Thank you. -- Atenciosamente, Thiago Henrique (21)2233-5950 ramal 27 Infra Estrutura Linux Hostnet Internet
2015 Jun 03
2
Problem with shared library and lapack under windows
Hi all, I have a C function, say Cfun, that calls Lapack's DGEMM routine and I need to create a shared library to use Cfun inside R. The C file is the following #include<stdio.h> #include<R.h> #include<R_ext/Lapack.h> void Cfun(double *res, double *X, int *n, int *q) { char *ptr_TRANSA, TRANSA='T', *ptr_TRANSB, TRANSB='N'; ptr_TRANSA=&TRANSA;
2006 Mar 09
0
When calling external C-function repeatedly I get different results; can't figure out why..
Dear all, I need to calculate tr(xyxy) fast for matrices x and y. Inspired by the R-source code, I've created the following functions (I am *new* to writing external C-functions, so feel free to laugh at my code - or, perhaps, suggest changes): #include <Rinternals.h> #include <R_ext/Applic.h> /* for dgemm */ static void matprod(double *x, int nrx, int ncx, double *y, int
2020 Aug 04
3
Gráfico barras 3 ejes
Buenas tardes, quisiera hacer un gráfico como el de la figura ¿alguna sugerencia? con ggplot2 no he podido. Muchas gracias [image: Captura.JPG] -- *Andrés Hirigoyen* * Prof. Ciencias Biológicas* *Ing. Agr. Forestal (MSc) * ------------ próxima parte ------------ Se ha borrado un adjunto en formato HTML... URL:
2006 Mar 09
0
When calling external C-function repeatedly I get differentresults; can't figure out why..
Not an expert in programming either, but to me it seems like you've forgotten to initialize the variable "tr". It just picks up garbage from allocated memory previously initialized by other processes. Med venlig hilsen Frede Aakmann T?gersen > -----Oprindelig meddelelse----- > Fra: r-help-bounces at stat.math.ethz.ch > [mailto:r-help-bounces at stat.math.ethz.ch] P?
2005 Oct 12
1
Using matprod from array.c
Hi, I was wondering if I could use the matprod function from array.c in my own C routine. I tried the following as a test /* my_matprod.c */ # include <Rinternals.h> /* for REAL, SEXP etc */ # include <R_ext/Applic.h> /* array.c says need for dgemm */ /* following copied from array.c */ static void matprod(double *x, int nrx, int ncx, double *y, int nry, int ncy, double *z)
2009 Sep 04
1
calling Lapack and BLAS routines from C
Hi, I am working on a UNIX machine and I am interfacing R and C with the .C function. I am trying to call LAPACK and BLAS routines, but am running into a problem where, while I am able to run the BLAS routines, I cannot run the LAPACK routines. I compile my .c file (at end of email) in the following way: [mhitczen at jlogin2 ~/Cstuff]$ R CMD SHLIB testmore.c gcc -std=gnu99
2006 Aug 03
1
question about dll crashing R
I have ported some R code to C to make it faster. I can perform .Call("foobar",....) once and it works fine. Absolutely correct answer. If I put a loop inside foobar and run the main code routine more than 100 times, it crashes R. Or if I call .Call("foobar"....) seperately more than two tims it crashes R. For the most part I am doing matirx multiplies using EXP
2023 Mar 13
1
str_replace por orden de aparición en una cadena.
Mientras aparezca alguien que sepa guiarte bien, te muestro desde mi autodidactez por dónde encararía. Y lo que para mí fue un gran descubirmiento: El paquete RegExplain, [image: irudia.png] (==)([\d, \w]*=[\d, \w]*)$ Eso captura en dos grupos diferentes todo lo que está desde el final hasta el primer igual, más todo lo que sigue hasta en igual doble, que lo excluye y lo captura como otro grupo.
2012 Jan 25
4
Media en subgrupos de grupos
Un saludo a todos. Es posible que con el asunto no quede claro lo que quiero. Para eso añado una captura. Dispongo de 3 variables (dos discretas y una continua) y me interesaría sacar la media tanto del grupo como de los subgrupos. Esta creo que es la segunda vez que escribo preguntando algo parecido. En la primera me hablasteis de tapply, pero con este comando sólo sé obtener la media de una de
2023 Mar 13
1
str_replace por orden de aparición en una cadena.
hola ,muchas gracias! no conocía esa librería para los regex...respecto a la pregunta de Carlos, puedo tener más de un == dentro de la cadena, por ejemplo así: así está si p1 == 1 o 2 o p2 == 1 == 1,3 así necesito si p1 == 1 o 2 o p2 == 1 = 1,3 El lun, 13 mar 2023 a las 18:11, Juan Abasolo (<juan.abasolo en ehu.eus>) escribió: > Mientras aparezca alguien que sepa guiarte bien, te
2010 Aug 23
1
Speeding up matrix multiplies
I've looked at the code for matrix multiplies in R, and found that it can speeded up quite a bit, for multiplies that are really vector dot products, and for other multiplies in which the result matrix is small. Here's my test program: u <- seq(0,1,length=1000) v <- seq(0,2,length=1000) A2 <- matrix(2.1,2,1000) A5 <- matrix(2.1,5,1000) B3 <- matrix(3.2,1000,3) A4 <-
2023 Mar 14
1
str_replace por orden de aparición en una cadena.
Buenas, Una opción es partir la cadena usando el == como separador y luego recomponerla. > a <- "p1 == 1 o 2 o p2 == 1 == 1,3" > b <- strsplit(a, "==") > b <- b[[1]] > b [1] "p1 " " 1 o 2 o p2 " " 1 " " 1,3" > paste0(paste0(b[1:(length(b)-1)], collapse = '=='), '=', b[length(b)]) [1] "p1 ==
2005 Dec 05
2
Conflict RGtk tcltk
Hi everybody, I'm making an application using the package tcltk. Everything goes fine until I load the package RGtk. The interface doesn't work anymore. Is there any conflict between these packages? I thought about unloading the package RGtk but I don't know how to do that. Thanks, -- Talita Perciano Costa Leite Graduanda em Ci??ncia da Computa????o Universidade Federal de Alagoas
2023 Mar 14
1
str_replace por orden de aparición en una cadena.
Muchas gracias!! Lo pruebo!!! El mar., 14 de marzo de 2023 04:55, Proyecto R-UCA <r-uca en uca.es> escribió: > Buenas, > > Una opción es partir la cadena usando el == como separador y luego > recomponerla. > > > a <- "p1 == 1 o 2 o p2 == 1 == 1,3" > > b <- strsplit(a, "==") > > b <- b[[1]] > > b > [1] "p1 "
2020 Feb 27
2
Problems with nouveau driver in Ubuntu 18.04
Hello, I use Ubuntu 18.04, since one of the last upgrades I have problems with nouveau drivers. My screen look like the picture atteched. [~]$ uname -a Linux 5.3.0-40-generic #32~18.04.1-Ubuntu SMP Mon Feb 3 14:05:59 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux [~]$ inxi -Gx Graphics: Card: NVIDIA G71GL [Quadro FX 1500] bus-ID: 01:00.0 Display Server: x11 (X.Org 1.20.5 ) driver:
2023 Mar 14
1
str_replace por orden de aparición en una cadena.
hola! ,me sirve, pero el tema es que necesito crear tres variables nuevas con el resultado de strsplit....pero me genera una lista y no lo estoy pudiendo combinar con mutate de dplyr.... El mar, 14 mar 2023 a las 7:46, juan manuel dias (<juamadias en gmail.com>) escribió: > Muchas gracias!! Lo pruebo!!! > > El mar., 14 de marzo de 2023 04:55, Proyecto R-UCA <r-uca en uca.es>
2013 Dec 23
2
update 4.0 to 4.1
which procedure to upgrade from 4.0 to 4.1? Atenciosamente, Eduardo Buso Tel: (11) 973123297 - 44877825 Administrador de Redes Windows, Linux e Novell T?cnico em Manuten??o de Microcomputador, Impressora, Monitor e No-break. T?cnico em Processamento de Dados T?cnico em Eletr?nica
2023 Mar 20
0
str_replace por orden de aparición en una cadena.
muchas gracias!! El mié, 15 mar 2023 a las 6:12, Carlos Ortega (<cof en qualityexcellence.es>) escribió: > Hola, > > Juntandolo todo se puede hacer así... > > #----------------------------- > cadena <- c( > 'si p1 == 1 o 2 == 1,3 si p1 == 1 o 2 = 1,3', > 'si p1 == 3 o 4 == 1 si p1 == 3 o 4 = 1', > 'si p1 == 5 == 0,7 si p1 == 5 =
2016 Apr 12
2
Random Forest para clasificación
Buenas, Cuando estoy haciendo un random Forest para clasificación y hago el gráfico partialPlot, siendo mi respuesta OK/NOK, me sale en el eje X el valor de la variable, pero en el eje Y me salen valores de entre -1 y 1. ¿Qué significado tiene? Adjunto un ejemplo: https://www.dropbox.com/s/4b92lqxi3592r0d/Captura.JPG?dl=0 Gracias!!! [[alternative HTML version deleted]]