Displaying 20 results from an estimated 700 matches similar to: "questions about axis"
2012 Jun 06
2
changing axis labels
Dear all,
I am making a function for creating plots and part of this function is to change the labels to x axis that instead of number contains percentage number. I want to change the x axis to depict the percentage value of the presented data
x<-c(501:600)
y<-c(201:300)
plot(x,y,axes=F)
axis(2,labels=T)
text=round(seq(0,100,length.out=5),2) # make percentage bar
2008 Apr 11
2
Questions related to plotting boxplots of time series data
List,
I have looked through several R books and searched the web to find
answers to my questions with no results. I have a ensembles of time
series data (essentially from Monte Carlo simulations) which I would
like to summarize as a time series of boxplots. I don't know how to do
this and I am not sure how I should structure the data to get what I
want. Another related question: while
2007 Jun 24
2
adding lines to stripchart
I have two points of collection across 20 subjects (pre and post for each),
so 20 pairs of data points. I would like to plot the actual raw data points
for each subject for both pre and post and connect lines between these two
points (20 in all) to depict real change between the two timepoints.
I have tried using stripchart which adequately plots the two lines of
subject data points. Attempting
2006 Dec 20
2
RuleFit & quantreg: partial dependence plots; showing an effect
Dear List,
I would greatly appreciate help on the following matter:
The RuleFit program of Professor Friedman uses partial dependence plots
to explore the effect of an explanatory variable on the response
variable, after accounting for the average effects of the other
variables. The plot method [plot(summary(rq(y ~ x1 + x2,
t=seq(.1,.9,.05))))] of Professor Koenker's quantreg program
2002 Jan 04
1
plotting missing data patterns
I have one other problem and then I'll stop and get back to writing. I
want to plot a missing data matrix (the R matrix a la Little and Rubin)
to graphically depict where the missing data lie in the matrix. Some
statistical packages produce a graphical depiction of the missing data
patterns by plotting the matrix, color-coding the plot with contrasting
colors for either missing or
2005 Jan 07
1
Visualizing complex analytic functions using domain coloring
Hi
has anyone coded up domain colouring for visualizing complex analytic
functions
(such as elliptic functions)?
[
the idea is to depict a complex function f(z) using a filled.contour()
variant
in which the hue is given by Arg(f(z)), and the saturation by Mod(f(z)).
]
--
Robin Hankin
Uncertainty Analyst
Southampton Oceanography Centre
European Way, Southampton SO14 3ZH, UK
tel
2019 Jun 30
2
Information Loss of Array Type in Function Interface in IR Generated by Clang
Dear all,
Hi! Recently, I notice a situation where I cannot infer the size of the outermost dimension of array in the function interface.
To concretely depict the problem, I show the C source code and the generated IR code at the end. The array size of A[] is 51 but this information is lost in the generated IR.
How can I maintain such information in IR? Should I set some argument for
2006 Jun 06
2
error bars in lattice xyplot *with groups*
Hi all,
I'm trying to plot error bars in a lattice plot generated with xyplot. Deepayan
Sarkar has provided a very useful solution for simple circumstances
(https://stat.ethz.ch/pipermail/r-help/2005-October/081571.html), yet I am
having trouble getting it to work when the "groups" setting is enabled in
xyplot (i.e. multiple lines). To illustrate this, consider the singer data
2008 Dec 28
1
Using a constant scale across X-Y plots
I am working off an example from Deepayan Sarkar's
Lattice:Multivariate Data Visualiization with R. I am trying to create
Figure 5.6, essentially, but I would like to be able depict different
metro areas. These of course have different lat/longs, so I need to
make different graphs. BUT (and this has been the tricky part), I
would like to produce graphics for each metropolitan
2015 Oct 14
3
../../../Makefile.common:60:../../../Makefile.config:don't have that file or directory
I installed LLVM3.7.0 according to the LLVM document. I can use
"clang","LLVM-dis"commands ,and so on.
but when I execute commad "make" at llvm/lib/Transform/Hello directory, the
error is :
../../../Makefile.common:60:../../../Makefile.config:don't have that file
or directory
../../../Makefile.common:68:../../../Makefile.rules:don't have that file or
2008 Apr 03
2
What to do with this data?
Hello,
This is not necessarily a question about R, but more about how we should
display our data in general. (Will we then use R to do that, once we know
what to do ;-) I received good replies about such things in the past on this
mailing list so I give it a go.
Here's what we did:
We showed a fairly large number of subjects search engine queries and
different possible search engine
2010 Dec 26
1
Can''t boot HVM Win2k8 R2 x64 DVD ISO (Viridian?)
Hi all,
I''m stuck with a peculiar problem. I have CentOS 5.5 and Xen. I have
numerous Windows 2003 guests and never had this problem. An application
requires SQL server 2008 which is requiring Windows Server 2008. I
downloaded the 2.8 Gig install DVD ISO. I create a new guest and
connect the ISO as hdc. The system starts and says "Starting Windows"
but hangs and no
2019 Jun 30
2
Information Loss of Array Type in Function Interface in IR Generated by Clang
Dear David,
Thanks for your prompt reply!
Sure, I can implement a AST visitor to go through the AST to get the information but I just wonder whether there is any other way to let Clang do so.
What I am considering is how to let the generated IR looks like below, which some tools realize:
define dso_local i32 @_Z1fPii([51 x i32]* %A, i32 %x) local_unnamed_addr #0 !dbg !7 {
entry:
...
2012 Oct 22
5
Represent point size according to frequency
Hello! I would like to make a scatterplot of my data, but the problem is that
several points have the same x and y values and are represented as only one
point. I wonder if there is a way to represent the data points, but with
point size representing the frequency of the depicted x-y value?
Thank you!
--
View this message in context:
2008 Feb 10
2
grep etc.
Dear R-helpers,
How do I transform
v <- c('insd-otsd', 'sppr-unsp')
into
c('insd--otsd', 'sppr--unsp')
?
_____________________________
Professor Michael Kubovy
University of Virginia
Department of Psychology
USPS: P.O.Box 400400 Charlottesville, VA 22904-4400
Parcels: Room 102 Gilmer Hall
McCormick Road Charlottesville, VA 22903
2006 May 23
1
shapes in rgl
Does anyone have a way of producing solid shapes other than spheres in
rgl? I am using rgl to produce a simple visualisation of a forest model
results using "lollipops". Its just a bit of fun, but as many of the
trees are pines I would like to depict their crowns as cones. If there
is a solution I need it to work under windows.
Here is the example.
library(rgl)
library(misc3d)
2010 Jul 15
2
How to plot a histogram of weekday frequencies in a list of dates?
Question from an [R] novice...
Hi,
I have a vector of date/times like the one shown below (a truncated
sample of a much longer list...)
> dates[1:4]
[1] "2006-03-16 08:41:00" "2006-03-16 10:28:00" "2006-03-16 11:03:00"
[4] "2006-03-16 11:04:00"
I would like to generate a weekday histogram showing the frequency of
dates falling on each weekday. I know
2004 Jun 17
1
Re: Clustering in R
Thanks a lot, Michael!
I cc to R-help, where this question really belongs {as the
'Subject' suggests itself...} -- please drop 'bioconductor' from
CC'ing further replies.
>>>>> "michael" == michael watson (IAH-C) <michael.watson at bbsrc.ac.uk>
>>>>> on Thu, 17 Jun 2004 09:16:59 +0100 writes:
michael> OK, admittedly it
2006 Apr 26
4
Adding a column to a table
This is a real newbie question with what i''m sure will be a simple answer...
If i add a column a table (in a development application), how do i
update my models to reflect this change?
Cheers,
Steve
2013 Feb 14
2
Plot a Matrix as an Image with ggplot
Dear all,
I am trying to plot a matrix I have? as an image
str(matrixToPlot)
?num [1:21, 1:66] 0 0 0 0 0 0 0 0 0 0 .
?that contains only 0s and 1s,
where the xlabel will be Labeled as
str(xLabel)
?num [1:66] 1e+09 1e+09 1e+09 1e+09 1e+09 ...
and the yLabels will be labeled as
str(yLabel)
?num [1:21] -88 -87 -86 -85 -84 -83 -82 -81 -80 -79 ...
I have found on the internet that I can do