Displaying 20 results from an estimated 11000 matches similar to: "Scatterplot"
2008 Aug 06
2
Merging two datasets
I am facing a problem in merging two datasets.
I have given codes to the names which are common in both the datasets and
also to those which are uncommon.
When I gave gave the following command
merge(df1,df2)
only those rows and columns were merged which were having common codes.
When I viewed the results, only common codes are seen and the remaining
entries are not seen.
Can anyone guide me
2008 Aug 13
1
Installing R in Ubuntu
Hi,
I am running Ubuntu on my Windows OS through VMware.
I am trying to install R in Ubuntu, but not getting with those commands,
which are there on the site.
Can anyone please tell me how to install it, stepwise, with commands to be
used.
As I m new to Ubuntu as well, I am not aware of the commands very well.
Thanks,
Shreyasee
[[alternative HTML version deleted]]
2009 Jan 26
1
Plotting graph for Missing values
Hi,
I have imported one dataset in R.
I want to calculate the percentage of missing values for each month (May
2006 to March 2007) for each variable.
Just to begin with I tried the following code :
*for(i in 1:length(dos))
for(j in 1:length(patientinformation1)
if(dos[i]=="May-06" && patientinformation1[j]=="")
a <- j+1
a*
The above code was written to calculate
2008 Oct 30
1
Creating Vignettes
Hi,
I want to create a new vignette and include it in an already existing
package.
That package has already many vignettes which are related to the chapters
from the book on which the package is built.
It would be a great help if anyone could help to understand how to create
vignette for a statistical test like Chi-Square test.
Thanks,
Shreyasee
[[alternative HTML version deleted]]
2009 Mar 24
2
Calculating percentage Missing value for variables using one object
Hi,
I have a dataset in which there are in all 250 variables and for each
variable the data is entered over the months.
I need to calculate the percentage of missing values for each variable over
each month and then plot a graph for that.
I am running the following code for doing the same
*ds <- read.csv(file="filepath", header=TRUE)
attach(ds)
may <-
2010 Apr 25
1
categorical variable in scatterplot (car)
Hello R folks,
I am encountering a problem with the following scatterplot function from the
car package:
> scatterplot(y~x|z)
where y and x are continuous (interval) random variables and z is a
categorical variable. When z is a categorical variable coded 1 or 2, I
(appropriately) get a scatterplot of y by x, coded by z. Similarly, when z
is a categorical variable coded 1, 2, or 3, there is
2011 Jan 14
1
Question about scatterplot in package car
I am getting an error message from scatterplot:
> library(car)
> scatterplot(Prestige$income~Prestige$type)
Error in Summary.factor(c(2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, :
range not meaningful for factors
In addition: Warning message:
In Ops.factor(x[floor(d)], x[ceiling(d)]) : + not meaningful for factors
>
The command does output the kind of graph that I want (boxplots).
2012 May 19
3
Q - scatterplot, plot function & trellis linear regressions???
Hi R-listers,
Q1) What is the difference between the scatterplot and plot function?
Q2) I am able to make a graph with the scatterplot function:
scatterplot(DevelopIndex ~ Veg,
+ data = Turtle,
+ xlab = "Vegetation border (m)",
+ ylab = "Embryonic development index")
And have been successful. But I do not know if the lines are for:
2011 Oct 13
1
Axis Formats with library(car)
I am trying to develop scatter plots using library(car). However, the output
I am getting shows the axis (x and y) in scientific notation. I want to have
the axis represented by regular integers (for eg. the X axis i want the
upper bound to show as 40,000,000 instead of 4.0e+07). Scanning the r-help
archives did not get me the answer.
I have uploaded my data here: http://bit.ly/olgMLt
2007 Jan 21
1
Scatterplot help
Hi my friends,
I'm trying to make a scatterplot like this.
1) I have a 3-variable dataset. They are ID, x, and y.
2) "x" is for the X-axis, "y" for the Y-axis, and "ID" is used to label all
the cases in the scatterplot.
3) After creating the scatterplot, I need to add both a X-axis reference
line and a Y-axis reference line. The X-axis reference line is a
2012 Aug 11
1
using eval to handle column names in function calling scatterplot graph function
I am running R version 2.15.1 in Windows XP
I am having problems with a function I'm trying to create to:
1. subset a data.frame based on function arguments (colname & parmname)
2. rename the PARMVALUE column in the data.frame based on function
argument (xvar)
3. generate charts
plotvar <- function(parentdf,colname, parmname,xvar,yvar ){
subdf <-
2009 May 01
1
Plotting extra lines on scatterplot
Hello Everyone-
I'm in the process of slowly learning R and am having a little bit of
trouble plotting an extra line onto a scatterplot. I'm sure the answer
is quite simple but I am stumped.
The code I am using is:
headways <- read.table("headways.csv", header=TRUE, sep=",",
na.strings="", dec=".", strip.white=TRUE)
plot.new()
2011 Feb 08
1
How to change labels in scatterplot?
Dear all,
I'm trying to use "scatterplot" from package "car" to get a scatterplot with
row-names as labels and I want my data to be divided into two groups defined
by the column "tresh". Leaving away the groups-command gives me the right
labels but they are not distinguished by colors according to "tresh". Does
anybody know why the following example
2012 Oct 23
1
scatterplot with wrong line offset
Hi All,
I'm trying to do a Scatterplot (package: car), and add a line (just for
reference).
There is my code:
#------------------------------------Code---------------------------------------------------
library("car")
library("calibrate")
G_T<-c("car","bike","boat")
ave<-c(80,10,45)
perf<-c(100,80,75)
df2<-data.frame(G_T,ave,perf)
2011 Jul 28
3
smooth scatterplot and geo map
Hello everybody,
I'm trying to understand how to draw a smoothed scatterplot on a geographic
map with R.
Have a dataframe with point locations (long, lat) and was able to simply
plot these points on a shp map by using the maptools package. However,
instead of having simply the raw points on the map, I would like to have a
"smoothed" scatterplot of the same superimposed on the map.
2009 Feb 19
1
modifying legend in scatterplot matrix R
Hello R users,
I have some troubles to modify the "per default" legend in the
scatterplot.matrix using the car package. Here is my code:
--------------------------------------------------------------------
scatterplot.matrix(~ a + b + c,
groups=treatment,
by.groups=F,
data=newfile3,
smooth=T,
pch=c(16,4),
cex=1.3,
2006 Feb 01
1
Scatterplot color options in CAR package?
Hi All.
I'd like to change the default plotting colors used to construct a
scatterplot with regression line in the CAR package.
So,
scatterplot(y~pred,smooth=FALSE, xlab="X", ylab="Y", lwd=2)
If I change the palette (e.g., palette(ranbow(6)), I can change the color of
the lines and points.
However, the axes and labels remain in black (i.e., the first color in the
2002 Aug 26
1
(CAR) Scatterplot and problems (?) with abline
Network Blitz
I'm trying to generate a graph to summarize Interest Rate Parity. This
involves a scatterplot of x against y where the x and y limits are set
so to center the graph on 0,0 and then adding each axis line and a 45
degree line. Using CAR's scatterplot (sample code below) everything
except the axes plot fine:
scatterplot( Interest.Rate.Dif ~ ForPrm| profit,
2008 Feb 11
1
scatterplot in CAR
I am trying to use scatterplot function in CAR like the following:
scatterplot(X~Y)
I want to label X points and Y ponits using the different color.
Any idea for this?
Aimin
2010 Nov 16
5
scatterplot with filled circles
for a simple scatterplot:
plot(X ~ Y, type = 'p', col = 'red')
this produces red-edged circles, but I want to fill in the circles.
can this be done? I checked '? plot' already but couldn't find what I was
looking for.
cheers
--
View this message in context: http://r.789695.n4.nabble.com/scatterplot-with-filled-circles-tp3044690p3044690.html
Sent from the R