search for: dati

Displaying 20 results from an estimated 162 matches for "dati".

Did you mean: data
2008 Aug 16
5
DO NOT REPLY [Bug 5695] New: rsync local timeout
...dirs) and rsync takes a very long time to read all of them and decide if they need to be synced or not. During this process, rsync looks like it's stuck (but it isn't, as strace shows) and --timeout is hitten and process is terminated giving a timeout error. --------------- Example: /mnt/dati2/dati is the source dir /mnt/extra/Backups is the destination dir I invoke rsync with: # strace -f /usr/bin/rsync --timeout=600 -v -a -x --timeout=300 --numeric-ids --delete --delete-excluded /mnt/dati2/dati /mnt/extra/Backups > /tmp/rsync.out 2> /tmp/rsync.err rsync.out contains: sending...
2012 Jan 07
1
using deltat parameter in time series in HoltWinters prediction
Hi. I have to forecast a time series of a Internet network traffic bitrate. The data are in file http://www.forumaltavilla.it/joomla/datitesi/dati.datand the sampling time is every 0.05 seconds. Now, i want to use HoltWinters forecasting. This is my script. dt=1.58443823e-9 #0.05 seconds in years dati.ts=ts(scan("dati.dat"),start=0,deltat=dt) model=HoltWinters(dati.ts) dati.forecast=forecast(model,h=100) plot(dati.forecast...
2003 Jun 16
2
CPU consumption by samba
Hi, I'm having strange performance problems with samba and an application written with VisualFox Pro. This application is entirely installed in a Windows share and it has a hystory of strange phenomenons. Initially it ran fast on an old NT server (but that server has been replaced). It has strange performance problems with Windows 2000 Server: it runs fast with some servers and slow with
2017 Feb 14
3
Samba AD domain member with SSSD: ACL not work
...omain user without problem. My problem occur when I try from windows to modify some new rights (ACL's) to new folder on samba share. The folder is created correctly but if I add some groups or setup ACL's I get this error log and the new ACL's is not saved: > feb 14 12:07:42 samba-dati.srl.local smbd[1178]: [2017/02/14 12:07:42.149812,  0] ../source3/smbd/posix_acls.c:2080(create_canon_ace_lists) > feb 14 12:07:42 samba-dati.srl.local smbd[1178]:   create_canon_ace_lists: unable to map SID S-1-5-21-347198863-3916504048-2821235790-1213 to uid or gid. This is my testparm -s (sm...
2005 Sep 23
2
Strange behaviour of as.Date function
Dear All, I'm happily extracting data of temperature from an oracle db under R via RODBC. After manipulating the extracted data I put them into a data.frame 'dati' which is as follows: > dati DATA tm. UDINE/RIVOLTO tm.TORINO/CASELLE 1 2005-07-01 22.35 23.80 2 2005-07-02 22.70 22.85 3 2005-07-03 23.80 24.30 4 2005-07- 04 23.80 25.40 .......... a...
2004 May 13
2
tapply & hist
I'm learning how to use tapply. Now I'm having a go at the following code in which dati contains almost 600 lines, Pot - numeric - are the capacities of power plants and SGruppo - text - the corresponding six technologies ("CCC", "CIC","TGC", "CSC","CPC", "TE"). ..................................................... da...
2017 Feb 15
3
Samba AD domain member with SSSD: ACL not work
...d. > Yes. I use sssd, If this is not a problem for samba. > > > In which case you should remove the 'idmap config' lines from > > smb.conf. > > Ok, now I have remove this 4 lines, restart smb and test: ACLs still > not work. > > > feb 14 17:45:24 samba-dati.srl.local nmbd[3338]:   ***** > > feb 14 17:45:24 samba-dati.srl.local nmbd[3338]: > > feb 14 17:45:24 samba-dati.srl.local nmbd[3338]:   Samba name server > SAMBA-DATI is now a local master browser for workgroup SRL on subnet > 192.168.1.5 > > feb 14 17:45:24 samba-dati.srl...
2006 Nov 03
1
difference in using with() and the "data" argument in glm call
Dear all, I am dealing with the following (apparently simple problem): For some reasons I am interested in passing variables from a dataframe to a specific environment, and in fitting a standard glm: dati<-data.frame(y=rnorm(10),x1=runif(10),x2=runif(10)) KK<-new.env() for(i in 1:ncol(dati)) assign(names(dati[i]),dati[[i]],envir=KK) #Now the following two lines work correctly: coef(glm(y~x1+x2,data=KK)) with(KK,coef(glm(y~x1+x2))) #However if I write the above code inside a function, with() d...
2011 Apr 03
1
zoo:rollapply by multiple grouping factors
# Hi there, # I am trying to apply a function over a moving-window for a large number of multivariate time-series that are grouped in a nested set of factors. I have spent a few days searching for solutions with no luck, so any suggestions are much appreciated. # The data I have are for the abundance dynamics of multiple species observed in multiple fixed plots at multiple sites. (I total I
2003 Mar 12
1
simulating 'non-standard' survival data
...Statistics and Computing 2002) ####################### #sample size n<-100 R<-1:n #explanatory variable x<-runif(n,3,9) #survival time and censoring variable: obsTime<-rexp(n,1) status<-ifelse(runif(n)>.2,1,0) obsTime<-obsTime[order(obsTime)] status<-status[order(obsTime)] dati<-matrix(-99,n,(1+2)) #hazard ratio as function of the explanatory variable xx, and survival time. HR<-function(ttime,xx){exp(.5)} #.5 is the log hazard ratio P<-outer(obsTime,x,HR) PP<-t(apply(P,1,function(x){sort(cumsum(sort(x,decreasing=T)),decreasing=T)} )) Pok<-P/PP for(i in 1:...
2006 Nov 03
1
[R] difference in using with() and the "data" argument in glm (PR#9338)
...r-help to the bugs list. On 11/3/2006 8:25 AM, vito muggeo wrote: > Dear all, > I am dealing with the following (apparently simple problem): > For some reasons I am interested in passing variables from a dataframe > to a specific environment, and in fitting a standard glm: > > dati<-data.frame(y=rnorm(10),x1=runif(10),x2=runif(10)) > KK<-new.env() > for(i in 1:ncol(dati)) assign(names(dati[i]),dati[[i]],envir=KK) > #Now the following two lines work correctly: > coef(glm(y~x1+x2,data=KK)) > with(KK,coef(glm(y~x1+x2))) > > #However if I write the abo...
2004 Nov 10
1
Loading some function at R startup
Dear R-users, I've built these functions usefell for me to import/export data from/to Excel: importa.da.excel<-function(){read.delim2("clipboard", dec=",") ## questa funzione consente di importare dati da Excel in R ## selezionare in Excel le celle che contengono i dati, ## compresi in nomi delle colonne ## Autore: Vito Ricci email:vito_ricci at yahoo.com ## Data di creazione: 09/11/04 } esporta.in.excel<-function(dati){write.table(dati,"clipboard", sep="\t", dec=",&...
2017 Mar 07
2
Samba 4.4.4: ACLs not work property with recycle vfs object enable
Samba file server (Server role: ROLE_DOMAIN_MEMBER) joined to Win2008 ADDC I have a strange problem with ACLs and "vfs object = recycle" enabled This is my share entry > [dati] >         comment = Cartella Dati x tutti >         path = /u/samba/dati/ >         read only = no > >         Veto files = /*.pst/*.ost/ > >         inherit acls = yes >         inherit permissions = yes > > ;       vfs objects = recycle > ;       recycle:repos...
2008 Sep 08
1
Clients disconnecting and msword problem.
...tring = Server log level = 3 log file = /var/log/samba/%m.log max log size = 50 socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192 os level = 60 preferred master = Yes dns proxy = No wins support = Yes default service = dati inherit permissions = Yes inherit acls = Yes [dati] comment = Dati su Server path = /home/samba/dati read only = No create mask = 0775 directory mask = 0770 guest ok = Yes thanks if you can help me !
2017 Feb 14
1
Samba AD domain member with SSSD: ACL not work
...you are not using winbind, you are using sssd. Yes. I use sssd, If this is not a problem for samba. > In which case you should remove the 'idmap config' lines from > smb.conf. Ok, now I have remove this 4 lines, restart smb and test: ACLs still not work. > feb 14 17:45:24 samba-dati.srl.local nmbd[3338]:   ***** > feb 14 17:45:24 samba-dati.srl.local nmbd[3338]:    > feb 14 17:45:24 samba-dati.srl.local nmbd[3338]:   Samba name server SAMBA-DATI is now a local master browser for workgroup SRL on subnet 192.168.1.5 > feb 14 17:45:24 samba-dati.srl.local nmbd[3338]:   ...
2011 Aug 21
3
Sweave doesn't work
...em in producing the pdf file from Latex with R code. When I run the code Sweave("example.Rtex") in R it seems working, but when I run the Latex file it doesn't. The code error shown to me is below: *Runaway argument? {echo=FALSE} data<- read.csv("C:\\Users\\Daniele\\Desktop\\dati\\dati_england ! File ended while scanning use of \FV at BeginScanning. <inserted text> \par <*> ...le/Desktop/dati/LaTeX1.Rtex* The Sweave code in Latex is like this: *\begin{Scode}{echo=FALSE} data<- read.csv("c:\\Users\\Daniele\\Desktop\\dati\\dati_england....
2011 Mar 28
2
After successfull passwordless ssh login, unable to do rsync
...hing is driving me crazy and I can't find *what* the problem is. I managed to successfully login via ssh in a "passwordless" way (by means of RSA-keys). After this step is done and I'm logged into the remote host, I can type: rsync rsync://localhost and I get the correct reply: Dati Whenever I type rsync rsync://localhost/Dati I get prompted for the user password. This shouldn't be happening, so where do I have to look at? This is my /etc/rsyncd.conf: #motd file = /etc/rsyncd.motd #log file = /var/log/rsyncd.log pid file = /var/run/rsyncd.pid lock file = /var/run/rsy...
2004 Nov 02
3
time dependency of Cox regression
Hi, How can I specify a Cox proportional hazards model with a covariate which i believe its strength on survival changes/diminishes with time? The value of the covariate was only recorded once at the beginning of the study for each individual (e.g. at the diagnosis of the disease), so I do not have the time course data of the covariate for any given individual. For example, I want to state at the
2009 Feb 10
2
plotting the result of a nonlinear regression
Hello, to plot the result of a singular non linear regression (using nls) I usually use the function plotfit, for example: r.PTG.V<-nls(PTG.P~ fz1(Portata, a,b), data=dati, start=list(a=10, b=10), nls.control(maxiter=200), algorithm='port', trace=TRUE, na.action=na.omit, lower=list(a=0, b=10), upper=list(a=100, b=100)) plotfit(r.PTG.V) I tried to use the function plotfit on the result of the following for loop but I got an error message: for (i in 1:length(...
2004 Jun 22
2
ts & daily timeseries
I have defined a daily timeseries for the 365 days of 2003 issuing: myts = ts(dati[,2:10],frequency=365,) > myts Time Series: Start = c(1, 1) End = c(1, 365) Frequency = 365 and mytime = as.POSIXct(strptime(as.character(dati[,1]),format="%Y-%m-%d")) contains the dates from "2003-01-01" to "2003-12-31" How can I combine mytime and myts i...