search for: pole

Displaying 20 results from an estimated 130 matches for "pole".

Did you mean: hole
2011 Mar 05
1
Problems with shared folders with Dovecot 1.2.12
...count: 140 mail_max_userip_connections(default): 30 mail_max_userip_connections(imap): 30 mail_max_userip_connections(managesieve): 10 verbose_proctitle: yes first_valid_uid: 306 last_valid_uid: 306 first_valid_gid: 306 last_valid_gid: 306 mail_uid: vmail mail_gid: vmail mail_location: maildir:/mnt/pole/mail/valbek.cz/%u mail_executable(default): /usr/libexec/dovecot/imap mail_executable(imap): /usr/libexec/dovecot/imap mail_executable(managesieve): /usr/libexec/dovecot/managesieve mail_plugins(default): acl imap_acl mail_plugins(imap): acl imap_acl mail_plugins(managesieve): mail_plugin_dir(defau...
2011 Nov 12
1
Subsetting data leads to funky plots
...'m trying out a basic plot, but something about the way I subset my data leads to problems with the plot. Here is the first bit of my data set year,date,location,quadrat_juvenile,photo_location,photo_exists,genus,count,divers 2005,2005-04-30, 1 Fringing Reef,1, 1 Fringing Reef Coral Transect Pole 1-2 Quadrat 1,t,Acanthastrea,0,HP+MEM 2005,2005-04-30, 1 Fringing Reef,1, 1 Fringing Reef Coral Transect Pole 1-2 Quadrat 1,t,Acropora,0,HP+MEM 2005,2005-04-30, 1 Fringing Reef,1, 1 Fringing Reef Coral Transect Pole 1-2 Quadrat 1,t,Astreopora,0,HP+MEM 2005,2005-04-30, 1 Fringing Reef,1, 1 Fringing...
2012 May 11
0
NLS sensitivity to start= values or poles in data range
...actual data, but not taken from the dataset) for generating the starting point for the nls() routine. However if I try to use actual data points extracted from the dataset for the preliminary fit, the fitted function can often fail to approximate the data. One culprit that I suspect may be that a pole (real root of the denominator) of the initial fit is laying in the range of the data, since the NIST starting values produce a preliminary fit that does not have any poles over the data range. Unfortunately, I'm not familiar enough with the nls() routines to pass judgement. The attached code...
2018 Jun 01
2
Time-series moving average question
You are right that there are no NAs in the practice data. But there are NAs in the moving average data. To see this, break your work into two separate steps, like this: tnr.ma <- ma(dat3[1:28], order=3) TNR_moving_average <- forecast(tnr.ma, h=8) I think you will find that the warning comes from the second step. Print tnr.ma and you will see some NAs. -Don -- Don MacQueen Lawrence
2018 Jun 01
0
Time-series moving average question
Hi Don, wow, you are so right. I picked that piece up from the bloggers tutorial and since I am R naive yet, I thought it was all one step moving_average = forecast(ma(tdat[1:31], order=2), h=5) Truly, I usually print and check at every step I can, as painful as it is sometimes. Great lesson for this novice usR. So the first and last values are NA in each case? Do you know why? Should I replace
2005 Jan 13
0
autocorrelation and levinson-durbin
...uot;, during the analog > era, this number is used. or maybe 10 is analagous > to a perfect number! ;-) In linear prediction the number of coefficients required for a suitable model are determined from the spectral content of the source. For each peak (formant) frequency in the spectrum 1 pole is required. Two coefficients are required for each pole in the model. With human speech it is typical to see one peak resonance for the fundamental frequency (typically 50-440Hz) and one additional peak per 1000Hz. From this we can see that the best order for an LPC speech model is based upon t...
2015 Oct 13
2
Second DC doesn't recognize users/groups on getent
...itch.conf is fine, both dcs are like this: passwd: files sss winbind shadow: files sss winbind group: files sss winbind smb.conf is the same on both DCs (except for the netbios name, where DC1 is DC1 and DC2 is DC2) # Global parameters [global] workgroup = POL realm = POLE.ONLINE netbios name = DC1 server role = active directory domain controller dns forwarder = 192.168.22.180 log level = 3 template shell = /bin/bash idmap_ldb:use rfc2307 = yes allow dns updates = nonsecure [netlogon] path = /usr/local/...
2018 May 15
0
Forecasting tutorial "Basic Forecasting"
Instead of Tsp = c(2016, 2018, 12) try Tsp = c(2016, 2018.25, 12) Hence, you can specify the object as structure(c(5973156.76, 5159011.2, 6695766.64, 6365359, 6495218.53, 7226302.39, 6835272.7, 7383501.57, 6962748.19, 7623278.72, 7274994.33, 7919421.8, 7360740.81, 7436693.35, 8545765.55, 7337269.76, 8180585.44, 8376635.05, 7758261.24, 10374641.22, 8000314.11, 9114958.9, 9805149.15,
2018 Jun 01
2
Time-series moving average question
My guess would be that if you inspect the output from ma(dat3[1:28], order=3) you will find some NAs in it. And then forecast() doesn't like NAs. But I can't check, because I can't find the ma() and forecast() functions. I assume they come from some package you installed; it would be helpful to say which package. -Don -- Don MacQueen Lawrence Livermore National Laboratory 7000
2018 Jun 01
0
Time-series moving average question
Hello Don, thank you for your response. I appreciate your help. I am using the forecast package, originally I found it following a forecasting example on bloggers.com https://www.r-bloggers.com/time-series-analysis-using-r-forecast-package/ And subsequently located the complete pdf https://cran.r-project.org/web/packages/forecast/forecast.pdf Since I created this practice data using the
2018 May 15
3
Forecasting tutorial "Basic Forecasting"
Hi. I am trying to follow this forecasting tutorial at: https://www.r-bloggers.com/basic-forecasting/ Using my own data, I cannot get past the first step, lots of laughs. dat3 <- structure(c(5973156.76, 5159011.20, 6695766.64, 6365359.00, 6495218.53, 7226302.39, 6835272.70, 7383501.57, 6962748.19, 7623278.72, 7274994.33 ,7919421.80, 7360740.81, 7436693.35,
2018 May 07
1
read.csv and Decimal places
... and see also ?print.data.frame , the "digits" argument. See also ?str It might be worth your while spending time with an R tutorial or two that covers such topics, i.e. distinguishing between an object and various (S3) methods that "represent" it, such as print(), summary(), plot() etc. -- Bert Bert Gunter "The trouble with having an open mind is that people keep
2005 Sep 27
1
Moaning dog...
...t that her telephone failed to ring when her friends called - and that on the few occasions when it did ring, her pet dog always moaned right before the phone rang. The telephone repairman proceeded to the scene, curious to see this psychic dog or senile elderly lady. He climbed a nearby telephone pole, hooked in his test set, and dialed the subscriber's house. The phone didn't ring right away, but then the dog moaned loudly and the telephone began to ring. Climbing down from the pole, the telephone repairman found: 1. The dog was tied to the telephone system's ground wire via a ste...
2018 May 04
0
Converting a list to a data frame
It looks like you made a copy/paste error below. Your ata.frame should be data.frame. Kevin On 05/04/2018 08:18 AM, Bill Poling wrote: > Good morning. > > Novice usR. Here. > > I am following this string, among many, learning as I go. > > Quick question please? > > I thought that perhaps ata.frame was part of the zoo pkg, b/c when I > searched it came up in
2018 May 04
2
Converting a list to a data frame
Good morning. Novice usR. Here. I am following this string, among many, learning as I go. Quick question please? I thought that perhaps ata.frame was part of the zoo pkg, b/c when I searched it came up in help? However, evidently not or I am not using it properly. Please advise, thank you. x <- list(A=data.frame(x=1:2, y=3:4),B=data.frame(x=5:6,y=7:8)) x2 <- do.call(rbind,
2006 Jul 05
1
Permission Denied when "all" bits not set to r/w
...ng trouble with permissions on Samba 3.0.21. It almost seems that the "all" bits are the only ones that Samba is obeying. For instance, I created this file remotely over a samba share: brandon.dimcheff@unity ~/untitled folder $ ls -als total 17 0 drwx--S--- 3 brandon.dimcheff westpole 160 Jul 3 15:51 . 1 drwx------ 12 brandon.dimcheff westpole 816 Jul 3 15:51 .. 4 -rw-rw---- 1 brandon.dimcheff westpole 4 Apr 12 17:41 test2 But when I try to access it, I get a permissions denied error and the logs produce the following. If I set the permissions of the file to 666,...
2015 Oct 13
3
Second DC doesn't recognize users/groups on getent
...sss winbind >> group: files sss winbind >> >> >> smb.conf is the same on both DCs (except for the netbios name, where DC1 >> is >> DC1 and DC2 is DC2) >> # Global parameters >> [global] >> workgroup = POL >> realm = POLE.ONLINE >> netbios name = DC1 >> server role = active directory domain controller >> dns forwarder = 192.168.22.180 >> log level = 3 >> template shell = /bin/bash >> idmap_ldb:use rfc2307 = yes >>...
2012 Sep 02
1
why variations in accuracy between R to ARCGIS for the same point reprojection?
Hi everyone, I wonder if anyone knows the reason why the outputs of the same reprojection in r and arcgis are different?. The magnitude of the change can be up to 40 km in the poles. Basically, I have a database of points equally separated by one degree over the globe. In ARCGIS, I am projecting the data in GCS-WGS-1984 and then reprojected it to Berhmann to ensure equal area distribution of the points. In R, I am using: spPoint <- SpatialPoints(coords=coordinates...
2015 Oct 13
0
Second DC doesn't recognize users/groups on getent
...files sss winbind > shadow: files sss winbind > group: files sss winbind > > > smb.conf is the same on both DCs (except for the netbios name, where DC1 is > DC1 and DC2 is DC2) > # Global parameters > [global] > workgroup = POL > realm = POLE.ONLINE > netbios name = DC1 > server role = active directory domain controller > dns forwarder = 192.168.22.180 > log level = 3 > template shell = /bin/bash > idmap_ldb:use rfc2307 = yes > allow dns updates = nonsec...
2018 May 07
0
read.csv and Decimal places
The stored numbers are correct. They are rounded on printing. print(RevFCast, digits=17) See ?options And scroll down to digits. On Mon, May 7, 2018 at 11:50 Bill Poling <Bill.Poling at zelis.com> wrote: > Hi, Novice UsR here. > > I have a csv file that contains 13 columns of numeric data that have > decimal places (for the most part). > > After reading in the file >