Displaying 20 results from an estimated 9000 matches similar to: "histogram-like plot with two variables"
2008 Oct 16
4
counting the frequencies of a vector
Hi,
Is there a function which counts the frequencies of the occurence of a
number within an interval?
for example I have this vector:
x <- c(1, 3, 1.2, 5, 5.9)
and I want a vector that gives me the frequencies within an interval
of 2, beginning at 0
(so the intervals are 0-2, 2-4, 4-6 and so on)
so I get these frequencies:
2, 1, 2
Which functions do I have to use for this purpose?
2009 Jan 17
5
changing a range of values
Hi,
If I have following vector;
x <- c(1,1,1,2,2,3,4,4,5)
and I want to change values in the range of 1 to 3 into the value 1,
how can I do that?
I tried
x[x == c(1:3)] <- c(1)
but than I get;
x
[1] 1 1 1 2 1 1 4 4 5
R doesn't change the 2 into a 1.
But why?
2009 Jan 17
3
converting multiple variable numbers
thanks for the great help!
But I have one additional question (hope I can work alone then);
I want to replace the values of a vector, like this:
x <- c(1,2,2,3,3,4,4,4,5,1)
x[x==1] <- c(12)
x[x==2] <- c(13)
x[x==3] <- c(17)
x[x==4] <- c(20)
x[x==5] <- c(22)
is there a way to do that just in one or two code lines?
I tried
x[x == c(1:5)] <- c(12,13,17,20,22)
but that
2008 Aug 07
2
histogram - freq=FALSE - density computation
Hi,
I don't understand what
hist(x, freq=FALSE)
does.
At first I thought it would be just the relative frequencies instead
of the absolute frequencies,
by just computing "frequencies / n" in every category.
But with a small dataset the y-values (densities) don't sum to one.
Is there a way to get the histogram doing that?
Or what is the idea of this density-computation?
2009 Jan 17
2
data.frame: how to extract parts
Hi,
I have a problem with the R syntax.
It's perhaps pretty simple, but I don't understand it ...
I can extract a column from a data.frame with the following code for
example ...
b$row1[b$row1 == "male"]
so I see all male-entries.
But I cannot extract all lines of a data.frame depending on this
criterium;
only.male <- b[b$row1 == "male"]
With that, I
2009 Jan 18
2
distance between plot-region and main-title / saving plot as pdf
Hi,
is there a way to increase the distance beween the plot (or plot-
region) and the main-title?
I haven't found anything via ?par().
Thanks for any help!
2009 Jan 22
2
plot: abline() - define line length
Hi,
is there a way to define, that a line drawn via abline() should only
go from for example -2 to 1 on the x-axis (with something working
similiar to xlim()) ?
thanks for any help!
2009 Feb 13
2
second axis title orientation
Hi,
I have added a second y-axis via axis() to a plot.
Then I tried to add an y axis title.
But the axis() function seems to have no argument like ylab.
and if I add a title with title() the text is centered at the first
axis, not the second defined one.
Is there a way to add an axis-title that orientates it's position at
the last defined axis?
2009 Jan 17
2
splitting a string / finding a numeric value within a string
Hi,
I have this variable;
x <- c("test_01.log")
and I want to extract the number (01) out of the variable.
So that I get;
> x
[1] 1
I tried strsplit, but I don't know how to refer to the result.
Can someone help me with that?
[[alternative HTML version deleted]]
2008 Dec 16
2
converting a data-frame by a defined rule
Hi,
I have a data frame with several columns.
Now I want to transfer the data into a new variable (also a data
frame), but I only want a part of the data, defined by a rule ...
for example; I have following data frame:
row1 row2 row3
x 2 3
x 1 4
y 5 3
y 2 3
I know want a data frame, only with lines containing x in row1.
I know how to do that for one row (f <-
2008 Jul 29
3
placing a text in the corner of a plot
Is there an easy way to add a text into an R-plot and place it in the
upper left corner?
Like that:
--------------------------------
| (a) |
| |
| |
| |
| |
| |
2009 Jan 12
2
writing an own function - is.factor
Hi,
I try to write an own function in R.
I want a summary table with descriptive statistics.
For example, I have this data.frame:
d <- data.frame(c(rep("m",5), rep("f",5)), c(1:10))
names(d) <- c("x", "y")
d
x y
1 m 1
2 m 2
3 m 3
4 m 4
5 m 5
6 f 6
7 f 7
8 f 8
9 f 9
10 f 10
now I want to get the mean and
2011 Mar 29
3
producing histogram-like plot
Hi!
I have a dataset that looks like this:
0.0 14
0.0 3
0.9 12
0.73 15
0.78 2
1.0 15
0.3 2
0.32 8
...and so on.
I.e. a value between 0 and 1, and a number
I would like to plot this in a histogram-like manner. I would like to
have a set of bins, each 0.1 wide, and plot the sum of values in column
2 that falls within each bin. I.e, in this case I would like the first
bin, 0.0, to have the
2009 Jan 11
1
boxplots: yaxp does not work
Hi,
I'd like to change the y-tickmarks of a boxplot.
But it doesn't work with yaxp (like I would do it in a plot-function).
Can someone help me out?
2008 Aug 10
1
box-plot without a box surrounding the plot
Hi,
I want to draw a boxplot and I want to get rid of the surrounding box.
So that there are only the axis lines left on the bottom and on the
left.
I tried a litte bit with box() but I dont get it the way I want.
Can somebody help me out?
2008 Aug 10
1
customizing the axis (adding labels)
An embedded and charset-unspecified text was scrubbed...
Name: nicht verf?gbar
URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20080810/8933c4da/attachment.pl>
2009 Jan 05
2
Sweave data-figure coupling
Hi,
With the following Sweave minimal file:
---<--------------------cut here---------------start------------------->---
\documentclass{article}
\usepackage{Sweave}
\begin{document}
<<binom-sim>>=
thetas <- seq(0, 1, by=0.001)
prior <- rep(1, length(thetas)) / length(thetas)
lik <- dbinom(1, 1, thetas)
lik.p <- prior * lik
post <- lik.p / sum(lik.p)
2008 Dec 16
1
refer to next line within a data-frame an select cases
Hi,
I have a problem sorting and selecting entries within a data-frame and
I don't know if it is possible to solve it with R ... (probably yes,
but I have no idea how).
Following Data;
row1 row2
a 12
pos NA
a 3
neg NA
a 5
neg NA
a 11
pos NA
I want to extract the values in row 2 in the lines with an "a" in row1.
But I want to have two vectors: vector x with all
2011 Apr 29
4
plot several histograms with same y-axes scaling using hist()
Dear all
Problem: hist()-function, scale = ?percent?
I want to generate histograms for changing underlying data. In order to make
them comparable, I want to fix the y-axis (vertical-axis) to, e.g., 0%, 10%,
20%, 30% as well as to fix the spaces, too. So the y-axis in each histogram
should be identical. Currently, I have 100 histograms and the y-axis scales
changes in each.
Here is my code:
2008 Jul 08
2
How to change labels in a histogram
Hi everyone
I am trying to add a percent sign to my labels in a hist() plot. "labels =
TRUE" gives me the values, but I don't know how to add the percent sign. I
would prefer to annote the plot after drawing it, e.g. using text(), but
don't know how to address the positions in a standard histogram. A lattice
approach would work too.
Best regards,
LY
--
View this message in