Displaying 20 results from an estimated 800 matches similar to: "(no subject)"
2009 Jun 02
1
help on understanding a code
Dear R user,
I am trying to understand this following code. Basically it's using a
permutation method to calculate p value. But I would like to know exactly
how the permutation works.
#calculates null statistics
tt0 <- 0
set.seed(123)
B <- 100
for(i in 1:B) {
v <- sample(y)
tt0 <- c(tt0,ttest(dat,v)$tt)
}
tt0 <- tt0[-1]
#form p-values
att <- abs(tt)
att0 <- abs(tt0)
v
2016 Jul 04
2
cat() in proc.time?
Does anyone know if there's a reason that proc.time() uses cat()
rather than message() to print the output when there has been an error
in the process of timing?
line 31 of time.R,
https://github.com/wch/r-source/blob/e5b21d0397c607883ff25cca379687b86933d730/src/library/base/R/time.R#L31
on.exit(cat("Timing stopped at:", ppt(proc.time() - time), "\n"))
This means that
2016 Jul 15
0
cat() in system.time() ?
Hi Ben (and everyone else),
as this did not attract attention yet, let me start
>>>>> Ben Bolker <bbolker at gmail.com>
>>>>> on Mon, 4 Jul 2016 11:49:40 -0400 writes:
> Does anyone know if there's a reason that proc.time() uses cat()
> rather than message() to print the output when there has been an error
> in the process of
2016 Jul 17
1
cat() in system.time() ?
On Fri, 15 Jul 2016, Martin Maechler wrote:
> Hi Ben (and everyone else),
>
> as this did not attract attention yet, let me start
>
>>>>>> Ben Bolker <bbolker at gmail.com>
>>>>>> on Mon, 4 Jul 2016 11:49:40 -0400 writes:
>
> > Does anyone know if there's a reason that proc.time() uses cat()
> > rather than
2006 Dec 15
6
Query regarding linking R with Matlab
Thank you sir for your prompt reply.
Currently i am stuck at point where I need to call an available Matlab program from an R 2.4.0 interface. How can I do this? I have downloaded the R.matlab file and also the manual in pdf. But still i am not able to get through the problem. I will be grateful to you if you can elaborate me on this.
Awaiting your reply,
regards,
Bhanu Kalyan K
2019 Mar 26
2
How to revert a change properly
The "Revert [tag] message" is the default message generated by the 'git revert' command. Of course you would have to be using a git clone of LLVM instead of an SVN checkout in order to run 'git revert'. This command is the equivalent of 'svn merge –r' run from the top-level directory. I believe svn commands will operate only on the directories below the current
2007 Sep 29
2
CentOS groups on LinkedIn, Facebook, Orkut or Xing
Hi everybody,
I want to give some attention to the CentOS group that exist on LinkedIn,
Orkut, Facebook and Xing. If you have a profile on one of these networks,
why not join the CentOS group and hook up with other members ?
LinkedIn CentOS group
http://www.linkedin.com/e/gis/22405/3006AD6B2504
Facebook CentOS group (managed by Liviu Damian)
http://www.facebook.com/group.php?gid=2371797727
2020 Jul 29
2
Building a single .rst file
Is "Unix Makefiles" what I want if I am building on Windows using GNU make?
At 7/28/2020 10:41 PM, Xing GUO wrote:
>On 7/29/20, Paul C. Anagnostopoulos via llvm-dev
><llvm-dev at lists.llvm.org> wrote:
>> Folks,
>>
>> Total newbie here. What is the simplest way to build a single .rst file so
>> that I can look at the generated HTML? I have CMake,
2020 Jul 28
3
Building a single .rst file
Folks,
Total newbie here. What is the simplest way to build a single .rst file so that I can look at the generated HTML? I have CMake, Python, and Sphinx installed.
~~ Paul
2019 Nov 16
2
[Bugzilla] Is Bugzilla down?
Hi,
It seems that Bugzilla (https://bugs.llvm.org/) is down, when I using
the search engine.
--
Best Regards,
Xing
2016 May 23
3
What's "register pressure set"
Hi everyone,
I'm looking through codes related to registered pressure tracking, mainly the source files 'RegisterPressure.h/cpp', 'MachineRegisterInfo.h/cpp', 'TargetRegisterInfo.h/cpp'.
There is a concept I can hardly understand, the 'register pressure set'. Class 'TargetRegisterInfo' defines two virtual methods 'getRegClassPressureSets' and
2019 Mar 26
2
How to revert a change properly
Hi folks,
Several days ago, I made a bad change in llvm, and I reverted it using
following command
```
$ svn merge -r <bad change revision>:<previous revision>
```
However, this command seemed not working properly. I would like to know,
what's the right way to revert a bad change. I notice that there are some
reverting change with proper message, e.g. "Revert: [some tag]
2013 Apr 19
4
Spider Plot
Does any one have a sample code for a Spider Plot as attached?
Thanks,
Xing
2007 Jan 19
2
[Xen-ia64-devel][PATCH] Fix Xen crash when creating VTI in some machines.
Xend will do a hypercall to destory domain when creating VTI guest fail.
If "is_vti"
not be set at this point, HV will call relinquish_vcpu_resource() which
belong
to domU. It may try to free a NULL pointer, so dom0 crash.
This patch fix it.
Signed-off-by, Zhang Xin < xing.z.zhang@intel.com >
Good good study,day day up ! ^_^
-Wing(zhang xin)
OTC,Intel Corporation
2006 Aug 26
5
LiteSpeed Web Server 2.2 with Ruby Rails integration....
Fellow Rail users and developers,
Right now the easiest way to run Rails is in combination with Mongrel.
However, it may not be a good idea to expose Mongrel directly to the
outside world in a high-load production environment. In-addition,
Mongrel_cluster + proxy + load balancer have to be used even for a
single server deployment making the unified setup more complicated than
needs be.
2008 Apr 22
2
Seqfault, Address 0, track X11() (PR#11231)
Full_Name: Liqun Xing
Version: 2.6.2
OS: Solaris 9
Submission from: (NULL) (76.182.91.82)
When first time launch X11(), it was fine. However, when closed the X11 windon
by clicking the close button, or closed it off by command Dev.off() and launched
the X11() again, got segfault, and asking for exiting R and other options.
2016 Jun 27
3
Why not do machine instruction scheduling in SSA form?
Hi LLVM community,
Currently LLVM backend do pre-RA machine instruction scheduling in non-SSA form, I doubt why not do machine scheduling in SSA machine instruction form? Now LLVM’s machine scheduling uses a list-scheduling algorithm, but if we wang to support more complex scheduling algorithms, for example, modulo scheduling for loops, it seems more easy to accomplish this in SSA form as SSA is
2016 May 23
0
What's "register pressure set"
Hi Xing,
The register pressure sets are basically concepts that tells you how may variables can live in register at the same time.
This information is available for two different level of abstraction: per register class and per register unit. The register unit is the basic entity we use to represent a register.
Tablegen generates all of that for you, so you do not need to worry about them.
2007 Aug 24
3
[PATCH]Use a marco to standardize XEN uuid length
This patch use a marco instead of hard code in smbios.c.
IA64 also need this marco.
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
2019 Feb 22
2
How to write an 'expected failure test'
Hi devs,
I want to write a test that expected to fail. And I want to check the error
message. But I found that if the command exit code is not 0, then the test
will fail. Also, if I add `XFAIL: *`, it will not check the command line
output ... Can someone help me?
Best Regards,
Xing
-------------- next part --------------
An HTML attachment was scrubbed...
URL: