Displaying 20 results from an estimated 47 matches for "tailles".
Did you mean:
taille
2010 Jan 22
2
Optimizing C code
Hi the list,
I need to write some efficient distances function, so I read the code
for the Euclidean distance.
I do not understand the purpose of the line 11 : if x[i] and y[i] are
not NA (line 9), can dev be NA ?
Christophe
#define both_FINITE(a,b) (R_FINITE(a) && R_FINITE(b))
#define both_non_NA(a,b) (!ISNAN(a) && !ISNAN(b))
1. static double R_euclidean2(double *x, double
2005 Jan 24
1
hist() and database
Hello,
I'm a new R user and I'm having a little trouble getting started. I'm
hoping
someone can help me out. I read numbers (integer) from a SQL database.
Some calculations as mean()are possible but hist() give an error. Here
are the commands:
library(RMySQL)
Loading required package: DBI
> con <- dbConnect(dbDriver("MySQL"), dbname = "test")
>
2007 Apr 12
9
taille de caractère
en fait je vous renvoi ce message car maintenant la taille de la police change au bout de 500 lignes environ, alors que j''avais reussi à garder la taille jusqu''à environ 5000 lignes.
Je ne comprend pas. Est-ce que c''est instable?
le bout de code que vous m''avez envoyer ne marche pas.
merci
Sebastien
_______________________________________________
wxruby-users
2005 May 16
1
graphic
Hi,
poids taille fumeur sexe sport etat
85 184 oui homme 1 malade
65 175 oui homme 1 malade
74 180 oui homme 2 gueri
79 175 oui homme 2 malade
71 165 non homme 3 gueri
80 185 non homme 3 gueri
75 180 non homme 4 malade
69 155 non homme 4 malade
74 168 oui
2006 Feb 21
1
I need your help
Hi,
Dear R users
I have problem with the following code. The matrix result must be a matrix
(3x3). But I have obtained a matrix(3x1) and I don't know why.
So, I need your help
Best regards
#####################################################################
taille <- function (delta, t, prob = 0.2)
{
niv.conf <- c(0.90, 0.95, 0.99)
if(niv.conf <- 0.90) {
t <- 1.645
}
2009 Dec 12
4
grid et boxsizer
Bonjour.
Une fois mon application ouverte, je voudrais savoir, si cela est
possible, comment dimensionner automatiquement la totalité des colonnes
du grid à la taille de mon boxsizer, quand je change la taille de mon
application? (puique mon grid est inséré dans mon boxsizer).
merci
2020 Oct 09
1
Aide pour finaliser ce code
...le programme tourne
p=2 #dimension de la variable X
q=3 #dimension de la variable Y
R=c(2,3,2);# Nbre de partition de chaque composante de la variable Y
if(length(R) != q) stop("La taille de R doit ?tre ?gale ? q")
n=25 # Taille echantillon
N=c(25,50,100,200,300,400,500,1000) #differentes tailles de l'?chantillion
N=c(25,50) #differentes tailles de l'?chantillion
K=0
MV=matrix(0,nr=2,nc=4)
dimnames(MV)[[2]]=c("n","r1%","r5%","r10%")
#Debut du programme
for (n in N){
l1=0 # initialisation de la valeur permettant calculer le niveau de tes...
2009 Oct 14
1
problem when resizing graphics devices
Dear R users,
When I try to resize a graphics device in R, I often get this warning
message (mostly when I already have several other graphics devices open)
: "Not enough memory to modify the size. Alpha blending is desactivated"
(translation from the french message: "Mémoire insuffisante pour
modifier la taille. L'"alpha blending" est désactivé"). Following
2010 May 04
1
aregImpute (Hmisc package) : error in matxv(X, xcof)...
Dear r-help list,
I'm trying to use multiple imputation for my MSc thesis.
Having good exemples using the Hmisc package, I tried the aregImpute function. But with my own dataset, I have the following error :
Erreur dans matxv(X, xcof) : columns in a (51) must be <= length of b (50)
De plus : Warning message:
In f$xcoef[, 1] * f$xcenter :
la taille d'un objet plus long n'est pas
2008 Nov 20
5
File size limit in 2Gb
Hi all,
I mounted by smbmount a partition on a winNT machine without problem... but
when i tried to copy a file whitch have size more than 2 Gb i have the
following error : Overflow size allowed for a file (translated from
french ;-) :D?bordement de la taille permise pour un fichier )
PS. the file system of the harde drive is NTFS
PS. The command of smbmount : /usr/sbin/smbmount
2011 May 05
7
Draw a nomogram after glm
Hi all R users
I did a logistic regression with my binary variable Y (0/1) and 2
explanatory variables.
Now I try to draw my nomogram with predictive value. I visited the help of R
but I have problem to understand well the example. When I use glm fonction,
I have a problem, thus I use lrm. My code is:
modele<-lrm(Y~L+P,data=donnee)
fun<- function(x) plogis(x-modele$coef[1]+modele$coef[2])
2012 Jan 19
4
[LLVMdev] What happened to "malloc" in LLVM 3.0 IR?
Hello folks,
I have a compiler written with LLVM 2.6 by a student that produces .ll files, It behaved fine at the time.
Trying to take the work over using version 3.0, I run into the problem that "malloc" in the IR is no longer valid:
semac1 menu > llvm-as Carre.ll
llvm-as: Carre.ll:68:14: error: expected instruction opcode
%_malloc = malloc i8, i32 %2 ;
2004 Jul 22
2
Programmation pour MLE
Bonjour,
Je veux cherché l’estimateur de vraisemblance maximal (MLE)d’une fonction à 3 paramètre inconue étant donné une échantillon de taille 50 (les observations des valeurs de x) alors comment je peux procédé
La fonction de densité est définie par :
f(x)= 1/3(g(a1)+g(a2)+g(a3))
avec g(ai)=(exp(ai)*ai^x)/x! pour i=1,2,3.
Je vous remercie beaucoup.
A. Elhabti
2012 Jan 19
0
[LLVMdev] What happened to "malloc" in LLVM 3.0 IR?
Hi Jacques,
> I have a compiler written with LLVM 2.6 by a student that produces .ll files, It behaved fine at the time.
>
> Trying to take the work over using version 3.0, I run into the problem that "malloc" in the IR is no longer valid:
>
> semac1 menu> llvm-as Carre.ll
> llvm-as: Carre.ll:68:14: error: expected instruction opcode
> %_malloc = malloc i8,
2018 Mar 09
3
SELinux breaks Squid's ssl_crtd helper
Hi,
I've setup a transparent HTTP+HTTPS proxy on my server running CentOS 7,
using Squid. Here's my configuration file.
--8<----------------------------------------------------------------
# /etc/squid/squid.conf
# D?finitions
acl localnet src 192.168.2.0/24
acl SSL_ports port 443
acl Safe_ports port 80 # http
acl Safe_ports port 21 # ftp
acl Safe_ports port
2013 Jul 15
1
Problem with plot in several cases, font issue?
Dear all,
I am having problem on plots in R for some cases.
For example:
> plot( 1:10 )
> text( 1:10, letters[1:10], cex = 1)
works well but :
> plot(1:10)
> text(1:10, letters[1:10], cex = 0.9)
returns :
Erreur dans text.default(1:10, letters[1:10], cex = 0.9) :
impossible de charger la police X11
-adobe-helvetica-%s-%s-*-*-%d-*-*-*-*-*-*-*, de face 1 et de taille 11
(sorry
2005 Dec 16
1
Vector of matrix
Dear statisticians,
I would like to save results for a "for loop" in a vector previously created.
My result would be of class "matrix".
I tried the following script:
Script:
#Creation of a previous vector
n.Tree<-2
VectorX<-rep(1,n.Tree)
#loop
for (i in 1:2) {
Ti<-MatOccurTree[Tree[i],1] #number of observation for Tree i
Xi<-matrix(data=1,nrow=Ti,ncol=2)
2009 Oct 01
2
Huge matrix: allocation works but assignment fails
Hello everyone,
I am working with one big matrix:
w=matrix(0,18000,18000)
on a Linux computer with 16Go of RAM.
I can actually create the matrix, and even access elements:
w[10,10]
0
but if I try to change one element, it fails:
w[10,10]=1
Erreur : impossible d'allouer un vecteur de taille 2531250 Ko
(Failed to allocate a vector of size...)
What can I do? And, maybe even more important,
2007 Apr 08
0
Re: [news-wxruby2---preview-0.0.39-released-][20330] problème de police dans Traducteur-wxruby
Bonjour
sebastien bureaux wrote:
> Bonjour, en fait quand j'ouvre un fichier texte,
> par exemple, avec Traducteur-wxruby, la taille de
> la police est normale jusqu'à un certain nombre de ligne, ensuite elle devient
> toute petite. pourquoi? Je ne sais pas comment résoudre le problème.
> Il faut à peu près dépasser les 1000 lignes pour que la taille change.
> Merci pour
2010 Jul 06
0
patch syslinux DMI 4.01
Bonjour Erwan
Juste pour me remettre, on a gagn? ensemble la petite finale baby foot ?
Grenoble chez HP, fin 2009 ;-)
J'ai commenc? ? jouer avec le module LUA de syslinux et suis tomb? sur
des plantages sur les fonctions DMI
M?me probl?me avec le module dmitest, mais pas avec HDT
Probl?me plus ou moins aleatoire selon les hardware (bug plus souvent
constat? en VMware, mais pas sur mon