Displaying 20 results from an estimated 138 matches for "verted".
Did you mean:
vertex
2007 Aug 04
2
multiple nls - next fit even after convergence problem
Hello R-gurus,
I'm trying to adjust different growth curves to a rather extensive dataset.
I wrote up a function to go through all of them, but am encountering a problem :
among the more than 1000 curves I have, obviously for some of them I encounter conversion problems.
I'd like for my function to keep going to the next curve and store the fact that for curve number X I had a convergence
2006 Nov 18
1
deriv when one term is indexed
Hi,
I'm fitting a standard nonlinear model to the luminances measured
from the red, green and blue guns of a TV display, using nls.
The call is:
dd.nls <- nls(Lum ~ Blev + beta[Gun] * GL^gamm,
data = dd, start = st)
where st was initally estimated using optim()
st
$Blev
[1] -0.06551802
$beta
[1] 1.509686e-05 4.555250e-05 7.322720e-06
$gamm
[1] 2.511870
This works fine but I
2010 May 06
1
extracting coordinates from SpatialPolygonsDataFrame using slot functions
In converting some older code:
## builds an OWIN to generate a set of points on a grid within the OWIN object:
bdry <- read.shape( "../../data/boundary.shp" )
outline.verts <- bdry$Shapes[[2]]$verts[1:bdry$Shapes[[2]]$Pstart[2],]
outline.order <- nrow( outline.verts ) : 2
bdry.poly <- vector( 2, mode="list" )
bdry.poly[[1]] <- list(
2016 Aug 02
29
[Bug 97192] New: SuperTuxkart graphic errors [NVE4 - GK104]
https://bugs.freedesktop.org/show_bug.cgi?id=97192
Bug ID: 97192
Summary: SuperTuxkart graphic errors [NVE4 - GK104]
Product: Mesa
Version: unspecified
Hardware: x86-64 (AMD64)
OS: other
Status: NEW
Severity: normal
Priority: medium
Component: Drivers/DRI/nouveau
Assignee:
2024 Nov 18
1
Issue with non-standard file 'vert.txt' in R CMD check
Dear R Support Team,
I am experiencing an issue with my R package during the `R CMD check`
process. A non-standard file named `vert.txt` is being generated in the
check directory, causing a NOTE in the check results. Despite adding
`vert.txt` to `.Rbuildignore`, the file is still appearing. And, there are
no commands in any part of my package's code that would generate this file.
Here
2011 May 14
1
Summary.Formula: prmsd and test statistic
Hello,
I'm a new user to R so apologies if this is a basic question, but after scouring the web on information for summary.formula, I still am searching for an answer.
I made a function to analyze my data - I have a categorical variable and three continuous variables. I am analyzing my continuous variables on the basis of my categorical variables.
radioanal <- function(a)
{
#Educational
2015 May 24
2
[Mesa-dev] [PATCH 07/11] glsl: Add arb_cull_distance support
On Sun, 2015-05-24 at 19:58 +0200, Tobias Klausmann wrote:
> Signed-off-by: Tobias Klausmann <tobias.johannes.klausmann at mni.thm.de>
> ---
> src/glsl/ast_to_hir.cpp | 14 +++++
> src/glsl/builtin_variables.cpp | 13 +++-
> src/glsl/glcpp/glcpp-parse.y | 3 +
> src/glsl/glsl_parser_extras.cpp | 1 +
> src/glsl/glsl_parser_extras.h
2007 Apr 05
1
Ignoring increment hint when maximized horz/vert
Here's a quick patch to have either horz or vert (instead of both) maximized windows honor the "ignore" option:
--- src/window.c
+++ src/window.c
@@ -4012,7 +4012,7 @@ constrainNewWindowSize (CompWindow *w,
if (d->opt[COMP_DISPLAY_OPTION_IGNORE_HINTS_WHEN_MAXIMIZED].value.b)
{
- if ((w->state & MAXIMIZE_STATE) == MAXIMIZE_STATE)
+ if (w->state
2013 Mar 10
1
misc3d Contour export to vtk
So I wanted to export a contour3d object into VTK and it worked well
enough, except the top of the ball (the contour) was missing. Example
below, or gist here:
https://gist.github.com/muschellij2/5126544
rm(list=ls())
require(misc3d)
f <- function(x, y, z) x^2+y^2+z^2
x <- seq(-2,2,len=20)
ball <- contour3d(f,4,x,x,x, draw=FALSE)
drawScene.rgl(ball)
### get the triangles
allids
2014 Aug 10
2
Coordinate systems on on nv10-era cards
Hello,
I'm trying to debug why fbo-copyteximage-simple is failing, and I'm...
failing. It's an extremely simple test. I'm pretty sure that the
copyteximage part of it has nothing to do with the failure, at least
it behaves identically when I just return tex instead of copiex_tex.
Without any modifications, the test just renders one big red square. I
think there's something
2001 Feb 14
2
help with tcltk
Hallo!
Can anyone explain to me how to add a vert. scrollbar to a listbox using tcltk please?
Thanks
--
Frank Gerrit Zoellner
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the subject
2020 Jun 20
0
Upgrading from Debian Stretch to Buster, Van Belle package
Am 20.06.20 um 01:39 schrieb L.P.H. van Belle via samba:
> looks like you have apt pinning enables.my repo is set to 500
> default is 990.?
Yes, isn't that apt pinning? Should it be different?
> check /etc/apt/ and it's contents
I thought I did already ;-)
There is no
/etc/apt/preferences
and nothing in
/etc/apt/preferences.d
(the apt config comes from my ansible setup)
I
2003 Nov 26
1
wishlist item: symbols() to accept asp argument? (PR#5328)
Here is a potential wishlist item for adding an argument (asp) to
symbols(). The following code produces a postscript file with two
pages; both should show a circle of radius 2 units. Horizonal and
vertical arrows are drawn to check that the circle is of the correct
radius; in the first plot, the circle is wrong. To fix this, I found
that I needed to first set up the plot bounds, using xlim,
2009 Jul 03
3
Color of ecdf plots
Hi.
I have the following two ecdf plots in one graph:
plot(
ecdf(....),
do.points=FALSE,
verticals=TRUE,
main=paste("Ecdf of distances ",DIM,sep=""),
col="red"
);
lines(
ecdf(....),
do.points=FALSE,
verticals=TRUE
);
How do I change the color of the resulting graph? Adding col="red" to either plot or lines results in an error
2010 Jan 07
1
kriging with geoR package
Hi all,
I have to draw a map of microorganisms repartition in a sample. I use the
"image" function of geoR package to build the map but there are three
problems:
1) the legend is Horizontal (with or without vert.leg=TRUE)
2) I want to plot the position of organisms and level curves of density on
the map but I don't find the script to insert these data on the map.
3)the grey range
2014 Aug 15
0
Coordinate systems on on nv10-era cards
So I did a lot more debugging on this. I wrote a program that draws a
triangle to an fbo, and then blits that to fb 0. If I draw the
triangle with
glBegin(GL_TRIANGLES);
glColor3f(1, 0, 0); glVertex3f(-0.6*128 + 128, -0.75*128 + 128, 0.5);
glColor3f(0, 1, 0); glVertex3f(0.6*128 + 128, -0.75*128 + 128, 0);
glColor3f(0, 0, 1); glVertex3f(128, 0.75*128 + 128, 0);
glEnd();
Then all
2011 May 24
1
seeking help on using LARS package
Hi,
I am writing to seek some guidance regarding using Lasso regression with the
R package LARS. I have introductory statistics background but I am trying to
learn more. Right now I am trying to duplicate the results in a paper for
shRNA prediction "An accurate and interpretable model for siRNA efficacy
prediction, Jean-Philippe Vert et. al, Bioinformatics" for a Bioinformatics
project
2020 Jun 19
2
Upgrading from Debian Stretch to Buster, Van Belle package
looks like you have apt pinning enables.my repo is set to 500
default is 990.?
check /etc/apt/ and it's contents
Greetz,
Louis
Op 19 jun. 2020 17:54 schreef "Stefan G. Weichinger via samba" <samba at lists.samba.org>:
Am 19.06.20 um 17:11 schrieb Stefan G. Weichinger via samba:
> Am 19.12.19 um 19:15 schrieb Lmloge via samba:
>
>> When upgrading use :
2011 Jun 16
0
Update: Is there an implementation of loess with more than 3 parametric predictors or a trick to a similar effect?
Dear R developers!
Considering I got no response or comments in the general r-help forum
so far, perhaps my question is actually better suited for this list? I
have added some more hopefully relevant technical details to my
original post (edited below).
Any comments gratefully received!
Best regards,
David Kreil.
----------
Dear R experts,
I have a problem that is a related to the question
2019 Mar 01
1
Setting GDM resolution without knowing the monitor specs
On Feb 21, 2019, at 4:42 PM, Gianluca Cecchi <gianluca.cecchi at gmail.com> wrote:
>
> Create a file 00-monitor.conf under /etc/x11/xorg.conf.d
>
> Something like this below, using conservative range values for horiz and
> vert syncs
This works fine here on our test monitors, with the exception that the first ?x? needs to be capitalized.
Thanks again!