similar to: Color of the plot which correspond to the group of the observations

Displaying 20 results from an estimated 6000 matches similar to: "Color of the plot which correspond to the group of the observations"

2009 Sep 23
4
Problem in graph plotting
Dear All, Let: dp: depth of the?river tp: temperature with respect to depth We can?have a simple scatter plot, between depth as y-axis and temperature as x-axis,?by using a?plot function as shown?below. #####################? dp <- c(1,4,3,2,5,7,9,8,9,2) tp <- 1:10 plot(tp,dp, type= 'l') ##################### ? Could someone advice me on?the way to?plot the same pair of
2009 Sep 05
8
Color index in image function
Dear All, I was looking for the color index in?image function,?such as from topo.colors(n) and etc. but still never found it. For instance, from the help menu. ########################################### # Volcano data visualized as matrix. Need to transpose and flip # matrix horizontally. image(t(volcano)[ncol(volcano):1,]) # A prettier display of the volcano x <- 10*(1:nrow(volcano)) y
2007 Apr 21
3
samba pdc issue
I have upgrade the pdc server from debian sarge to etch. After this operation we can't login to the domain (client windows 2000 & XP) smbclient works fine and from a windows local account I can browser the samba directories too (puttin username and password before..) I use tdbsam of course and pdbedit -L let me see all the accounts, it seems to work fine I tried to remove a pc from
2010 Apr 02
4
Derivative of a smooth function
Dear All, I've been?searching for?appropriate codes to compute the rate of change and the curvature?of ?nonparametric regression model whish was denoted by a smooth function?but?unfortunately?don't manage to?do?it. I presume that such characteristics from a smooth curve can be determined by the first and second derivative operators. The following are the example of fitting a
2009 Sep 22
3
How to combine matrices?
Dear All, Let a, b and c are?three matrices with same no. of column but different no. of row. a <- matrix(1, 1, 2) b <- matrix(2, 2, 2) c <- matrix(3, 3, 2) Could someone help me to combine these matrices together as a single matrix? Thank you Fir
2010 Jan 22
4
How to seperate date and time into different columns?
Dear All, I have a series of data in which the first column consist of a combination of date and time, for instance 17 April 2008 at 4.01pm, such data is recorded as: 4/17/2008 16:01 I'd like to seperate it into four different columns which consist of Day, Month,Year and Time, respectively. Could someone please advice me on this mater? Thank you, Fir
2011 Feb 22
2
How to find points of intersection
Dear All, I'm looking an appropriate way in R to compute/estimate? points of intersection between a line and a curve and will really appreciate for any suggestion or ideas? Thank you, Fir
2010 Aug 13
2
Kalman filter
Dear All, Could anyone?give me a hand?to suggest few packages in R to running Kalman prediction and filtration ? Thanks Fir
2009 Oct 02
2
How to speed up R with version 2.9.2?
Dear All, I'm sorry if my question does not suit with this R group. I have recently installed?R software with version 2.9.2, but i found the program took almost 1 minute as soon as it was opened, before it can be used. However,?the previous version 2.9.1 only take few seconds?after the menu bar was clicked. This circumstance has caused me to wait for couple of minutes as several R windows
2017 Mar 21
4
Centos7 USB wifi recommendation
I am looking for one of those very small USB wifi adapters for the server I am working on. I am tired of dealing with the 4" long TP-LINK I have and for my purposes, one of those little 1cm ones would do. But which work with Linux? When I was last in the store, only the TP-LINK said it was supported on Linux... thanks
2012 Feb 25
9
[xen-unstable bisection] complete test-amd64-i386-rhel6hvm-amd
branch xen-unstable xen branch xen-unstable job test-amd64-i386-rhel6hvm-amd test redhat-install Tree: linux git://git.kernel.org/pub/scm/linux/kernel/git/jeremy/xen.git Tree: qemu git://xenbits.xen.org/staging/qemu-xen-unstable.git Tree: qemuu git://xenbits.xen.org/staging/qemu-upstream-unstable.git Tree: xen http://xenbits.xen.org/staging/xen-unstable.hg *** Found and reproduced problem
2011 May 04
3
best subset regression in R
Dear All,   Could someone please give some advice the way to do linear modelling via best subset regression in R? I'd really appreciate for your kindness.   Thanks, Kagba [[alternative HTML version deleted]]
2013 Jan 19
0
import data (txt) separated by many blank spaces and lines with variable names that correspond to multiple observations.
Hello, I have read other posts and in part I tried to solve my problem. I have a txt file but the values ??as well as being separated by many blank spaces and lines eg. var_a var_b var_c 1 2 4 5 2 6 2 have an encoding problem in the header, let me
2011 Feb 10
1
Optimal choice of the threshold u in Peak Over Threshold (POT) Approach
Dear All, Could?someone please suggest me the way to calculate the optimal threshold in POT method via?any available ?packages in R? Thanks, Fir
2009 Jul 14
1
Problem with GroupedData
Hi,   I have an original data frame with 8 columns of variables, which are stored in 'data1' frame.   data1 <- read.csv("E:\\PHD GLASGOW UNIVERSITY\\Data\\R\\Colin\\Cailness21.csv") attach(data1) names(data1)   [1] "Date"       "d"          "m"          "y"          "Time"      [6] "Depth"      "Temp"      
2009 Oct 15
2
Estimation in a changepoint regression with R
Dear All, I'm trying to do the estimation in a changepoint regression problem via R, but never found any suitable function which might help me to do this. Could someone give me a hand?on this matter? Thank you.
2011 May 04
2
Box-Cox transformation in R
Hi,   Could any one please help how I can transform data based on Box-Cox Transformations in R.   Any helps will be much appreciated.   thanks, Kagba [[alternative HTML version deleted]]
2010 Feb 08
1
Color intervals in image.plot function
Hi, The script below is my current coding in order to produce a contour plot of temperature across altitude and time. In my case,?time,altitude and temperature?are represented by x, y and z variables. ############################################## Brazilan.Pallete <- colorRampPalette(c("blue","green","yellow","red")) image.plot(x, y, z, col =
2009 Jun 03
1
Function in R for computing correlation matrix and covariance matrix
Hi, At present, i have two distinct and real values for the coefficient, which is  required in AR(2) model. Based on my revision, for distinct and real values of the coefficients in AR(2) model, the correlation structure separated by lag h can be computed by p(h) = a*z1^(-h) + b*z2^(h), where p(h) is the autocorrelation separated by lag h, a and b can be determined by initial values, z1 and z2
2009 Oct 08
1
Slope between two points
Dear All, Let? 499 piece-wise lines were buit up by 500 pair of observations, via R code below. x <- 1:500 y <- rnorm(500) plot(x, y, type = 'b') I was trying to compute all the slopes?for the ?lines which were connected between two adjacent points. For instance,?slopes?of lines between first and second points, second and third points, and so on, until?between??points 499 and 500,