Displaying 12 results from an estimated 12 matches for "branimir".
2004 Sep 12
3
calculating error
Could anybody explain this results?
>sin(2*pi)
-2.449213e-16 #should be zero
>(10^16)*sin(log2(4)*pi)
-2.449213 #should be zero too
and explain what to do to correct this events?
Thanks!!!
Branimir K. Hackenberger
2003 May 22
1
(no subject)
Dear R-helpers!
What it's means "Rank failure in Choleski decomposition" by using of
function surf.gls {spatial}?
Sincerely Yours
Branimir K. Hackenberger
2019 Jan 03
1
Golang libvirt bindings problem
...ithub.com/libvirt/libvirt-go"
GOPATH is set to /home/$USER/go
I downloaded the package via go get; go get -v -u
github.com/libvirt/libvirt-go. Please if somebody encountered this before,
could you give me a hint if possible in order to solve this?
Thank you very much in advance!
Regards,
Branimir
2008 May 10
1
BiodiversityRGUI_problem2
After some investigation I found out that constrained ordination is working
fine under R version 6.5.0 and 6.5.1 but not under any of newer versions. Is
it posible to repair/make something in for example newest version of R 7.0
lito enble correct using of constrained ordination under BiodiversityRGUI
environment?
[[alternative HTML version deleted]]
2011 Apr 17
5
cube root
This is some interesting:
> -8^(1/3)
[1] -2
> x=(-8:8)
> y=x^(1/3)
> y
[1] NaN NaN NaN NaN NaN NaN NaN NaN
0.000000 1.000000
[11] 1.259921 1.442250 1.587401 1.709976 1.817121 1.912931 2.000000
So, can anybody explain this?! (Why is x[1]^(1/3)=y[1]=NaN, but
-8^(1/3)=-2?)
Thx!!!
[[alternative HTML version deleted]]
2012 Jan 28
2
wireframe_box_axis
Dear all!
I am using wireframe function from lattice package.
Is it possible to remove box around the plot but to keep axis (x, y, z)?
Thanks in advance!
[[alternative HTML version deleted]]
2017 Nov 15
2
virtlock - a VM goes read-only
...ted above but with
the same results.
Now, I am pretty sure that I am missing something simple here since this is
a standard feature and should work out of the box if set correctly but so
far I cannot see what I am missing.
I would really appreciate any tip/help.
Thank you very much!!
Regards,
Branimir
2003 Jan 03
0
cmeans visualisation
Hi all R-helpers!!!
I have only one small question: Which visualisation method would you
suggest for results of function cmeans {e1071}?
Thanks!
Branimir K. Hackenberger
2003 Oct 09
1
R-OpenOffice.org Calc
I have been very satisfied with R-Excel interface (DCOM). Few months ago
I have changed my OS to Linux-Mandrake, and now I am using
OpenOffice.org Calc as spreadsheet. I would like to know does exist some
R-OpenOffice.org interface or how is possible to use R-functions in
OpenOffice.org Calc?
Thanks a lot!
2017 Nov 16
0
Re: virtlock - a VM goes read-only
On Wed, Nov 15, 2017 at 02:24:48PM +0000, Branimir Pejakovic wrote:
> Dear colleagues,
>
> I am facing a problem that has been troubling me for last week and a half.
> Please if you are able to help or offer some guidance.
>
> I have a non-prod POC environment with 2 CentOS7 fully updated hypervisors
> and an NFS filer that s...
2003 Dec 25
6
Plot a sphere
Hi,
I'm new to R (and math ;) Would somebody please be so kind as to direct me
in plotting a 3D sphere?
I tried something in the lines of:
####
y <- x <- seq(-pi, pi, length=pi*10)
f <- function(x,y)
{
z <- sqrt(pi - x^2 - y^2)
#z[is.na(z)] <- 0
z
}
z <- outer(x, y, f)
persp(x, y, z, theta = 120, phi = 30)
####
I've also tried: .... make.surface.grid(...) ..
2012 Jan 24
0
lattice wireframe_box around picture
I am using the wireframe function from lattice package. The problem that I
have is very interesting. Namely, this is my code:
x= seq(-pi, pi, len = 20)
y=seq(-pi, pi, len = 20)
xyz= expand.grid(x = x, y = y)
xyz$z=sin(sqrt(xyz$x^2 +xyz$y^2))
trellis.par.set("axis.line",list(col="transparent"))
trellis.par.set("panel", list(col="transparent"))