search for: skinnier

Displaying 8 results from an estimated 8 matches for "skinnier".

Did you mean: skinner
2004 Sep 13
1
Wishlist: axis() and line widths (PR#7223)
Full_Name: Tom Short Version: 1.9.1 OS: Win2000 & Debian Submission from: (NULL) (64.65.255.41) WISHLIST: axis() has a default parameter of "lwd = 1". I want skinnier lines as the default. If I change the default lty, it doesn't change what axis uses. The following code produces a graph with a box around it, but the axis lines are twice as thick as the box around the plot, so it looks funny. I can manually add axes and explicitly set line widths, but that...
2019 Jun 13
2
compiler flags for performance
hi guys, I'd like to ask, and I believe this place here should be best as who can know better, if building R with different compilers and opt flags is something worth investing time into? Or maybe this a subject that somebody has already investigated. If yes what then are the conclusion? Reason I ask is such that, on Centos 7.6 with different compilers from stock repo but also from so
2019 Jun 14
2
compiler flags for performance
...for-performance > | subject? > > Of course you do that, and add those switches to ~/.R/Makeconf. The > resulting binaries may become non-portable. > > E.g. "at work" we use -march=native quite a bit but it means can't share > libraries from a beefier dev box with skinnier deployment boxen as they don't > have the same chipset even thought the are both x86_64 and use the same Linux > distro. > > As for which switches help in which way on different compiler: that is > probably best seen as a black box. Time and profile locally, I no longer try &g...
2019 Jun 13
0
compiler flags for performance
...d advise with regards to compile-for-performance | subject? Of course you do that, and add those switches to ~/.R/Makeconf. The resulting binaries may become non-portable. E.g. "at work" we use -march=native quite a bit but it means can't share libraries from a beefier dev box with skinnier deployment boxen as they don't have the same chipset even thought the are both x86_64 and use the same Linux distro. As for which switches help in which way on different compiler: that is probably best seen as a black box. Time and profile locally, I no longer try to generalize. The newer...
2011 Apr 12
1
plot3d crashes R
Hi Duncan, I've just read the help for the plot3d function you've written and tried out the example code given at the bottom of the page. I then modified the function by adding an aspect ratio of 0.1 and ran it again, which crashed my R. I am using 2.12.2 on Windows, if that tells you anything. Best wishes, Roman
2004 Sep 16
1
How would you handle a fax without T.38 or G.711uLaw?
Let's say you were wanted to terminate calls onto your Asterisk system but your only available codec was G.729 and you had no control over the remote SIP proxy sending you the traffic. What would you do? Does anyone have an update on Asterisk supporting T.38 with SIP? Thanks! chris -------------- next part -------------- An HTML attachment was scrubbed... URL:
2019 Jun 14
0
compiler flags for performance
...? > > > > Of course you do that, and add those switches to ~/.R/Makeconf. The > > resulting binaries may become non-portable. > > > > E.g. "at work" we use -march=native quite a bit but it means can't share > > libraries from a beefier dev box with skinnier deployment boxen as they > don't > > have the same chipset even thought the are both x86_64 and use the same > Linux > > distro. > > > > As for which switches help in which way on different compiler: that is > > probably best seen as a black box. Time and pr...
2008 May 26
7
Mocking Models in Controller Specs...
I find myself doing this kind of thing a lot in Controller Specs: @vacancy = mock_model(Vacancy) @vacancy.stub!(:reference) @vacancy.stub!(:title) @vacancy.stub!(:created_at) @vacancy.stub!(:updated_at) @vacancy.stub!(:body) @vacancy.stub!(:contract) @vacancy.stub!(:location) @vacancy.stub!(:salary) @vacancy.stub!(:benefits)