search for: aver

Displaying 20 results from an estimated 46 matches for "aver".

Did you mean: aper
2013 Sep 20
1
Averate memory usage trend
Hi, I would like to understand how to draw a graph to find out the average memory used by a single httpd process given these details collected over a period of several days. I code R but this is about a method to find an average memory utilization. I believe I have enough data. How should I statistically calculate this ? The figures inside braces are the total htt...
2004 Apr 26
4
Resetting Asterisk
Is there a was to reset asterisk by dialing? Eg *99 and have it execute the commands to stop now and restart? Also eg *56 to reload? The reason for the restart command is over the weekend it started acting weird, the voice got really choppy and aver i restarted asterisk it was fine. We are just in testing right now but it would be nice to know how to do this if it were to happen again and im not here or cant SSH in to restart it. I could tell the users to dial *99 to fix the problem. Kyle -------------- next part -------------- An HTML attac...
2007 Jul 30
0
First translation: HowToContribute
...vengono sottoposti. Per poterci inviare dei contributi occorre: * Creare un login con un nome utente nel formato !NomeCognome * Sottoscrivere la [http://lists.centos.org/mailman/listinfo/centos-docs mailing list Centos-Docs ] * Mandare una mail a centos-docs at centos.org , "dopo" aver effettuato la registrazione, nella quale descrivete "come" e "dove" volete contribuire al wiki. Sarebbe carino se ci indicaste dove collocare il/gli articolo/i che state scriverndo. Ah, abbiamo anche bisogno del !NomeUtente che avete creato. * Aspettare che qualcuno del Admin...
2008 Mar 17
0
R.matlab errors and slow con
...", port=9999, remote=FALSE) matlab<- Matlab() isOpen.Matlab(matlab) Also, the initial examples in the help file work fine, but I encounter an error when trying to evaluate the following expression: # Create a function (M-file) on the Matlab server setFunction(matlab, " \ function [win,aver]=dice(B) \ %Play the dice game B times \ gains=[-1,2,-3,4,-5,6]; \ plays=unidrnd(6,B,1); \ win=sum(gains(plays)); \ aver=win/B; \ "); > evaluate(matlab, "[w,a]=dice(1000);") Error in list("evaluate(matlab, "[w,a]=dice(1000);")" = <environment>, : [2008...
2010 Nov 03
2
memory allocation problem
...i R users I am trying to run a non linear parameter optimization using the function optim() and I have problems regarding memory allocation. My data are in a dataframe with 9 columns. There are 656100 rows. >head(org_results) comb.id p H1 H2 Range Rep no.steps dist aver.hab.amount 1 1 0.1 0 0 1 100 0 0.2528321 0.1393901 2 1 0.1 0 0 1 100 0 0.4605934 0.1011841 3 1 0.1 0 0 1 100 4 3.4273670 0.1052789 4 1 0...
2018 May 29
3
Convert daily data to weekly data
...first six days of the year 1986. "X1986.01.01.10.30.00" is 01 January 1986 and the rest of the variable is redundant information. The last date is given as "X2016.12.31.10.30.00". I realized that I missed one information in my previous email, I would like to compute the weekly average by the variable ID. Thanks again! Sincerely, Shouro On Tue, May 29, 2018 at 3:24 PM, PIKAL Petr <petr.pikal at precheza.cz> wrote: > Hi > > Based on your explanation I would advice to use > > ?cut.POSIXt > > with breaks "week". However your data are rathe...
2018 May 29
0
Convert daily data to weekly data
...44 16.81818 18.82944 16.83569 You (probably) can get dates by as.Date(substring(names(test),2,11), format="%Y.%m.%d") [1] "1986-01-01" "1986-01-02" "1986-01-03" "1986-01-04" "1986-01-05" [6] "1986-01-06" NA but if you want just average those 6 values below each date you could do colMeans(test) and/or bind it together. > ddd<-as.Date(substring(names(test),2,11), format="%Y.%m.%d") > data.frame(ddd, aver=colMeans(test)) ddd aver X1986.01.01.10.30.00 1986-01-01 17.49152 X1986....
2013 Apr 22
4
Puppet catalog transfer often gets truncated (Could not intern from pson: error)
...le. If you run puppet agent multiple times in a row each time it will cut off at always different parts. The error manifests itself like this: Debug: node supports formats: b64_zlib_yaml pson raw yaml; using pson Debug: Using cached certificate for ca Debug: Using cached certificate for ds0.lab.avere.net Debug: Using cached certificate_revocation_list for ca Info: Retrieving plugin Debug: file_metadata supports formats: b64_zlib_yaml pson raw yaml; using pson Debug: Finishing transaction 70037484276920 Info: Loading facts in /var/lib/puppet/lib/facter/serialports.rb Debug: catalog supports fo...
2018 May 29
2
Convert daily data to weekly data
Dear all, I have daily data in wide-format from 01/01/1986 to 31/12/2016 by ID. I would like to convert this to weekly average data. The data has been generated by an algorithm. I know that I can use the lubridate package but that would require me to first convert the data to long-form (which is what I want). I am at a bit of loss of how to extract the date from the variable names and then converting the data to weekly...
2008 Jun 11
4
Areca Raid 6 ARC-1231 Raid 6 Slow LS Listing Performance on large directory
...ory cache on it. It is installed on Freebsd 7.0 STABLE with SCHED_ULE enabled. I have a folder with a lot of small and big files in it that total 3009 files. In the user system we have 2200 users in the password file. 1) When I do a ls -lh on the raid 6 array with 6 disks in the array it takes aver 16 seconds before it starts to display anything on the screen. 2) While running a tar command on another shell, the time goes to 28 seconds for the same list to start showing. 3) When I do a ls (with no other options) it starts to list right away. 4) When I do a ls -ln it displays right away as we...
2012 Oct 02
5
Is there any R function for data normalization?
Hello, I have a matrix with values, with columns c1..cn. I need the values to be normalized between 0 and 1 by column. Therefor, the 0 should correspond to the minimum value in the column c1 and 1 should correspond to the maximum value in the column c1. The remaining columns should be organized in the same way. Does a function in R exists for this purpose? Thanks, Rui [[alternative HTML
2018 May 29
0
Convert daily data to weekly data
...; x_long <- gather(x, key = 'date', value = "value", -ID) > # change the date to POSIXct > x_long$date <- ymd_hms(substring(x_long$date, 2, 19)) > # add the week of the year > x_long$week <- week(x_long$date) > x_long$year <- year(x_long$date) > # average by ID/week > avg <- x_long %>% + group_by(ID, year, week) %>% + summarise(avg = mean(value)) > avg # A tibble: 6 x 4 # Groups: ID, year [?] ID year week avg <int> <dbl> <dbl> <dbl> 1 1 1986. 1. 16.0 2 2 1986. 1. 16.0 3 3...
2007 Feb 27
16
understanding zfs/thunoer "bottlenecks"?
Currently I''m trying to figure out the best zfs layout for a thumper wrt. to read AND write performance. I did some simple mkfile 512G tests and found out, that per average ~ 500 MB/s seems to be the maximum on can reach (tried initial default setup, all 46 HDDs as R0, etc.). According to http://www.amd.com/us-en/assets/content_type/DownloadableAssets/ArchitectureWP_062806.pdf I would assume, that much more and at least in theory a max. ~ 2.5 GB/s should be possi...
2009 Jan 28
0
How-to-rotate-plot-title
...load degli allegati. GigaMail è il nuovo servizio gratuito di Alice che ti permette di inviare a chi vuoi, allegati di grandi dimensioni, fino a 2GB, in modo semplice e veloce, senza occupare spazio utile nella tua casella di posta. Per saperne di più visita il sito www.alice.it Ti ringraziamo per aver utilizzato il servizio Alice GIGA MAIL. [[alternative HTML version deleted]]
2010 May 25
0
Follow-up: how can I read a non-standard XLS file
...load degli allegati. GigaMail è il nuovo servizio gratuito di Alice che ti permette di inviare a chi vuoi, allegati di grandi dimensioni, fino a 2GB, in modo semplice e veloce, senza occupare spazio utile nella tua casella di posta. Per saperne di più visita il sito www.alice.it Ti ringraziamo per aver utilizzato il servizio Alice GIGA MAIL. [[alternative HTML version deleted]]
2011 Mar 22
3
dns question
Hi all How can I know the refresh rate of the dns server? Thank you
2005 Mar 01
0
[www.tuttinudi.it] Linsey
Amo le curve femminili, senza avere una particolare predilezione per questo o quel tipo di curva. Per intenderci, il seno mi piace sia che sia piccolo, sia che sia grande. La sensazione al tatto poi ? sempre diversa e foriera di una straordinaria variet? di emozioni. Di quelli piccoli ? bello disegnare il profilo con un dito (solita...
2013 Aug 06
0
surprise)))
...ble de la noblesse francaise c-est de descendre immediatement de quelques-uns de ces trente mille hommes casques cuirasses brassardes cuissardes qui sur de grands chevaux bardes de fer foulaient aux pieds huit ou neuf millions d-hommes nus qui sont les ancetres de la nation actuelle. Voila un droit avere a l-amour et au respect de leurs descendants! Et pour achever de rendre cette noblesse respectable elle se recrute et se regenere par l-adoption de ces hommes qui ont accru leur fortune en depouillant la cabane du pauvre hors d-etat de payer les impositions. Miserables institutions humaines! Qui f...
2002 Dec 14
2
Troubles with Network Neighbourhood
Hi , I've some torubles with smb server provided with Debian 3.0 Woody - I can't see any machine in network neighbourhood, altought all machines are loging and mapping resources shared by server correctly. What exactly is needed to be installed with smb - any DNS or something like this? Maybe the question is not too clever, but when I've had my server on RH7.2 there was no such
2011 Apr 19
0
Error message in package:bayesSurv. Why?
...predictive2(Surv(rep(1, nr), rep(1, nr)) ~ Child+blustatus+well.before+earlydep+cluster(Idnr), random=~1, grid=pred.grid, data=pdata.now, Gspline=list(dim=1, K=15), quantile=quants, skip=skip, by=1, nwrite=nwrite, only.aver=FALSE, predict=list(density=TRUE, Surv=TRUE, hazard=TRUE), dir="chaindir.childmdd", extens="_2", extens.random="_b2", version=3) } } which seems to correspond, gives the error message Error in predictive2(Surv(rep(1...