search for: hurra

Displaying 7 results from an estimated 7 matches for "hurra".

Did you mean: hurry
2008 Jun 06
1
boxplot changes fontsize of labels
...to be possible. I set up some boxplots. Everything works well but when I put more then two of them in one plot the labels of the axes appear smaller than the normal font size. > x <- rnorm(30) > y <- rnorm(30) > par(mfrow=c(1,4)) > boxplot(x,y, names=c("horray", "hurra")) > mtext("Jubel", side=1, line=2) In case I take one or two boxplots this does not happen: > par(mfrow=c(1,2)) > boxplot(x,y, names=c("horray", "hurra")) > mtext("Jubel", side=1, line=2) The cex.axis seems not to be changed, as setting it...
2003 Dec 02
2
Problem with , in Common Name when running samba3 as ADS Member (Problem with Group-Contents)
...=================================== = "old" Systems: - donald: Microsoft Windows 2000 as ADS Controller with 2 (daisy, tick) Backup Controller - 800 Users mostly replicated from Microsoft Exchange - 65 Groups - fix: Samba 2.2.8 on Solaris 8 as Fileserver using only local groups - hurra: Samba 3.0.0 on Solaris 8 as NT4 Domain Member using winbindd = "new" System: - foxi: Samba 3.0.0 on Solaris 8 as ADS Domain Member using winbind - lt-js: Samba 3.0.0 on Debian (unstable) as ADS Domain Member using winbind - all Samba machines have successfully joined the Domain. 2. ve...
2017 Dec 03
0
Rcpp, dyn.load and C++ problems
.Call("compute_values_cpp") Also, if you were passing arguments to the C++ function you would need to declare the function differently. Do a search on "Rcpp calling C++ functions from R" HTH, Eric On Sun, Dec 3, 2017 at 3:06 AM, Martin M?ller Skarbiniks Pedersen < traxplayer at gmail.com> wrote: > Hi, > > I have written a small C++ function and compile it.
2006 Apr 07
8
New to Ruby... installation questions
Hi all, I''m looking into installing Ruby on Rails on my dedicated server which is RH Linux with a traditional PHP/MySQL/Apache configuration. I''m not an expert Linux user, but I can hold my own. My server hosts around 15 domains with websites of various complexity, some shops, some CMS, some completely flat. I''m looking for a tutorial explaining how to install Ruby
2017 Dec 03
5
Rcpp, dyn.load and C++ problems
Hi, I have written a small C++ function and compile it. However in R I can't see the function I have defined in C++. I have read some web-pages about Rcpp and C++ but it is a bit confusion for me. Anyway, This is the C++-code: #include <Rcpp.h> using namespace Rcpp; // [[Rcpp::export]] List compute_values_cpp(int totalPoints = 1e5, double angle_increment = 0.01, int radius =
2007 Oct 25
12
MGE Ellipse 800 shutdown problems
Thanks for suggetions and keep me indumb about making of Debian packages:D I will try this package "nut_2.2.0-2_i386.deb" One little questionm, shoud I use newmge-shut driver? - my ups is quite old - more then 3 years, connected through serial cable. >> PS: Arjen de Korte suspected something was wrong around my "heater" load, >> for now I have used two 150W lamps
2008 Jun 06
6
Subsetting to unique values
I want to take the first row of each unique ID value from a data frame. For instance > ddTable <- data.frame(Id=c(1,1,2,2),name=c("Paul","Joe","Bob","Larry")) I want a dataset that is Id Name 1 Paul 2 Bob > unique(ddTable) Will give me all 4 rows, and > unique(ddTable$Id) Will give me c(1,2), but not accompanied by the name column.