How to remove both % symbols from table body and “, n (%)” from stat_label in {gtsummary} table?

Summary The problem at hand involves customizing a {gtsummary} table in R to remove percent symbols from the table body and the “, n (%)” notation from the stat_label. The goal is to create a streamlined table where column headers indicate the statistics to be interpreted, following the AMA Manual of Style guidelines. Root Cause … Read more

Calculation type name appears alongside the numerical value when data detail is set to “totals”

Summary The issue at hand is related to the Jasperserver version 8 update, where the calculation type name appears alongside the numerical value when the data detail is set to “totals”. This is a significant change from the previous version, where only the column label and data field were displayed. Root Cause The root cause … Read more

Minecraft mods, where to start?

Summary To start developing Minecraft mods, you need to choose a suitable API. The most popular ones are Minecraft Forge and Liteloader. These APIs provide a framework for loading and executing your Java code within the game. Understanding how to use these APIs is crucial for creating successful mods. Root Cause The main issue is … Read more

My calculated HI density fraction from a Galform sub-volume is orders of magnitude too small. What am I missing?

Summary The issue at hand is that the calculated HI density fraction from a Galform sub-volume is orders of magnitude too small. The expected value of average Ω_HI is around 3-5e-4 for z = 0, but the current calculation yields a value of approximately 3e-7. The code provided seems to conserve mass during the gridding … Read more

Latent Class Analysis Using R

Summary The provided R code performs a Latent Class Analysis (LCA) using the poLCA package to identify the optimal number of classes in a given dataset. The code calculates the Bayesian Information Criterion (BIC) for different class models and conducts a Likelihood Ratio Test (LRT) to compare the fit of each model. However, the code … Read more

MatchIt full matching + marginaleffects: cluster-robust SE by subject ID after matching

Summary The question revolves around obtaining cluster-robust standard errors by subject ID after performing generalized full matching using MatchIt and estimating a risk ratio with a weighted Poisson model, followed by computing average comparisons with marginaleffects::avg_comparisons(). The key challenge is determining the correct way to specify clustering in avg_comparisons() to respect the matching structure and … Read more

“Archived non-system classes are disabled because the java.system.class.loader property is specified” – is this a problem?

Summary The warning message “Archived non-system classes are disabled because the java.system.class.loader property is specified” is raised when starting the CLion IDE on a GNU/Linux system. This warning is related to the java.system.class.loader property being set to “com.intellij.util.lang.PathClassLoader”, which disables the use of archived non-system classes. The main concern is whether this is a problem … Read more

UI authentication issues with solr-nightly:10.1.0

Summary The issue at hand is related to UI authentication with the apache/solr-nightly:10.1.0-SNAPSHOT image in a Docker container. After enabling basic authentication using docker exec -i solr10 bin/solr auth enable -type basicAuth -credentials admin:password, the Solr UI becomes inaccessible, resulting in an HTTP ERROR 401 Authentication failed response. However, the backend API continues to function … Read more