Displaying 20 results from an estimated 400 matches similar to: "fullscreen 3D leads to gnome panels rearranging"
2010 May 07
2
How to re-arrange data in R
Dear users,
I have monthly station data (44) stations data for 45 years which I have
read in R using read.table. the data is in the format:
Year Month Station1 Station2 ......................................
Station 44 (i.e the column names in the 1st row), I also have the
latitude and longitude of the stations in a separate file in R (in the
format : Station LAT LON).
I wish to
2004 Jan 15
1
Ordering bars in barplots
I have a dataframe such that when I enter the dataframe name at the R prompt
and see the data, the order of the data is correct (ie. what I want -
ordered numerically by the factor, class). The table is akin to the
following:
df: (dataframe = df)
uniqueID class age
a 1 32
b 1 21
c 1 13
d 1 11
e 3 15
f 3 16
g 3 31
h 3 25
i 4 23
j 4 32
k 4 31
l 7 11
m 7 6
n
2008 Mar 25
1
[root@84-45-228-40.no-dns-yet.enta.net: Cron <chris@home> rsync -r --exclude /In/ --exclude /Lirsync error message that I don't understand
I'm getting this error message and I don't really understand what
rsync is trying to tell me:-
rsync: link_stat "/rdiffBackup/gradwell/Mail/." failed: No such file or directory (2)
rsync error: some files could not be transferred (code 23) at main.c(977) [sender=2.6.9]
Can anyone explain what it's saying please. /rdiffBackup/gradwell/Mail/
does exist and is
2005 Aug 25
2
concerning econometrics usage of "R"
Hi,
I am currently looking for a program or programmng language easy to
learn, easier to operate on.I heva heard about "R", However I
understand that "R" is designed especially for statisticians. As an
economist, working on applied econometrics, I am not sure if it can
meet my needs.
Will I be able to reach precise time series or panal data regression
results with
2009 Jul 17
2
Resolution changes sometimes rearranging desktop
Sometimes when I play games that use a resolution different from my normal X display, the windows on my workspace get shifted over toward the upper left. It's an issue that's been happening for a long while and I'm not sure if this is more of a general X issue or something specific to wine. As far back as I remember, it only happens with wine (0.x-0.9, 1.0, 1.1) and I've seen it in
2007 Jun 11
1
Rearranging Capture History Data in R
What code can i use to convert a table like this:
Tag# Date
1 1
2 1
3 1
4 1
2 2
4 2
1 3
2 3
4 4
Into one like this:
Tag 1 2 3 4 #Date header
1 1 0 0 1
2 1 1 1 0
3 1 0 0 0
4 1 1 0 1
Thanks,
Ben Cox
Research Assistant (M.S.)
Montana Cooperative
2003 Jan 19
0
Rearranging subtrees and Eisen Cluster
I am attempting to replicate what Cluster 3.0 and Treeview (both by Mike
Eisen) to cluster both microarray genes and arrays does using R with
hclust. I basically utilized the plot.mat function in sma library with
some layout() and hclust().
1. Can I know if some has already written such a function or available
in some package.
2. If not, would appreciate if someone could take the time to test
2003 Feb 05
1
rearranging rows
Dear all,
I am working with a matrix structured as follows
Factor 1 Factor2 ...
Country 1
Country 1
Country 2
Country 2
...
Country N
Country N
and I need to rearrange it according to the following scheme
Factor 1 Factor2 ...
Country 2
Country 2
Country N
Country N
...
Country 1
Country 1
where countries are ordered accordingly to the average
2006 Jun 23
1
rearranging data frame rows
Hi All,
I have two data frames. The first contains data about a number of individuals,
coded in the first column with a name, in an order I find convenient.
The second contains different data about the same indivduals, in a different
order. Both data frame have the individual names in the first column.
I need to reorder the second data frame so the rows are rearranged in the same
manner as
2006 Jun 23
0
R: rearranging data frame rows
Have a look at merge.
Ciao
Vittorio
>----Messaggio originale----
>Da:
f.calboli at imperial.ac.uk
>Data: 23-giu-2006 18.10
>A: "r-help"<r-
help at stat.math.ethz.ch>
>Ogg: [R] rearranging data frame rows
>
>Hi
All,
>
>I have two data frames. The first contains data about a number
of individuals,
>coded in the first column with a name, in an order
2007 Oct 11
2
Rearranging dataset
Hi all, I have a datasei like this :
ID Date Price
aa 01/01/07 12
aa 01/02/07 13
bb 01/01/07 23
bb 01/02/07 12
Now I want to write them in following format :
ID Date Price ID Date Price
aa 01/01/07 12 bb 01/01/07 23
aa 01/02/07 13
2011 Apr 21
1
Rearranging columns with cbind
I'm getting an error that I don't understand when trying to rearrange my data
columns with cbind. My data is in 27 columns, like so:
> data <- read.table("CalledFeatsNimblegen.csv", header=T, sep=",")
> names(data)
[1] "MF_not_mC" "MF_promoter" "MF_genebody"
"FF_not_mC"
[5]
2008 Jul 31
1
Rearranging Data
Hi everyone,
A few days back Jim helped with out, helping me find an automated way of
determining the mean and median of intervals between price changes.
However, a new set of data I have is no longer in the same format.
CDSmod is the file that was used with this code:
x <- read.csv('/cdsmod.csv', as.is=TRUE, check.names=FALSE)
x$Date <- as.Date(x$Date, "%m/%d/%Y")
2009 Jul 13
1
R in rearranging equations
Hi,
can anyone tell me if R can be used to rearrange very complicated equations
in terms of one of the variables?
I have:
dx/dt = a*b*m*y*(1-x)-r*x
and, having set:
dy/dx = 0,
need to rearrange in terms of x. The problem I have is that I don't know how
to rearrange equations when the variables are not yet defined (I get
messages warning me that x etc can't be found). I'm not sure
2009 Nov 12
1
Rearranging long tables, Sweave, xtable, LaTeX
Dear R-users,
consider the two following outputs, ## 1 and ## 2
\begin{Scode}{Setup, echo = FALSE, print = FALSE, eval = TRUE}
with(expand.grid(Fact1 = 1:3, Fact2 = 1:40), table(Fact1,
Fact2)) ## 1
xtable(with(expand.grid(Fact1 = 1:3, Fact2 = 1:40), table(Fact1,
Fact2))) ## 2
\end{Scode}
The first line
with(expand.grid(Fact1 = 1:3, Fact2 = 1:40), table(Fact1, Fact2))
2011 Apr 21
1
Rearranging PCA results from R
Hi!!
I'm having trouble selecting 10 out of 41 attributes of the KDD data set. In
order to identify the components with the higher variance I'm using
princomp. the result i get for summary(pca1) is:
Comp.1 Comp.2 Comp.3
Comp.4 Comp.5 Comp.6 Comp.7 Comp.8
Comp.9
2002 May 04
2
R crashes trying to read a data.frame
Dear all,
> version
_
platform i386-pc-mingw32
arch i386
os mingw32
system i386, mingw32
status
major 1
minor 5.0
year 2002
month 04
day 29
language R
OS: Win98
I have a strange problem with a particular data.frame built with
2011 May 08
2
Rearranging variables in table in non-alphabetical (manually specified) order
Dear all,
I'm trying to rearrange variables in a table in a custum order for using it with levelplot. So far I could only find examples showing how to sort alphabetically. Here is a short example:?
a <- c("Anna","Anna","Michael","Klaus","Klaus","Anna","Fritz")?
b <-
2010 Jan 27
2
Randomly rearranging elements of sets
Hi
I've recently been trying to solve some probability questions in R, but am
having trouble.
This is one question thats been causing some hair loss:
Given the set of integers S = {1,2,3,4,5,6,7,8,9,10}, create a function F(S)
that uniformly and randomly rearranges these integers.
For example, in one instance, we might have F(S) = {2,3,9,7,5,6,1,8,10,4}.
2011 Mar 09
3
Rearranging the data
Dear R helpers,
xx = data.frame(country = c("USA", "UK", "Canada"), x = c(10, 50, 20), y = c(40, 80, 35), z = c(70, 62, 10))
> xx
country x y z
1 USA 10 40 70
2
UK 50 80 62
3 Canada 20 35 10
I need to arrange this as a new data.frame as follows -
country type values
USA