Displaying 20 results from an estimated 700 matches similar to: "plotting a bivariate quadratic curve"
2004 Feb 03
4
filled maps
Hi R-Help,
I would like to make filled contour maps of ocean data overlaid by
costlines from the map package.
I can draw the filled contours and the coastlines om the same plot, but
the filled contour also covers part of the land. To get rid of that I
tried to draw a filled coastline map on top of the filled contour, but
the filled map only draws the closed contours - so most of the land is
2002 Dec 14
1
adding contour lines to a filled.contour
Hi all,
Does anybody know how to add contour lines to a filled contour plot?
I want to draw a single contour around values that are above a certain
level (e.g., significant). The problem I'm having is that since the
filled.contour command actually draws two plots (data and the key),
adding contour lines paints them over both plots.
Any suggestions?
Thanks, Andy
#~~~~~~~~~~~~~~~~~~~
2006 Jun 22
1
How to plot a image with restrictions?
Hello All!
How to plot a image ( image function )
with restrictions, like a polygon??
Thanks in advance!
Cleber N. Borges
##### problem example
x <- y <- seq(-4*pi, 4*pi, len=27)
r <- sqrt(outer(x^2, y^2, "+"))
image( z )
contour(z, add = TRUE, drawlabels = FALSE)
m=scan()
0.2 0.2
0.8 0.2
0.5 0.8
m = matrix(m,nr=3,byrow=T)
polygon( m, lwd=5 )
2008 Apr 23
4
filled contour plots
hello everyone,
I was wondering if anybody can help me solve 2
problems related to the function filled.contour.
I am entering the following R command:
filled.contour(xx,yy,P1, nlevels=20,color=cm.colors,
plot.axes={
contour(xx,yy,P1,add=T,col="grey",
nlevels=20, drawlabels=F)
axis(1,1:length(xx),labels=xlabels)
2011 Sep 30
1
Odd gridding pattern when plotting
Hi, I'm no longer on the subscribing list, but was hoping to get my question posted.? Please inform if this is ok, although I am guessing you wont post with the image below.? If so, let me know and I will resend without the image.
Thanks
Hi,
I just upgraded my system and my version of R all at once.? Upon running old code for heatmaps etc, I suddenly notice that there is an odd grid pattern
2010 Aug 06
1
[R-SIG-Mac] Question about line type in contour() function (R 2.11.1)
On 05/08/2010 8:46 PM, David B. Thompson, Ph.D., P.E., D.WRE, CFM wrote:
> On Aug 5, 2010, at 5:20 PM, Duncan Murdoch wrote:
>
>> On 05/08/2010 7:18 PM, David B. Thompson, Ph.D., P.E., D.WRE, CFM wrote:
>>> I'm running R 2.11.1 (MacBook Pro and OS X 10.6.4) and am trying to set a line type in the contour() function. What I did was:
>>>
>>>> >
2009 Aug 05
1
Decision boundaries for lda function?
Hi,
I am using the lda function from the MASS library. I would to find the
decision boundaries of each class and subsequently plot them. I wonder if
anybody can offer any help on this topic?
Below I applied the lda function on a small dataset of mine.
Any help will be much appreciated.
> library(MASS)
>
2008 Jan 04
0
Bivariate normal equal-probability curve...
Good morning and I appreciate the availability of a help-list. I am a
professional hydrologist, but not a professional statistician. Yet I
find myself using statistical tools at least part of the time. My
discovery of the R-project through a friend has been most helpful.
Here is my problem:
I'm tasked with fitting a dataset comprising correlated discharges
from adjacent watersheds to
2004 Nov 23
2
Quadratic curve on a loop
Dear R community, once again I request your generous help on an R issue
I cannot seem to figure out.
I am trying to do some analysis for multiple sites, in my example I am
using only two, but the same will done on many sites. It's just ONE
line, so I hope somebody can give a me a hand by email.
Look at the loop to make the plot x ~ y. If the curve function is
removed from the loop
2012 Jun 13
3
How to plot linear, cubic and quadratic fitting curve in a figure?
Hi R experts,
Could you please help me to fit a linear, cubic and quadratic curve in a figure? I was trying to show all these three fitting curves with different colour in one figure.
I spent substantial time to figure it out, but I could not.
I have given here a example and what I did for linear, but no idea for cubic and quadratic fitting curve
> dput(test)
structure(list(sp = c(4L, 5L,
2007 Oct 18
1
R-graphics printing greeks
I have tried to print a table of greek alphabet names and symbols
without success. I can print one character at a time but can't seem to
find a way to automate an entire list of the symbols. Some of the code I
have tried is below. I have searched on help, worked the examples in the
December 2002 R Help Desk article and plotmath but have not been able
to find a way to accomplish the
2011 Dec 22
1
overlaid filled contour plots
I'm trying to make a set of contour plots of bivariate kernel density
estimates, showing three such plots overlaid,
similar to this plot
http://euclid.psych.yorku.ca/SCS/Private/Test/ridge-boot2.pdf
except that I would like to have the contours *filled* (using
transparent colors). To make this reproducible, I've
saved the results of KernSmooth::bkde2D() in the following file:
2002 Oct 10
2
Help?
Dear Sir :
I would ask if R contains some propreties to write the greeks(lambda,
theta,xsi,......) en also if R can also the mathematics signs like
integrals, indices.......
Your sincerly:
H.Zmarrou
University of Amsterdam:
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send
2013 Mar 06
0
how to construct bivariate joint cumulative pdf from bivariate joint pdf
Hello,
I am using sm.density() to find the bivariate joint PDFof events:
For eg,
x<-cbind(rnorm(30),rnorm(30))
den<-sm.density(x)
Then I get the joint pdf from den$estimate in order to constructthe
joint cumulative PDF.
However, summing up all the values from den$estimateisnot equal to
1(have multipliedby the grid size).
Anyone could help?
Thanks.
mc
[[alternative HTML version
2004 Oct 06
0
quadratically constrained quadratic programming
Hi,
Does anybody have experience to solve an quadratic programming problem
with quadratic constraints in R?
It seems that the package "quadprog" only handles the quadratic
programming with linear constraint. My probelm is to maximze
x^T\Sigma_{xy} y,
subject to x^Tx=1, y^T\Sigma_{yy} y=1, and sum(y)<t, or sum(y)=t, where
x and y are the variable, and the Sigma's and t are
2012 Apr 17
1
What functions are available for Quadratically Constrained Quadratic Programming in R?
Hi all,
Could anybody please point me to the solver function in R on QCQP?
The quadprog package seems to be only able to handle the linear
constraints...
Thank you!
[[alternative HTML version deleted]]
2007 Aug 17
1
Quadratic Programming
Hi there,
Is it basically possible to solve a non-convex quadratic programming with optimal solution by any way? What could be the way? How can be this problem dealt with? Could you guide me to some references please?
I thank you very much for eny help.
Tobi
---------------------------------
Boardwalk for $500? In 2007? Ha!
---------------------------------
2007 Jul 11
0
Some questions about quadratic programming (QP)
Dear R Users ,
As a beginner in QP, I'm trying to solve a Support Vector Machine problem by a QP. In particulare I am using the quadprog package.
My questions are here:
1- In the document for the package (The quadprog Package), the inequality constraint is mentioned with >= , however in a standard QP, this usaully is written with <= . This constraint should be multiplied by a
2009 Mar 27
0
Quadratic Discriminant Analysis (qda)
Hi listers,
Does anybody knows if the function qda for quadratic discriminant analysis
provides the coefficients of quadratic discriminants...
Well, I find out that for the linear discriminant analysis lda, the fonction
provides the coefficients...
Thanks in advance,
Marcio
--
View this message in context: http://www.nabble.com/Quadratic-Discriminant-Analysis-%28qda%29-tp22747647p22747647.html
2000 Mar 08
0
Linear/Quadratic Programming
Hi,
***** First, let me apologize for the disclaimer that accompanies my mail. I
don't add it and I can't take it out. ****
Is there any implementation of Linear/Quadratic programming in R?
Thanks.
Mustaque
This message contains confidential information and is intended only
for the individual named. If you are not the named addressee you
should not disseminate, distribute or copy