User Tools

Site Tools


You are not allowed to perform this action
hcistats:logisticregression

Logistic Regression


Introduction

Logistic Regression is a way to fit your data to the logistic function. The logistic function is as follows:

.

One unique characteristic of the logistic function is that it only takes values between 0 and 1. Logistic regression is generally used for the binary variable, such as “yes” or “no”. It also can be used to model the number of the trials of interest out of all the trials (like a success rate or error rate). Let's take a look at an example first and we will see how we can interpret the results.



R code example: Regression for binary data

We are going to use a similar example we use in Principal Component Analysis. Let's say we asked the participants two 7-scale Likert questions about what they care about when choosing a new computer, and which OS they are using (either Windows=0 or Mac=1) and got the results like this.

ParticipantPriceAestheticsOS
P1630
P2450
P3640
P4510
P5750
P6620
P7520
P8640
P9330
P10260
P11361
P12171
P13261
P14571
P15251
P16361
P17151
P18441
P19371
P20541
  • Price: A new computer is cheap to you (1: strongly disagree – 7: strongly agree),
  • Aesthetics: The appearance of a new computer is appealing to you (1: strongly disagree – 7: strongly agree).

Your hypothesis is that “Price” and “Aesthetics” are somehow connected to the choice of OS. Let's first create the data frame. We also standardize the data. In this example, we already know that the theoretical center is 4, so we just subtract all the values by 4 (thus, the values range from - 3 to 3 with 0 at the center).

Price <- c(6,4,6,5,7,6,5,6,3,2,3,1,2,5,2,3,1,4,3,5) Price <- Price - 4 Aesthetics <- c(3,5,4,1,5,2,2,4,3,6,6,7,6,7,5,6,5,4,7,4) Aesthetics <- Aesthetics - 4 OS <- c(0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1) data <- data.frame(Price, Aesthetics, OS)

Now, we are going to do a logistic regression. The format is very similar to linear regression, and you basically just need to use glm() function. First we use Price as an independent variable.

model <- glm(OS ~ Price, data=data, family=binomial) summary(model) Call: glm(formula = OS ~ Price, family = binomial, data = data) Deviance Residuals: Min 1Q Median 3Q Max -1.947987 -0.623901 0.004467 0.841877 1.577686 Coefficients: Estimate Std. Error z value Pr(>|z|) (Intercept) -0.0249 0.5573 -0.045 0.9644 Price -0.8799 0.3821 -2.303 0.0213 * --- Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1 (Dispersion parameter for binomial family taken to be 1) Null deviance: 27.726 on 19 degrees of freedom Residual deviance: 19.758 on 18 degrees of freedom AIC: 23.758 Number of Fisher Scoring iterations: 4

Thus, our model is as follows.

.

So, what does the results tell us? Let's take a closer look at the model. Think about that price equals to 0, which is associated with “4” in the 7-scale Likert response. This means that a participant showed a neutral attitude towards the price of a computer as an important factor to decide the purchase. If so, the probability of OS = 1 (which means that the person chooses Mac), is exp(-0.0249) / (1 + exp(-0.0249)) = 0.494. So by default, people choose either Windows or Mac almost at the same probability.

However, its probability become small or large depending whether the person considers the price as an important factor. The probability of OS = 1 for the person with the response “7” is exp(-0.0249 - 0.8799 * 3) / (1 + exp(-0.0249 - 0.8799 * 3)) = 0.065, and the one for the person with the response “1” is exp(-0.0249 - 0.8799 * -3) / (1 + exp(-0.0249 + 0.8799 * -3)) = 0.931. This is kind of making sense because there are lots of cheap PCs in the market, and Windows is probably more price-competitive than Mac. As the results show, “Price” is statistically significant (p < 0.05), this means that the coefficient of Price is likely to be negative even if we consider its estimation error.

Another thing you should look at deviance. It is more or less like “residual standard deviation” in linear regression. It is a metric of the model error. Thus, a lower deviance means a better fit of the model. The result says that “Null deviance” is 27.726 and “Residual deviance”: 19.758. “Null deviance” means the deviance in the model without any independent variable (i.e., the model for the null hypothesis). “Residual deviance” means the deviance of the model we have created. Thus, the result indicates that our model shows an improvement to predict the probability of OS choice by about 8 point of the deviance. We usually see more than 1 decrease in the deviance when a meaningful factor is introduced to the model.

So how about adding Aesthetics to the model? Let's give it a try.

model <- glm(OS ~ Price + Aesthetics, data=data, family=binomial) summary(model) Call: glm(formula = OS ~ Price + Aesthetics, family = binomial, data = data) Deviance Residuals: Min 1Q Median 3Q Max -2.153058 -0.584998 0.009312 0.583771 1.687231 Coefficients: Estimate Std. Error z value Pr(>|z|) (Intercept) -0.6168 0.7530 -0.819 0.4127 Price -0.5309 0.4123 -1.288 0.1979 Aesthetics 0.8846 0.5239 1.688 0.0913 . --- Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1 (Dispersion parameter for binomial family taken to be 1) Null deviance: 27.726 on 19 degrees of freedom Residual deviance: 15.659 on 17 degrees of freedom AIC: 21.659 Number of Fisher Scoring iterations: 5

The deviance has been improved decently (about 3 points), so it seems that including Aesthetics means something. However, the coefficients are not statistically significant, so they can be zero (which means that they can have no effect on predicting the probability of OS = 1). Nonetheless, the sign of the coefficient for Price is still negative, which is the same as our observation on the model with only Price factor. The sign of the coefficient for Aesthetics is positive, which implies that people who cares about the appearance of the device more tend to buy Macs, which also seems sensible (well, I'm not saying the the appearance of PCs are not good. This is just hypothetical data, and I am a Windows user for more than 10 years :). And considering the improvement of deviance, we can say that this model is what we wanted to achieve.

In general, when you are trying to determine the model, you need to look at the statistical results (e.g., whether each factor is statistically significant or the deviance is decreased) and you need to make sense of the model (e.g., what each factor means in the context of the model and whether the direction (positive or negative) is sensible). It is not necessarily easy when you have many factors, and may take a lot of time.

If you want to know more about logistic regression, I recommend reading the following book. Data Analysis Using Regression and Multilevel/Hierarchical Models



R code example: Regression for the success/error rate

You can also use logistic regression to model the success or failure rate. Although the procedure is quite similar, there are several precautions you need to execute. Please see more details in the Generalized Linear Model page.



Goodness of fit (Effect size)

To describe how well the model predicts, we need to know the goodness of fit. In linear regression, an adjusted R-squared is the metric for the goodness of fit, but we cannot directly use the same metric for logistic regression. This is why we have deviance, and I think reporting the deviance is probably enough. The results also show AIC (Akaike Information Criterion), which also indicates the goodness of the model (a smaller AIC means a better model). You thus may want to report it as well.

But there are a few direct alternatives to R-squared, which are called pseudo R-squared. You can find more details about them here, but I describe two of them which are commonly used for logistic regression and fairly easy to calculate: Cox & Snell and Nagelkerke.

The intuition of Cox & Snell and Nagelkerke is to calculate the improvements of the prediction by the model you create from the base model (called the null model). We use the log-likelihood for this calculation. Let's see more details of how to calculate them.



Cox & Snell R-squared

Cox and Snell R-squared can be calculated as follows:

,

where "" and "" are the log-likelihood of the model and intercept (the model without any explaining variable), respectively, and N is the sample size (which is 20 in this example). The log-likelihood basically represents how likely the prediction by your model can happen in your data. If your model perfectly predict your data, the likelihood is 1, which means the -2 log-likelihood is 0. There is a convenient function to calculate the log-likelihood. For example, is:

model <- glm(OS ~ Price + Aesthetics, data=data, family=binomial) summary(model) logLik(result) 'log Lik.'-7.829328 (df=3)

You can calculate in a similar way, but you have to create a model without any variable. (You can also confirm the value of the null deviance by executing summary(model_null).)

model_null <- glm(OS ~ 1, data=data, family=binomial) logLik(model_null) 'log Lik.' -13.86294 (df=1)

Now, we can calculate Cox and Snell R-squared.

1 - exp(2 * (7.829328 - 13.86294)/20) 0.4530299



Nagelkerke R-squared

One of the problems of Cox & Snell R-squared is that the theoretical maximum is not always 1, which is a little weird for R-square. Nagelkerke R-squared solves this problem. It can be calculated as follows:

,

where and are the log-likelihood of the model and intercept (the model without any explaining variable), respectively, and N is the sample size (which is 20 in this example). Nagelkerke R-squared for the example is calculated as follows (see the previous section for calculating the -2 log-likelihood):

(1 - exp(2 * (7.829328 - 13.86294)/20)) / (1 - exp(2 * -13.86294/20)) 0.60404

Generally, Nagelkerke R-squared becomes larger than Cox and Snell R-squared. In this example, both pseudo R-squares tell us that the model predicts the success rate pretty well.


Discussion

Robertvaw, 2025/09/13 19:07
darknet sites <a href="https://darkmarketlegion.com/ ">darknet markets </a> nexus onion mirror <a href="https://darkmarketgate.com/ ">onion dark website </a>
Brianprito, 2025/09/13 19:07
darkmarket link <a href="https://darknetmarketseasy.com/ ">darknet marketplace </a> nexus market <a href="https://darkmarketgate.com/ ">dark web market list </a>
JamesHot, 2025/09/13 19:07
best darknet markets <a href="https://darkmarketsgate.com/ ">nexus market url </a> nexus url <a href="https://darkmarketgate.com/ ">dark web market </a>
DwayneSlupt, 2025/09/13 19:07
darknet market lists <a href="https://darkmarketslegion.com/ ">dark market 2025 </a> nexus onion mirror <a href="https://darkmarketgate.com/ ">nexus url </a>
DonaldDof, 2025/09/13 19:07
darknet drug links <a href="https://darkmarketgate.com/ ">nexus official link </a> best darknet markets <a href="https://darkmarketgate.com/ ">onion dark website </a>
Richardlig, 2025/09/13 19:14
nexus official site <a href="https://nexusmarket.hashnode.dev/exploring-the-darknet-market-nexus-the-hidden-online-economy ">nexus dark </a> nexus darknet shop <a href="https://nexusmarket.hashnode.dev/exploring-the-darknet-market-nexus-the-hidden-online-economy ">nexus onion link </a>
Angeloskemi, 2025/09/13 19:14
nexus url <a href="https://nexusmarket.hashnode.dev/understanding-darknet-market-links-your-guide-to-the-hidden-online-economy ">nexus site official link </a> nexus darknet shop <a href="https://nexusmarket.hashnode.dev/understanding-darknet-market-links-your-guide-to-the-hidden-online-economy ">nexus market </a>
Edwardvex, 2025/09/13 19:14
nexusdarknet site link <a href="https://nexusmarket.hashnode.dev ">nexus darknet </a> nexus market darknet <a href="https://nexusmarket.hashnode.dev/nexus-darknet-market-link-a-gateway-to-the-hidden-online-economy ">nexus official site </a>
Charlesnip, 2025/09/13 19:15
nexus site official link <a href="https://nexusmarket.hashnode.dev/understanding-nexus-darknet-a-deep-dive-into-the-hidden-online-marketplace ">nexus darknet link </a> nexus darknet url <a href="https://nexusmarket.hashnode.dev/exploring-the-nexus-dark-web-market-a-comprehensive-guide ">nexus darknet shop </a>
KennethReife, 2025/09/13 19:15
nexus shop <a href="https://nexusmarket.hashnode.dev/exploring-the-nexus-darknet-link-your-gateway-to-the-hidden-online-economy ">nexus dark </a> nexus darknet market url <a href="https://nexusmarket.hashnode.dev/exploring-the-nexus-darknet-link-your-gateway-to-the-hidden-online-economy ">nexus market darknet </a>
Angeloskemi, 2025/09/13 19:28
nexus onion link <a href="https://nexusmarket.hashnode.dev/understanding-darknet-market-links-your-guide-to-the-hidden-online-economy ">nexus shop url </a> nexus onion link <a href="https://nexusmarket.hashnode.dev/understanding-darknet-market-links-your-guide-to-the-hidden-online-economy ">nexus shop </a>
Richardlig, 2025/09/13 19:28
nexus onion mirror <a href="https://nexusmarket.hashnode.dev/exploring-the-darknet-market-nexus-the-hidden-online-economy ">nexus link </a> nexus darknet market <a href="https://nexusmarket.hashnode.dev/exploring-the-darknet-market-nexus-the-hidden-online-economy ">nexus darknet link </a>
Edwardvex, 2025/09/13 19:28
nexus darknet market url <a href="https://nexusmarket.hashnode.dev ">nexus darknet link </a> nexus url <a href="https://nexusmarket.hashnode.dev ">nexus market </a>
JamesHot, 2025/09/13 19:31
darknet links <a href="https://darkmarketsgate.com/ ">dark web sites </a> nexus market link <a href="https://darkmarketgate.com/ ">nexus dark </a>
DonaldDof, 2025/09/13 19:31
dark web markets <a href="https://darkmarketgate.com/ ">nexus market darknet </a> nexus url <a href="https://darkmarketgate.com/ ">darknet market </a>
Robertvaw, 2025/09/13 19:31
nexusdarknet site link <a href="https://darkmarketlegion.com/ ">darknet links </a> nexus onion link <a href="https://darkmarketgate.com/ ">darknet markets url </a>
Brianprito, 2025/09/13 19:31
darknet links <a href="https://darknetmarketseasy.com/ ">dark market url </a> darknet sites <a href="https://darkmarketgate.com/ ">dark market 2025 </a>
DwayneSlupt, 2025/09/13 19:31
darknet markets 2025 <a href="https://darkmarketslegion.com/ ">darknet market lists </a> bitcoin dark web <a href="https://darkmarketgate.com/ ">darkmarket url </a>
Charlesnip, 2025/09/13 19:32
nexus shop url <a href="https://nexusmarket.hashnode.dev/exploring-the-nexus-dark-web-market-a-comprehensive-guide ">nexusdarknet site link </a> nexus market darknet <a href="https://nexusmarket.hashnode.dev/exploring-the-nexus-dark-web-market-a-comprehensive-guide ">nexus url </a>
KennethReife, 2025/09/13 19:32
nexus dark <a href="https://nexusmarket.hashnode.dev/nexus-darknet-market ">nexus darknet shop </a> nexus onion <a href="https://nexusmarket.hashnode.dev/nexus-darknet-market ">nexusdarknet site link </a>
DwayneSlupt, 2025/09/13 19:47
darknet markets onion <a href="https://darkmarketslegion.com/ ">nexus official link </a> darknet site <a href="https://darkmarketgate.com/ ">darknet links </a>
DonaldDof, 2025/09/13 19:47
nexus site official link <a href="https://darkmarketgate.com/ ">dark market link </a> dark web marketplaces <a href="https://darkmarketgate.com/ ">darknet markets 2025 </a>
JamesHot, 2025/09/13 19:47
darknet market <a href="https://darkmarketsgate.com/ ">darknet market list </a> dark web markets <a href="https://darkmarketgate.com/ ">dark markets 2025 </a>
Brianprito, 2025/09/13 19:47
nexus shop url <a href="https://darknetmarketseasy.com/ ">nexus link </a> nexusdarknet site link <a href="https://darkmarketgate.com/ ">bitcoin dark web </a>
Richardlig, 2025/09/13 19:49
nexus site official link <a href="https://nexusmarket.hashnode.dev/exploring-the-darknet-market-nexus-the-hidden-online-economy ">nexus darknet shop </a> nexus darknet market url <a href="https://nexusmarket.hashnode.dev/exploring-the-darknet-market-nexus-the-hidden-online-economy ">nexus darknet access </a>
Angeloskemi, 2025/09/13 19:50
nexus market <a href="https://nexusmarket.hashnode.dev/understanding-darknet-market-links-your-guide-to-the-hidden-online-economy ">nexus darknet market url </a> nexus onion link <a href="https://nexusmarket.hashnode.dev/understanding-darknet-market-links-your-guide-to-the-hidden-online-economy ">nexus onion link </a>
Edwardvex, 2025/09/13 19:50
nexus darknet access <a href="https://nexusmarket.hashnode.dev/nexus-darknet-market-link-a-gateway-to-the-hidden-online-economy ">nexus shop url </a> nexus darknet url <a href="https://nexusmarket.hashnode.dev ">nexus darknet </a>
Charlesnip, 2025/09/13 19:58
nexus darknet market url <a href="https://nexusmarket.hashnode.dev/exploring-the-nexus-dark-web-market-a-comprehensive-guide ">nexus market link </a> nexus market darknet <a href="https://nexusmarket.hashnode.dev/understanding-nexus-darknet-a-deep-dive-into-the-hidden-online-marketplace ">nexus darknet access </a>
Angeloskemi, 2025/09/13 20:04
nexus darknet market url <a href="https://nexusmarket.hashnode.dev/understanding-darknet-market-links-your-guide-to-the-hidden-online-economy ">nexus shop </a> nexus shop <a href="https://nexusmarket.hashnode.dev/understanding-darknet-market-links-your-guide-to-the-hidden-online-economy ">nexus darknet </a>
Richardlig, 2025/09/13 20:04
nexus site official link <a href="https://nexusmarket.hashnode.dev/exploring-the-darknet-market-nexus-the-hidden-online-economy ">nexus darknet </a> nexus darknet <a href="https://nexusmarket.hashnode.dev/exploring-the-darknet-market-nexus-the-hidden-online-economy ">nexus market link </a>
Edwardvex, 2025/09/13 20:04
nexus official link <a href="https://nexusmarket.hashnode.dev/nexus-darknet-market-link-a-gateway-to-the-hidden-online-economy ">nexus onion mirror </a> nexus shop <a href="https://nexusmarket.hashnode.dev ">nexus market darknet </a>
DwayneSlupt, 2025/09/13 20:11
nexus site official link <a href="https://darkmarketslegion.com/ ">nexus market </a> bitcoin dark web <a href="https://darkmarketgate.com/ ">nexus darknet shop </a>
JamesHot, 2025/09/13 20:11
darkmarket url <a href="https://darkmarketsgate.com/ ">nexus darknet shop </a> nexus darknet site <a href="https://darkmarketgate.com/ ">dark web marketplaces </a>
DonaldDof, 2025/09/13 20:11
darkmarket 2025 <a href="https://darkmarketgate.com/ ">darknet markets links </a> dark market onion <a href="https://darkmarketgate.com/ ">nexus darknet access </a>
Brianprito, 2025/09/13 20:11
nexus darknet market <a href="https://darknetmarketseasy.com/ ">dark web market urls </a> darknet markets url <a href="https://darkmarketgate.com/ ">nexus onion link </a>
Robertvaw, 2025/09/13 20:11
nexus onion link <a href="https://darkmarketlegion.com/ ">dark web markets </a> dark web markets <a href="https://darkmarketgate.com/ ">nexus shop </a>
KennethReife, 2025/09/13 20:18
nexus darknet <a href="https://nexusmarket.hashnode.dev/exploring-the-nexus-darknet-link-your-gateway-to-the-hidden-online-economy ">nexus market darknet </a> nexus darknet access <a href="https://nexusmarket.hashnode.dev/exploring-the-nexus-darknet-link-your-gateway-to-the-hidden-online-economy ">nexus market url </a>
Charlesnip, 2025/09/13 20:18
nexus market darknet <a href="https://nexusmarket.hashnode.dev/exploring-the-nexus-dark-web-market-a-comprehensive-guide ">nexus dark </a> nexus darknet link <a href="https://nexusmarket.hashnode.dev/understanding-nexus-darknet-a-deep-dive-into-the-hidden-online-marketplace ">nexus onion mirror </a>
Richardlig, 2025/09/13 20:24
nexus official link <a href="https://nexusmarket.hashnode.dev/exploring-the-darknet-market-nexus-the-hidden-online-economy ">nexus link </a> nexus site official link <a href="https://nexusmarket.hashnode.dev/exploring-the-darknet-market-nexus-the-hidden-online-economy ">nexus onion link </a>
Angeloskemi, 2025/09/13 20:24
nexus onion link <a href="https://nexusmarket.hashnode.dev/understanding-darknet-market-links-your-guide-to-the-hidden-online-economy ">nexus onion </a> nexus darknet url <a href="https://nexusmarket.hashnode.dev/understanding-darknet-market-links-your-guide-to-the-hidden-online-economy ">nexus darknet </a>
Edwardvex, 2025/09/13 20:24
nexus darknet access <a href="https://nexusmarket.hashnode.dev ">nexus official link </a> nexus darknet shop <a href="https://nexusmarket.hashnode.dev ">nexus market </a>
Brianprito, 2025/09/13 20:27
darknet markets 2025 <a href="https://darknetmarketseasy.com/ ">dark market 2025 </a> darknet market lists <a href="https://darkmarketgate.com/ ">darkmarket url </a>
JamesHot, 2025/09/13 20:27
darknet markets url <a href="https://darkmarketsgate.com/ ">darknet market links </a> dark web markets <a href="https://darkmarketgate.com/ ">nexus darknet </a>
DwayneSlupt, 2025/09/13 20:27
darknet drug market <a href="https://darkmarketslegion.com/ ">darkmarket </a> best darknet markets <a href="https://darkmarketgate.com/ ">dark markets </a>
Robertvaw, 2025/09/13 20:27
nexus market link <a href="https://darkmarketlegion.com/ ">darknet drug links </a> nexus shop <a href="https://darkmarketgate.com/ ">darknet drugs </a>
DonaldDof, 2025/09/13 20:27
darknet market <a href="https://darkmarketgate.com/ ">darkmarket link </a> nexus market url <a href="https://darkmarketgate.com/ ">dark markets 2025 </a>
Angeloskemi, 2025/09/13 20:39
nexus onion <a href="https://nexusmarket.hashnode.dev/understanding-darknet-market-links-your-guide-to-the-hidden-online-economy ">nexusdarknet site link </a> nexus official site <a href="https://nexusmarket.hashnode.dev/understanding-darknet-market-links-your-guide-to-the-hidden-online-economy ">nexus shop url </a>
Richardlig, 2025/09/13 20:39
nexus url <a href="https://nexusmarket.hashnode.dev/exploring-the-darknet-market-nexus-the-hidden-online-economy ">nexus darknet market </a> nexus official site <a href="https://nexusmarket.hashnode.dev/exploring-the-darknet-market-nexus-the-hidden-online-economy ">nexus market </a>
Edwardvex, 2025/09/13 20:39
nexus market <a href="https://nexusmarket.hashnode.dev/nexus-darknet-market-link-a-gateway-to-the-hidden-online-economy ">nexus darknet shop </a> nexus url <a href="https://nexusmarket.hashnode.dev/nexus-darknet-market-link-a-gateway-to-the-hidden-online-economy ">nexus market darknet </a>
KennethReife, 2025/09/13 20:45
nexus market link <a href="https://nexusmarket.hashnode.dev/nexus-darknet-market ">nexus shop url </a> nexus link <a href="https://nexusmarket.hashnode.dev/exploring-the-nexus-darknet-link-your-gateway-to-the-hidden-online-economy ">nexus market darknet </a>
Charlesnip, 2025/09/13 20:45
nexus market url <a href="https://nexusmarket.hashnode.dev/exploring-the-nexus-dark-web-market-a-comprehensive-guide ">nexusdarknet site link </a> nexus onion <a href="https://nexusmarket.hashnode.dev/exploring-the-nexus-dark-web-market-a-comprehensive-guide ">nexus darknet link </a>
DwayneSlupt, 2025/09/13 20:50
darknet sites <a href="https://darkmarketslegion.com/ ">nexus shop </a> nexus darknet url <a href="https://darkmarketgate.com/ ">nexus site official link </a>
JamesHot, 2025/09/13 20:50
dark web market <a href="https://darkmarketsgate.com/ ">darknet links </a> nexus link <a href="https://darkmarketgate.com/ ">dark web market </a>
DonaldDof, 2025/09/13 20:50
darknet market lists <a href="https://darkmarketgate.com/ ">dark web market links </a> dark market list <a href="https://darkmarketgate.com/ ">best darknet markets </a>
Robertvaw, 2025/09/13 20:50
nexus market link <a href="https://darkmarketlegion.com/ ">nexus darknet market </a> nexus market link <a href="https://darkmarketgate.com/ ">darknet marketplace </a>
Brianprito, 2025/09/13 20:50
nexus shop <a href="https://darknetmarketseasy.com/ ">nexus darknet url </a> darknet drug market <a href="https://darkmarketgate.com/ ">darknet markets url </a>
Angeloskemi, 2025/09/13 20:59
nexus market darknet <a href="https://nexusmarket.hashnode.dev/understanding-darknet-market-links-your-guide-to-the-hidden-online-economy ">nexus market darknet </a> nexus shop <a href="https://nexusmarket.hashnode.dev/understanding-darknet-market-links-your-guide-to-the-hidden-online-economy ">nexus link </a>
Richardlig, 2025/09/13 20:59
nexus darknet access <a href="https://nexusmarket.hashnode.dev/exploring-the-darknet-market-nexus-the-hidden-online-economy ">nexus dark </a> nexus darknet <a href="https://nexusmarket.hashnode.dev/exploring-the-darknet-market-nexus-the-hidden-online-economy ">nexus market </a>
Edwardvex, 2025/09/13 20:59
nexus onion mirror <a href="https://nexusmarket.hashnode.dev ">nexus market darknet </a> nexus darknet site <a href="https://nexusmarket.hashnode.dev ">nexus market darknet </a>
KennethReife, 2025/09/13 21:04
nexus shop <a href="https://nexusmarket.hashnode.dev/nexus-darknet-market ">nexus market darknet </a> nexus shop <a href="https://nexusmarket.hashnode.dev/nexus-darknet-market ">nexus darknet shop </a>
Charlesnip, 2025/09/13 21:04
nexus onion <a href="https://nexusmarket.hashnode.dev/exploring-the-nexus-dark-web-market-a-comprehensive-guide ">nexus link </a> nexus shop <a href="https://nexusmarket.hashnode.dev/exploring-the-nexus-dark-web-market-a-comprehensive-guide ">nexus darknet market url </a>
JamesHot, 2025/09/13 21:05
dark web market urls <a href="https://darkmarketsgate.com/ ">darknet market </a> nexus market link <a href="https://darkmarketgate.com/ ">nexus link </a>
DwayneSlupt, 2025/09/13 21:05
dark markets 2025 <a href="https://darkmarketslegion.com/ ">darknet markets links </a> dark markets 2025 <a href="https://darkmarketgate.com/ ">nexus darknet url </a>
Brianprito, 2025/09/13 21:05
dark web link <a href="https://darknetmarketseasy.com/ ">dark markets 2025 </a> dark market url <a href="https://darkmarketgate.com/ ">nexus darknet url </a>
DonaldDof, 2025/09/13 21:05
dark web markets <a href="https://darkmarketgate.com/ ">dark web link </a> onion dark website <a href="https://darkmarketgate.com/ ">dark web sites </a>
Edwardvex, 2025/09/13 21:14
nexus official site <a href="https://nexusmarket.hashnode.dev ">nexus onion mirror </a> nexus darknet shop <a href="https://nexusmarket.hashnode.dev ">nexus darknet market </a>
Angeloskemi, 2025/09/13 21:14
nexus darknet url <a href="https://nexusmarket.hashnode.dev/understanding-darknet-market-links-your-guide-to-the-hidden-online-economy ">nexus site official link </a> nexus darknet market <a href="https://nexusmarket.hashnode.dev/understanding-darknet-market-links-your-guide-to-the-hidden-online-economy ">nexus market </a>
JamesHot, 2025/09/13 21:28
dark web market list <a href="https://darkmarketsgate.com/ ">darknet market links </a> dark market url <a href="https://darkmarketgate.com/ ">darknet drug links </a>
DonaldDof, 2025/09/13 21:28
dark market url <a href="https://darkmarketgate.com/ ">darknet market list </a> darknet links <a href="https://darkmarketgate.com/ ">darknet drug store </a>
Brianprito, 2025/09/13 21:28
dark web market urls <a href="https://darknetmarketseasy.com/ ">nexus market url </a> dark markets <a href="https://darkmarketgate.com/ ">darkmarket link </a>
Robertvaw, 2025/09/13 21:28
darknet drug links <a href="https://darkmarketlegion.com/ ">dark markets </a> dark market url <a href="https://darkmarketgate.com/ ">nexus darknet market url </a>
KennethReife, 2025/09/13 21:30
nexus market darknet <a href="https://nexusmarket.hashnode.dev/exploring-the-nexus-darknet-link-your-gateway-to-the-hidden-online-economy ">nexus market url </a> nexus link <a href="https://nexusmarket.hashnode.dev/exploring-the-nexus-darknet-link-your-gateway-to-the-hidden-online-economy ">nexus shop url </a>
Charlesnip, 2025/09/13 21:31
nexus market url <a href="https://nexusmarket.hashnode.dev/exploring-the-nexus-dark-web-market-a-comprehensive-guide ">nexus darknet site </a> nexus market url <a href="https://nexusmarket.hashnode.dev/exploring-the-nexus-dark-web-market-a-comprehensive-guide ">nexus market url </a>
Edwardvex, 2025/09/13 21:34
nexus darknet market <a href="https://nexusmarket.hashnode.dev ">nexus darknet shop </a> nexus darknet market url <a href="https://nexusmarket.hashnode.dev/nexus-darknet-market-link-a-gateway-to-the-hidden-online-economy ">nexus link </a>
Richardlig, 2025/09/13 21:34
nexus darknet access <a href="https://nexusmarket.hashnode.dev/exploring-the-darknet-market-nexus-the-hidden-online-economy ">nexus darknet shop </a> nexus link <a href="https://nexusmarket.hashnode.dev/exploring-the-darknet-market-nexus-the-hidden-online-economy ">nexus darknet market url </a>
Angeloskemi, 2025/09/13 21:34
nexus market link <a href="https://nexusmarket.hashnode.dev/understanding-darknet-market-links-your-guide-to-the-hidden-online-economy ">nexus darknet shop </a> nexus onion <a href="https://nexusmarket.hashnode.dev/understanding-darknet-market-links-your-guide-to-the-hidden-online-economy ">nexus onion </a>
DonaldDof, 2025/09/13 21:45
darkmarket link <a href="https://darkmarketgate.com/ ">dark market url </a> darknet sites <a href="https://darkmarketgate.com/ ">dark web drug marketplace </a>
DwayneSlupt, 2025/09/13 21:45
nexus official site <a href="https://darkmarketslegion.com/ ">nexus shop url </a> nexus official link <a href="https://darkmarketgate.com/ ">darknet market list </a>
JamesHot, 2025/09/13 21:45
darknet market links <a href="https://darkmarketsgate.com/ ">dark market 2025 </a> nexus darknet market url <a href="https://darkmarketgate.com/ ">nexus darknet access </a>
Brianprito, 2025/09/13 21:45
dark websites <a href="https://darknetmarketseasy.com/ ">nexus darknet market </a> nexus link <a href="https://darkmarketgate.com/ ">nexus onion </a>
Richardlig, 2025/09/13 21:48
nexus darknet link <a href="https://nexusmarket.hashnode.dev/exploring-the-darknet-market-nexus-the-hidden-online-economy ">nexusdarknet site link </a> nexus market darknet <a href="https://nexusmarket.hashnode.dev/exploring-the-darknet-market-nexus-the-hidden-online-economy ">nexus site official link </a>
Angeloskemi, 2025/09/13 21:48
nexus darknet url <a href="https://nexusmarket.hashnode.dev/understanding-darknet-market-links-your-guide-to-the-hidden-online-economy ">nexus darknet market url </a> nexus market link <a href="https://nexusmarket.hashnode.dev/understanding-darknet-market-links-your-guide-to-the-hidden-online-economy ">nexus market </a>
Edwardvex, 2025/09/13 21:48
nexus onion link <a href="https://nexusmarket.hashnode.dev ">nexus darknet market </a> nexus darknet link <a href="https://nexusmarket.hashnode.dev/nexus-darknet-market-link-a-gateway-to-the-hidden-online-economy ">nexus market link </a>
KennethReife, 2025/09/13 21:50
nexus market link <a href="https://nexusmarket.hashnode.dev/nexus-darknet-market ">nexus link </a> nexus darknet shop <a href="https://nexusmarket.hashnode.dev/nexus-darknet-market ">nexus dark </a>
Charlesnip, 2025/09/13 21:50
nexus onion <a href="https://nexusmarket.hashnode.dev/understanding-nexus-darknet-a-deep-dive-into-the-hidden-online-marketplace ">nexus onion </a> nexus onion link <a href="https://nexusmarket.hashnode.dev/understanding-nexus-darknet-a-deep-dive-into-the-hidden-online-marketplace ">nexus darknet url </a>
Brianprito, 2025/09/13 22:08
darkmarket list <a href="https://darknetmarketseasy.com/ ">darknet market </a> darknet markets <a href="https://darkmarketgate.com/ ">darkmarket link </a>
DonaldDof, 2025/09/13 22:08
darknet drug market <a href="https://darkmarketgate.com/ ">nexus darknet access </a> nexus darknet shop <a href="https://darkmarketgate.com/ ">nexus darknet site </a>
JamesHot, 2025/09/13 22:08
dark websites <a href="https://darkmarketsgate.com/ ">darknet market list </a> nexus site official link <a href="https://darkmarketgate.com/ ">darknet drug store </a>
DwayneSlupt, 2025/09/13 22:08
nexus official site <a href="https://darkmarketslegion.com/ ">nexus shop url </a> nexus market <a href="https://darkmarketgate.com/ ">nexus darknet </a>
Angeloskemi, 2025/09/13 22:09
nexus market <a href="https://nexusmarket.hashnode.dev/understanding-darknet-market-links-your-guide-to-the-hidden-online-economy ">nexus dark </a> nexus darknet url <a href="https://nexusmarket.hashnode.dev/understanding-darknet-market-links-your-guide-to-the-hidden-online-economy ">nexus official link </a>
Richardlig, 2025/09/13 22:09
nexus dark <a href="https://nexusmarket.hashnode.dev/exploring-the-darknet-market-nexus-the-hidden-online-economy ">nexus darknet site </a> nexus shop <a href="https://nexusmarket.hashnode.dev/exploring-the-darknet-market-nexus-the-hidden-online-economy ">nexus market darknet </a>
KennethReife, 2025/09/13 22:16
nexus shop <a href="https://nexusmarket.hashnode.dev/exploring-the-nexus-darknet-link-your-gateway-to-the-hidden-online-economy ">nexus darknet market url </a> nexus darknet access <a href="https://nexusmarket.hashnode.dev/exploring-the-nexus-darknet-link-your-gateway-to-the-hidden-online-economy ">nexus darknet link </a>
Charlesnip, 2025/09/13 22:16
nexus site official link <a href="https://nexusmarket.hashnode.dev/understanding-nexus-darknet-a-deep-dive-into-the-hidden-online-marketplace ">nexus onion </a> nexus onion link <a href="https://nexusmarket.hashnode.dev/understanding-nexus-darknet-a-deep-dive-into-the-hidden-online-marketplace ">nexus onion link </a>
Richardlig, 2025/09/13 22:24
nexus darknet <a href="https://nexusmarket.hashnode.dev/exploring-the-darknet-market-nexus-the-hidden-online-economy ">nexus darknet market url </a> nexus onion <a href="https://nexusmarket.hashnode.dev/exploring-the-darknet-market-nexus-the-hidden-online-economy ">nexus onion link </a>
Edwardvex, 2025/09/13 22:24
nexus official site <a href="https://nexusmarket.hashnode.dev ">nexus official link </a> nexus official link <a href="https://nexusmarket.hashnode.dev/nexus-darknet-market-link-a-gateway-to-the-hidden-online-economy ">nexus dark </a>
DonaldDof, 2025/09/13 22:25
dark markets 2025 <a href="https://darkmarketgate.com/ ">nexus darknet url </a> darknet markets url <a href="https://darkmarketgate.com/ ">nexus onion </a>
DwayneSlupt, 2025/09/13 22:25
nexus darknet link <a href="https://darkmarketslegion.com/ ">nexus shop </a> darkmarkets <a href="https://darkmarketgate.com/ ">darknet markets onion </a>
JamesHot, 2025/09/13 22:25
darknet markets url <a href="https://darkmarketsgate.com/ ">nexus shop </a> dark markets 2025 <a href="https://darkmarketgate.com/ ">nexus site official link </a>
Brianprito, 2025/09/13 22:25
dark web link <a href="https://darknetmarketseasy.com/ ">darknet sites </a> dark market url <a href="https://darkmarketgate.com/ ">dark market 2025 </a>
KennethReife, 2025/09/13 22:37
nexus shop <a href="https://nexusmarket.hashnode.dev/exploring-the-nexus-darknet-link-your-gateway-to-the-hidden-online-economy ">nexus darknet url </a> nexus darknet shop <a href="https://nexusmarket.hashnode.dev/nexus-darknet-market ">nexus onion mirror </a>
Edwardvex, 2025/09/13 22:46
nexus market darknet <a href="https://nexusmarket.hashnode.dev ">nexus official link </a> nexus darknet url <a href="https://nexusmarket.hashnode.dev ">nexus darknet access </a>
Richardlig, 2025/09/13 22:46
nexus market darknet <a href="https://nexusmarket.hashnode.dev/exploring-the-darknet-market-nexus-the-hidden-online-economy ">nexus darknet access </a> nexus darknet shop <a href="https://nexusmarket.hashnode.dev/exploring-the-darknet-market-nexus-the-hidden-online-economy ">nexus onion link </a>
Angeloskemi, 2025/09/13 22:46
nexus darknet market url <a href="https://nexusmarket.hashnode.dev/understanding-darknet-market-links-your-guide-to-the-hidden-online-economy ">nexus onion link </a> nexus shop url <a href="https://nexusmarket.hashnode.dev/understanding-darknet-market-links-your-guide-to-the-hidden-online-economy ">nexus dark </a>
DonaldDof, 2025/09/13 22:48
nexus shop url <a href="https://darkmarketgate.com/ ">darkmarket link </a> nexus darknet url <a href="https://darkmarketgate.com/ ">darkmarket link </a>
DwayneSlupt, 2025/09/13 22:48
nexus darknet site <a href="https://darkmarketslegion.com/ ">darknet sites </a> dark websites <a href="https://darkmarketgate.com/ ">darknet markets onion address </a>
Robertvaw, 2025/09/13 22:48
dark web markets <a href="https://darkmarketlegion.com/ ">darknet markets onion </a> darknet drugs <a href="https://darkmarketgate.com/ ">nexus onion mirror </a>
Brianprito, 2025/09/13 22:48
darknet markets links <a href="https://darknetmarketseasy.com/ ">dark market url </a> darknet marketplace <a href="https://darkmarketgate.com/ ">nexus url </a>
JamesHot, 2025/09/13 22:48
dark market url <a href="https://darkmarketsgate.com/ ">dark web markets </a> darknet drug store <a href="https://darkmarketgate.com/ ">dark market onion </a>
Edwardvex, 2025/09/13 23:00
nexus shop <a href="https://nexusmarket.hashnode.dev ">nexus dark </a> nexus darknet access <a href="https://nexusmarket.hashnode.dev/nexus-darknet-market-link-a-gateway-to-the-hidden-online-economy ">nexus darknet site </a>
Angeloskemi, 2025/09/13 23:00
nexus official link <a href="https://nexusmarket.hashnode.dev/understanding-darknet-market-links-your-guide-to-the-hidden-online-economy ">nexus darknet site </a> nexus market <a href="https://nexusmarket.hashnode.dev/understanding-darknet-market-links-your-guide-to-the-hidden-online-economy ">nexus official site </a>
Richardlig, 2025/09/13 23:00
nexus shop <a href="https://nexusmarket.hashnode.dev/exploring-the-darknet-market-nexus-the-hidden-online-economy ">nexus darknet site </a> nexus market <a href="https://nexusmarket.hashnode.dev/exploring-the-darknet-market-nexus-the-hidden-online-economy ">nexus darknet link </a>
KennethReife, 2025/09/13 23:02
nexus onion mirror <a href="https://nexusmarket.hashnode.dev/nexus-darknet-market ">nexus darknet shop </a> nexus darknet link <a href="https://nexusmarket.hashnode.dev/exploring-the-nexus-darknet-link-your-gateway-to-the-hidden-online-economy ">nexus darknet market url </a>
Charlesnip, 2025/09/13 23:02
nexus dark <a href="https://nexusmarket.hashnode.dev/exploring-the-nexus-dark-web-market-a-comprehensive-guide ">nexus link </a> nexusdarknet site link <a href="https://nexusmarket.hashnode.dev/understanding-nexus-darknet-a-deep-dive-into-the-hidden-online-marketplace ">nexus official link </a>
JamesHot, 2025/09/13 23:04
darknet websites <a href="https://darkmarketsgate.com/ ">darknet market lists </a> darknet markets url <a href="https://darkmarketgate.com/ ">best darknet markets </a>
DonaldDof, 2025/09/13 23:04
nexus site official link <a href="https://darkmarketgate.com/ ">nexus url </a> darknet links <a href="https://darkmarketgate.com/ ">dark markets </a>
DwayneSlupt, 2025/09/13 23:04
dark market list <a href="https://darkmarketslegion.com/ ">darknet markets onion address </a> nexus darknet site <a href="https://darkmarketgate.com/ ">best darknet markets </a>
Robertvaw, 2025/09/13 23:04
dark web sites <a href="https://darkmarketlegion.com/ ">darknet market lists </a> nexus darknet market url <a href="https://darkmarketgate.com/ ">darknet market list </a>
Brianprito, 2025/09/13 23:04
nexus market <a href="https://darknetmarketseasy.com/ ">darkmarket </a> darkmarket 2025 <a href="https://darkmarketgate.com/ ">darknet drug links </a>
Enter your comment:
If you can't read the letters on the image, download this .wav file to get them read to you.
 
hcistats/logisticregression.txt · Last modified: 2014/08/14 05:27 by Koji Yatani

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki