similar to: Dear R experts, I have a question about meta-analysis

Displaying 20 results from an estimated 1000 matches similar to: "Dear R experts, I have a question about meta-analysis"

2003 Sep 22
1
Why I can't set some default printer options for my HP 1015 + CUPS printer ??
Hi, Everyone! I've installed samba + print$ driver + cups successfully on my Debian Box, and I've made a simple page count program for the printed PCL and postscript files, it runs nicesly, but one problem I encountered is that I can't check the "Advanced " option on for the samba printer (I've tried to check them, but it does not take effect), while I can do it well
2007 Jun 27
2
Meta-Analysis of proportions
Dear colleagues, I'm conducting a meta-analysis of studies evaluating adherence of HIV-positive drug users into AIDS treatment, therefore I'm looking for some advice and syntax suggestion for running the meta-regression using proportions, not the usual OR/RR frequently used on RCT studies. Have already searched already several handbooks, R-manuals, mailing lists, professors, but... not
2016 Feb 13
2
nutdrv_qx - Device not supported
Hi I have the RCT 3KVA Axpert solar hybrid inverter. It is also known as the MPP Solar PIP-MS series, the IPS-4000WM and the Voltronic Axpert MKS. I am trying to monitor the inverter using NUT on a Raspberry Pi (I have tried Ubuntu as well with the same results). I have tried most of the drivers with no success. The inverter came with the ViewPower software so I assumed that my best chance
2018 Jul 20
2
LLVM Social in China - Hangzhou: July 28, 2018
Hi all, The 3rd HelloLLVM social in China will happen on July 28, 2018. The location is at Hangzhou, Zhejiang. Everyone interested in LLVM related projects is invited to join. Event details is at https://mp.weixin.qq.com/s/Ruf3Dx3GBW37LnUzbfKfNA BoF style. Presentations are welcome too :-) Looking forward to meet you ! -- Best wishes, Wei Wu (吴伟)
2020 May 29
2
[PATCH] drm/nouveau/clk/gm20b: Fix memory leak in gm20b_clk_new
When gk20a_clk_ctor() returns an error code, pointer "clk" should be released. It's the same when gm20b_clk_new() returns from elsewhere following this call. Signed-off-by: Dinghao Liu <dinghao.liu at zju.edu.cn> --- drivers/gpu/drm/nouveau/nvkm/subdev/clk/gm20b.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git
2009 Jun 30
0
[LLVMdev] Limitations of Alias Analysis?
On Mon, Jun 29, 2009 at 7:40 PM, Wenzhi Tao<linus_wind at zju.edu.cn> wrote: >   The result of -aa-eval: > >  MayAlias:     %struct.Location* %0, %struct.Location* %1 >  MayAlias:     %struct.Location* %0, %struct.Location* %2 >  MayAlias:     %struct.Location* %1, %struct.Location* %2 I'm getting NoAlias with the given steps; are you using trunk LLVM? -Eli
2020 May 20
1
[PATCH] drm/nouveau/dispnv50: fix runtime pm imbalance on error
pm_runtime_get_sync() increments the runtime PM usage counter even the call returns an error code. Thus a pairing decrement is needed on the error handling path to keep the counter balanced. Signed-off-by: Dinghao Liu <dinghao.liu at zju.edu.cn> --- drivers/gpu/drm/nouveau/dispnv50/disp.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git
2024 Mar 04
1
[PATCH] nouveau/dmem: handle kcalloc() allocation failure
On Sun, Mar 3, 2024 at 4:46?AM Duoming Zhou <duoming at zju.edu.cn> wrote: > > The kcalloc() in nouveau_dmem_evict_chunk() will return null if > the physical memory has run out. As a result, if we dereference > src_pfns, dst_pfns or dma_addrs, the null pointer dereference bugs > will happen. > > This patch uses stack variables to replace the kcalloc(). Won't this
2024 Mar 03
1
[PATCH] nouveau/dmem: handle kcalloc() allocation failure
The kcalloc() in nouveau_dmem_evict_chunk() will return null if the physical memory has run out. As a result, if we dereference src_pfns, dst_pfns or dma_addrs, the null pointer dereference bugs will happen. This patch uses stack variables to replace the kcalloc(). Fixes: 249881232e14 ("nouveau/dmem: evict device private memory during release") Signed-off-by: Duoming Zhou <duoming
2016 Mar 12
2
Questions about GSoC project: Speed up the Test Suite
Hi, My name is Luo Zengbo, a student from Zhejiang University, China. As I mentioned in IRC before(my IRC nick name is poe_), I am interested in GSoC project: Speed up the Test Suite. After discussed with Olly, I think this project can be divided into three steps: Step 1: Rewrite every call of the function get_writable_database(). I will pass writable database's name with
2018 Jul 20
2
[cfe-dev] LLVM Social in China - Hangzhou: July 28, 2018
FYI they organize this kind of stuff throughout the years in different cities. Not sure about Nanjing but I did see one in Shanghai Zhang > 在 2018年7月20日,10:40,Shi, Steven via llvm-dev <llvm-dev at lists.llvm.org> 写道: > > Is there similar social party in other Chinese cities? Like Shanghai, Nanjing? > > Thanks > Steven Shi > >> -----Original Message-----
2016 Feb 15
1
nutdrv_qx - Device not supported
Hi Thank you very much for the feedback. I will download and try to get it working on the Raspberry Pi. Regards Tom On Sun, Feb 14, 2016 at 1:49 AM, hyouko at gmail.com <hyouko at gmail.com> wrote: > > I have the RCT 3KVA Axpert solar hybrid inverter. It is also known as > the > > MPP Solar PIP-MS series, the IPS-4000WM and the Voltronic Axpert MKS. I > am > >
2010 Jul 07
2
About Simplified Chinese Translation
Hi, Hello, everyone. My Name is GaoHu, I'm living in Hangzhou, ZheJiang, China. Last year, I graduate from college in ShanXi. Now, I'm working in a IT company that using Delphi and Oracle, with Our Server RHEL. I'm interest in Open Source and like CentOS as it is simple and stable. I like to use CentOS as my server, with Fedora as my desktop. I like linux and I just think there
2009 Nov 01
4
convert list to Dataframe
Hi. I have a huge list called twitter: > dim(twitter) NULL > str(twitter) List of 1 $ :Classes 'PlainTextDocument', 'TextDocument', 'character' atomic [1:35575] 11999;10:47:14;20;10;2009;ObamaLouverture;Trails Mixed Lessons For Governance From Campaigner-in-chief: President obama jumps campaign 09 tuesday..
2024 Mar 06
1
[PATCH v3] nouveau/dmem: handle kcalloc() allocation failure
The kcalloc() in nouveau_dmem_evict_chunk() will return null if the physical memory has run out. As a result, if we dereference src_pfns, dst_pfns or dma_addrs, the null pointer dereference bugs will happen. Moreover, the GPU is going away. If the kcalloc() fails, we could not evict all pages mapping a chunk. So this patch adds a __GFP_NOFAIL flag in kcalloc(). Finally, as there is no need to
2008 Feb 01
1
package could not be loaded
Hi, I am an R newbie. I am running R2.5.1 on WinXP. I am trying to run a pacakge (BNArray1.0) that depends on deal 1.2-26 and dynamicGraph 0.2.0.1 . These are available on http://www.cls.zju.edu.cn/binfo/BNArray/#OLE9 . I have installed the 3 packages (using local files). When I try to run BNArray, I reveicd this error message > local({pkg <- select.list(sort(.packages(all.available =
2017 Jul 17
2
Is clang+llvm deterministisc?
I searched source code of LLVM/Clang 4.0.0 for 'random_seed' with grep. It seems the -frandom-seed option is not supported. The -rng-seed option appears to be defined in ./lib/Support/RandomNumberGenerator.cpp, which is source code for class RandomNumberGenerator. The constructor of class RandomNumberGenerator is private and is only called by Module::createRNG (defined in
2011 Jun 07
1
Fail at end of Roller Coaster Tycoon 2 install
I'm new to Wine, but am following instructions from http://www.youtube.com/watch?v=da-1pKWp4Z0&feature=related I have the game files on a CD i burned, and thats fine. I select AutoRun.exe (everthing directory wise looks the same as on the video), and it successfully takes me through the end of the installation. WHen the game is done installing, I click "Finish" to finish the
2011 Jan 24
4
toruble downloading programs using winebottler
hey all, I've been dying to be able to play roller coaster tycoon 2 on my macbook using wine and winebottler, but im having some problems. Everytime i try to download the program, it gets to the spot where it says turn on coreaudio, and then stalls, and then an error message comes up saying prefix creation exited with error, followed by, you find a logfile to help with degguing on your
2018 May 11
2
Passing parameter to Queue-called macro
Hi Marie Thanks! I was just worried about thread safety if I had to use a global variable, e. g. it might be set to a value by one call (since I'm using the same global for every incoming call to transfer the accountcode gotten from my HTTP endpoint to the same macro, and there can be several calls simultaneously all inserting HTTP-sourced values at more or less the same instant) and then