Questions tagged [smd]

18 questions
12
votes
4 answers

JSON-RPC and Json-rpc service discovery specifications

I'm going to implement JSON-RPC web service. I need specifications for this. So far I had found only one resource that can be called as real specifications: JSON-RPC 1.0 http://json-rpc.org/wiki/specification Proposal of JSON-RPC 2.0:…
Artyom
  • 31,019
  • 21
  • 127
  • 215
3
votes
1 answer

Is there a solution for generating a JSON SMD for a Spring 3 REST Controller?

A colleague and I are setting up an architecture for rapid development of rich client-side apps using REST and JSON. Our server is using Spring 3's MVC and REST features to expose REST services as Spring controllers. For non-standard REST calls,…
Peter Bratton
  • 6,302
  • 6
  • 39
  • 61
2
votes
0 answers

Standardised mean differences for categorical variables

Hi I would like to ask how CreateTableOne in R calculates standardised mean differences for variables with multiple categories. I used matchit to conduct propensity score matching, and then used CreateTableOne to create a summary table to check the…
j1234
  • 93
  • 7
2
votes
3 answers

Elegant way to make RPC Calls to Python Functions in a Django Project

I'm in the middle of trying to create a django website to access data in a MySQL database. The intenion is to also create a UI in Dojo (javascript). Also I would like the django backend to also provide webservices (RPC for python functions) to…
2
votes
1 answer

SMD for categorical variable using tbl_summary

The gtsummary::tbl_summary functionality is wonderful and I am looking for a way to add SMD for categorical variables. The tableone function provided smd for all types of covariates including character. I tried adding SMD to tbl_summary by add_stat…
1
vote
1 answer

jsonrpc2 returning remote reference

I'm exploring jsonrpc 2 for a web service. I have some experience with java rmi and very much liked that. To make things easy I using the zend framework so I think I like to use that library. There is however one thing i am missing. how do I make a…
Bram
  • 765
  • 1
  • 6
  • 14
1
vote
1 answer

How to calculate Standardized Mean Difference for Table1 Package in R?

I am using the package "table1" to create a fancy table one with extra column containing the standardized mean difference of continuous variables in my dataset. The SMD should be a combination between the treatment and control groups stratified for…
gbg
  • 69
  • 5
1
vote
1 answer

How to calculate SMD between 3 groups or more?

I'm interested in calculating pairwise standardized mean differences(SMD) by one stratifying variable. Usually this is calculated between two groups, but can we make this calculation in 3 groups or more? P.S. I'm a big fan of gtsummary package, so I…
Ahmed
  • 33
  • 5
1
vote
1 answer

Effect Size Calculation with metafor (using "SMD"): insert standard deviation of difference of groups rather than group-specific SDs?

I am currently trying to calculate effect sizes for a meta-analysis that I am conducting. I am interested in calculating a standardized mean difference for paired data. I am using the escalc function ("SMD") of the package metafor to do this. I have…
Sara
  • 11
  • 1
1
vote
1 answer

Download files as .zip via cmis

I'm currently developing a native android application and try to access some pictures on a document server. For communication I'm using the OpenCMIS library. My goal is to download the pictures and save them to the device's internal storage or sd…
c7n
  • 1,131
  • 16
  • 29
1
vote
1 answer

How to get exception inside ActionInvocation.invoke()

First of all the final purpose is that i'm trying to inject a DAO connection into an SMD context (Ajax) so i'll ensure that transactions are being Commited (or Rollback), my problem is that i'm not being able to know if the invoke() method throws an…
luiscla27
  • 4,956
  • 37
  • 49
1
vote
1 answer

Android application fetch data from SQLite

I am new to android programming and i am trying to fetch data from SQLite and display it in list View. This is where i am getting and displaying data DataHandler handler=new DataHandler (getBaseContext()); handler.open(); Cursor…
SSMA
  • 497
  • 1
  • 7
  • 19
1
vote
0 answers

XPages jsonRpcService - Possible to get SMD description remotely?

I'm using the Domino 8.5.3 Extension Library with the jsonRpcService but I'm not generating the page content from the XPage, just using it as a service provider. Is there any way to generate the SMD automatically from the XPage content? I see that…
Kenneth Benjamin
  • 378
  • 2
  • 16
0
votes
0 answers

Add SMDs for each level of a categorical variable in gtsummary

I would like to create a table one of baseline characteristics, stratified by an exposure, that shows SMDs between the exposure groups for every level of the categorical variables. Currently, adding SMDs via add_difference only gives an overall SMD…
0
votes
2 answers

I'm unable to solve an unused arguments error I get when using the smd package

I keep getting an 'unused arguments' error when I call the SMD function I'm using smd() as part of a larger data analysis, comparing groups created through k-means clustering. And it was all working fine... until it wasn't. I'd been editing other…
1
2