search for: ordinarili

Displaying 20 results from an estimated 168 matches for "ordinarili".

Did you mean: ordinarily
2005 Nov 22
1
Customizing the package build process
I've made a package for which R CMD build isn't producing very satisfactory results. I'll get to the details in a moment. I wonder if it would make sense to have my own makefiles (which already exist and are doing quite a lot) produce the .tar.gz file ordinarily produced by R CMD build. As far as I can tell, R CMD build basically tars up of the project directory after running some
2016 Feb 25
3
CentOS 7 SELinux issue
Trying to add SELinux support to my bitcoin package. Keep getting this on install: SELinux: Could not downgrade policy file /etc/selinux/targeted/policy/policy.29, searching for an older version. SELinux: Could not open policy file <= /etc/selinux/targeted/policy/policy.29: No such file or directory /sbin/load_policy: Can't load policy: No such file or directory
2004 Apr 18
2
Dynamic recording function?
Hi Folks, Yesterday I had need to record a phone conversation. This is not something I'd ordinarily have to do and so I have not configured my * server to do any recordings. When looking for example dialplan stuff I found many examples where the calls are always recorded when the phone is picked up but none that could be done dynamicly. What I'd like to be able to do is press a button
2005 Nov 23
2
Makefiles and other customization
Writing R Extensions mentions that a package developer can provide a Makefile, but gives very little information about what should be in it. It says there must be a clean target, and later on there's mention of $(SHLIB): $(OBJECTS) $(SHLIB_LINK) -o $@ $(OBJECTS) $(ALL_LIBS) (in the F95 discussion). What should a Makefile provide, and what can it assume? In other words,
2008 Apr 14
2
Plotting with exact axis limits
Hello, If I make a plot, say something simple like plot( runif(100) ) then the origin (0,0) is not at the bottom-left corner of the box surrounding the plot. The axis limits are "padded" slightly. This is ordinarily a good feature, because it makes plots look better. But now I would like to make a plot with the origin exactly on the bottom left. Through trial and error, I have
2006 Sep 16
2
dotplot/Dotplot: connecting points within factor level across time
For each level of the factor in dotplot, I have time points I'd like to connect with a line. In the example below, 'x' represents a starting time and 'd' a duration, and I wish to connect 'x' to 'x+d'. Ordinarily I would use Dotplot from hmisc for this, but I have not been able to find a time class that Dotplot will allow. I can get lattice dotplot to put
2008 Apr 18
2
Line-wrap problem
I'm wondering if someone can tell me how R determines where to wrap lines in its output. I'd like to understand this because occasionally often after running a script the output of R no longer wraps at the correct location. For example, the statement, '1:40' would ordinarily return something like this... [1] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
2006 Feb 23
5
OT: VoIP over bonded link
I have to provision several dozen * users to a seperate building on our campus in the same subnet. Ordinarily, I'd just run a gigabit cat6 cable to another switch if it doesn't violate the 100 metre rule, but this building is several hundred metres away from my backbone. My only option for cabling to the remote building is copper. My plan is to provision them with a Linux bridge with 4
2011 Oct 18
4
[LLVMdev] Question about MCExpr and subclasses
I have a question about MCExpr and its subclasses defined in MCExpr.h. I am trying to get Mips' direct object emission working. Line 283 of MCElfStreamer.cpp reads like this: 00283 case MCExpr::Target: llvm_unreachable("Can't handle target exprs yet!"); Does this mean that if I use a subclass of MCTargetExpr to lower MachineOperands to MCOperands, it won't work?
2012 Oct 07
2
gam error message: matrix not +ve definite
Hello, I'm running a multimodel analysis which involves fitting several GAM models as implemented in package mgcv. The issue I'm having is that when I try to fit my model, gam gives me the following error message: 'Error in initial.sp(w * X, S, off) : S[[2]] matrix is not +ve definite.' The strange part of this is that the error message stops my model fitting function when run
2001 Nov 19
2
Vectors of objects...
Surely I am confused about something... still. Having read parts of S-programming, MASS, and Programming with Data, I am no closer to understanding how to make a simple vector containing list objects. If I have somehow skipped over a relevant section in these books, please let me know what sections I should have read. This is a simpler case of what I posted on Friday. I am trying to build
2006 Jun 06
1
Default value plugin
I''m releasing a very small plugin that allows you to specify default values for fields in models. Ordinarily, you might do this in your schema, I guess, but then it''s awkward if you need that on a serialized field or need your default values calculated somehow. So you can do something like this: (repeated from an earlier post and the README) class Mixture <
2007 Dec 10
1
lattice: placing y-axis labels on right-hand side of panel when relation="sliced"
Hello, I'm using lattice to create a multi-panel figure. I would like to draw each panel's y-axis ticks and labels on the right-hand side of the panel. Ordinarily, I would do this by specifying scales=list(y=list(draw=T, alternating=2)). But in this case, I am using relation="sliced" to determine the y-axis limits. So "alternating" is ignored. Is there any
2010 Mar 03
1
Subset using partial values
Hi everyone, I would like to subset a data.frame using partial values. For example I have the following data.frame: PROCHI Main_condition 1234 411 1235 4110 1236 4111 1237 I20 1238 I201 1239 I202 Now let's say that I use the Subset function. Ordinarily I would use it as follows Subset(x, Main_condition=="411"|Main_condition=="4110" etc to get
2011 Apr 04
2
Problem Running Printer, Can Wine Work for Original Drivers?
Hi, I have an old Pavilion 6535 running Puppy Linux Wary 5.0. I would like to install a Lexmark X2470 print/copy/scan gig on it. Problem is, there is no native driver to run it that I can find. Ordinarily I use Cups for printing and Xsane for scanning, but I can't get either of these to recognize this device. I was wondering if it was possible to use the original Windows driver package under
2012 Apr 12
1
GitHub -> PuppetForge
Hello, i am managing my Puppet modules with GitHub and today i discovered the GitHub Service Hooks. Does anybody know if it is possible to use a GitHub Service Hook to push the lates *.tar.gz into PuppetForge? Regards, Dennis
2005 Dec 28
2
where is WEBrick (daemon mode) output? not in log/server.log
I am running WEBrick in daemon mode (with the -d option). Where is the server output that would ordinarily be on my console if I ran without the -d option? APP_ROOT/log/server.log is empty and not being appended to, though it is owned by the same user WEBrick is running as and has write permissions. The only files in APP_ROOT/log are: development.log production.log server.log test.log Where
2005 Feb 22
2
[LLVMdev] Area for improvement
Chris Lattner wrote: > On Mon, 21 Feb 2005, Jeff Cohen wrote: > >> Sorry, I thought I was running selection dag isel but I screwed up >> when trying out the really big array. You're right, it does clean it >> up except for the multiplication. >> >> So LoopStrengthReduce is not ready for prime time and doesn't >> actually get used? > >
2000 Apr 01
1
R with no gui
I have an old IBM Thinkpad 701 that has a 340MB disk and a 486 CPU that's not good for much anymore, so I thought I'd install R on it and make it a little useful. I went to *tremendous* pains to upgrade Linux on it without X so there would be some room to put R. But having done that I find that the binary is R.X11 and it's looking for (but can't find) libSM.so, which is ordinarily
2011 Oct 18
0
[LLVMdev] Question about MCExpr and subclasses
That just means the ELF writer doesn't know yet how to deal with the target-specific data. It needs taught how to map them onto relocations and such. Do you really need to subclass MCTargetExpr? That's ordinarily only for operands that aren't representable via the normal MC stuff (for example, the ARM movw/movt relocations). You should be able represent normal symbol operands w/o