search for: sunspot

Displaying 20 results from an estimated 51 matches for "sunspot".

2004 Sep 01
1
sunspot data in R 2.0.0
I noticed this in the NEWS: o Datasets 'sunspot.month' and 'sunspot.year' are available separately but not via data(sunspot) (which is used by package lattice to retrieve a dataset 'sunspot'). Now, the 'sunspot' dataset included in lattice was actually a mistake, I realized later that I instead wan...
2003 Jun 09
1
Questions for package ts prediction
...t; and "func2" is the function variable name being y and data, respectively. But running the last line of the following script will give the message: Error in ts(x): object is not a matrix. I am confused. Also, could somebody kindly let me what's the answer if any for the following sunspot example from the package help: data(sunspot) (sunspot.ar <- ar(sunspot.year)) # why not just sunspot.ar <- ar(sunspot.year) ? predict(sunspot.ar, n.ahead=25) Thanks in advance. Zhu Wang Statistical Science Department Southern Methodist University (214)768-2453 -- zhu wang <zhuw at ma...
2007 Sep 07
5
unable to add IP address to eth0:0 eth0:1 etc
...5.0 /sbin/ifconfig eth0:5 xx.xx.xx.15 netmask 255.255.255.0 /sbin/ifconfig eth0:6 xx.xx.xx.20 netmask 255.255.255.0 /sbin/ifconfig eth0:7 xx.xx.xx.21 netmask 255.255.255.0 /sbin/ifconfig eth0:8 xx.xx.xx.22 netmask 255.255.255.0 but on looking at the output of /sbin/ifconfig, I see this: [root at sunspot ray]# /sbin/ifconfig eth0 Link encap:Ethernet HWaddr 00:00:C5:C2:1B:01 inet addr:64.135.16.15 Bcast:64.135.16.255 Mask:255.255.255.0 inet6 addr: fe80::200:c5ff:fec2:1b01/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:54917...
2011 Dec 02
20
Need Some Guides on Solr with Rails.
Hi Everyone, I am pretty new to Rails. I have very little idea about everything. But for my new project i have been asked to do some research on Solr search and implement it on Rails. Please provide me some link on tutorials and guides about Solr on Rails. Trouble is... have to do it by tomorrow. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are
2002 Nov 15
1
lattice: formatting tickmark labels of log scaled axes
...m: How can I format tickmark labels of log scaled axes of lattice graphics in the usual `xxx'-Format (and not in the scientific format). Example: (according to the help-page of xyplot): In the first plot I get the xxx-Format, in the second plot I get the scientific format (10^xxx): data(sunspot) plot( 1:37, sunspot, log='y',type='l') xyplot( sunspot ~ 1:37, type = "l", scales=list(y=list(log=TRUE)) ) Wolfram -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ....
2012 Apr 20
0
How to configure morethan one solr cores in sunspot.yml in same environment
Hi am using rails 2.x and outoftime-sunspot gems I want to use morethan one solr cores and using sunspot in my application How to configure morethan one cores in sunspot.yml let''s assume Model1 using core1 Model2 using core2 How to configure them in my application -- Posted via http://www.ruby-forum.com/. -- You received this...
2013 Jan 25
4
Usage of ram for Sunspot Search engine
Hi all, I am using Sunspot Search Engine in my app. When I deployed my app in production It it bit slower side. My Server Details: ram 256 Ubuntu 11.10 How can I check why my app is slow in production can any one help me out to solve this issue. Cheers, Kp -- You received this message because you are subscribed to t...
2007 Aug 05
2
New CentOS DNS Server woes
...folks, I've put my new DNS server in place, told the primary that this IP would be pulling zones and restarted BIND on the primary. I configured my named.conf file to pull zones from the primary, started BIND on the new box. Here's where I get confused ++++++++++++++++++++++++ [root at sunspot etc]# /etc/init.d/named status number of zones: 169 debug level: 0 xfers running: 0 xfers deferred: 0 soa queries in progress: 0 query logging is OFF recursive clients: 0/1000 tcp clients: 0/100 server is up and running +++++++++++++++++++++++ So the new BIND sees the conf file and recognizes that...
2007 Aug 16
1
SELinux questions, upon restarting BIND
...hout sacrificing SELinux protections. The system does not have X installed, so 'setroubleshoot' isn't an option (unless there's a text equivalent). Thanks in advance for any opinions/suggestions/enlightenments :) ~Ray ============================================= Aug 16 07:12:23 sunspot setroubleshoot: SELinux is preventing /usr/sbin/named (named_t) "getattr" access to /dev/random (tmpfs_t). For complete SELinux messages. run sealert -l 1ab129b8-9f9f-48ae-a67e-d52f63a5fb5a ============================================= Aug 16 07:12:23 sunspot setroubleshoot:...
2005 Feb 02
4
(no subject)
...ate Facts and Figures state.center (state) US State Facts and Figures state.division (state) US State Facts and Figures state.name (state) US State Facts and Figures state.region (state) US State Facts and Figures state.x77 (state) US State Facts and Figures sunspot.month Monthly Sunspot Data, 1749-1997 sunspot.year Yearly Sunspot Data, 1700-1988 sunspots Monthly Sunspot Numbers, 1749-1983 swiss Swiss Fertility and Socioeconomic Indicators (1888) Data treering Yearly T...
2010 Mar 18
2
multiple print commands in win.metafile()
...s not work; but same thing works with pdf() library(lattice) win.metafile("test.wmf") p1 <- xyplot(decrease ~ treatment, OrchardSprays, groups = rowpos, type = "a", auto.key = list(space = "right", points = FALSE, lines = TRUE)) p2 <- xyplot(sunspot.year ~ 1700:1988, xlab = "", type = "l", scales = list(x = list(alternating = 2)), main = "Yearly Sunspots") print(p1, split=c(1,1,2,1), more=TRUE) print(p2, split=c(2,1,2,1)) dev.off() Can anyone help please, thanks, Kim [[alternative...
2010 Oct 03
5
How to iterate through different arguments?
If I have a model line = lm(y~x1) and I want to use a for loop to change the number of explanatory variables, how would I do this? So for example I want to store the model objects in a list. model1 = lm(y~x1) model2 = lm(y~x1+x2) model3 = lm(y~x1+x2+x3) model4 = lm(y~x1+x2+x3+x4) model5 = lm(y~x1+x2+x3+x4+x5)... model10. model_function = function(x){ for(i in 1:x) { } If x =1, then the list
2006 Mar 14
1
VAR
Hello! I'm trying to forecast the UK exchange rate. To estimate my model I use ar() function. However, I can't get a forecast of the exchange rate using the function forecast(). Regards, Julija Kackina [[alternative HTML version deleted]]
2009 Nov 18
1
Spectrum confidence interval
Dear useRs, I'd like to plot a confidence interval on a periodogram. My problem is that spec.pgram(sunspots,ci=0.95,log="yes") gives me a blue error bar on the plot, but spec.pgram(sunspots,ci=0.95,log="no") does not. My questions are: 1. how should I plot the confidence interval with log="no"? 2. how should I get the min and max values of the confidence interval? Many th...
2007 Aug 17
2
repost: SELinux questions, upon restarting BIND
...t; > so 'setroubleshoot' isn't an option (unless there's a text equivalent). > > > > Thanks in advance for any opinions/suggestions/enlightenments :) > > > > ~Ray > > > > ============================================= > > Aug 16 07:12:23 sunspot setroubleshoot: SELinux is preventing > > /usr/sbin/named (named_t) "getattr" access to /dev/random > > (tmpfs_t). For complete SELinux messages. run sealert -l > > 1ab129b8-9f9f-48ae-a67e-d52f63a5fb5a > > ============================================= &gt...
2007 Aug 22
5
BIND issues, server not responding
....1; 64.135.16.15; }; }; ===================================== I've placed a copy of resolv.conf in /etc/ as well as /var/named/chroot/etc as a result of seeing this message in /var/log/messages (the file in /etc/ had been a symlink to the file in the chrooted path before this) Aug 22 13:10:06 sunspot restorecond: Will not restore a file with more than one hard link (/etc/resolv.conf) No such file or directory /etc/init.d/named status returns: [root at sunspot etc]# /etc/init.d/named status number of zones: 172 debug level: 0 xfers running: 0 xfers deferred: 0 soa queries in progress: 0 query...
1999 Jul 27
3
Preliminary version of ts package
...tting and forecasting. Datasets in base R: ------------------ airmiles Passenger-Miles on US Airlines 1937-1960 co2 Moana Loa Atmospheric CO2 Concentrations nhtemp Yearly Average Temperatures in New Haven CT presidents Quarterly Approval Ratings for US Presidents sunspots Monthly Mean Relative Sunspot Numbers uspop Populations Recorded by the US Census Datasets in package ts: ---------------------- accdeaths US accidental deaths 1973-8 beaver1 time series of body temperatures of two beavers beaver2 deaths time-series on UK lung dea...
2007 May 29
0
Function tsmooth
Hi, Assume that we may model the Nottingham temperature data (nottem) or Sunspot data (sunspot) set by a nonparametric autoregressive model of the form Yt = m(Yt-1) + et. Using the kernel estimation method, produce the resulting plots. We may use the fucntion tsmooth(x,y,"notmal",bandwidth=0.01). How can i define x and y using data n...
1999 Jul 08
1
new time series package available
...nt BDS Test quadmap Quadratic Map (Logistic Equation) read.matrix Read Matrix Data read.ts Read Time Series Data runs.test Runs Test sales Sales Data with Leading Indicator. spectrum Spectrum Estimation sunspot Yearly Sunspot Data, 1700-1988. Monthly Sunspot Data, 1749-1997. surrogate Generate Surrogate Data toeplitz Form Symmetric Toeplitz Matrix treering Yearly Treering Data, -6000-1979. tsparam T...
1999 Jul 08
1
new time series package available
...nt BDS Test quadmap Quadratic Map (Logistic Equation) read.matrix Read Matrix Data read.ts Read Time Series Data runs.test Runs Test sales Sales Data with Leading Indicator. spectrum Spectrum Estimation sunspot Yearly Sunspot Data, 1700-1988. Monthly Sunspot Data, 1749-1997. surrogate Generate Surrogate Data toeplitz Form Symmetric Toeplitz Matrix treering Yearly Treering Data, -6000-1979. tsparam T...