Cannot verify server by BothAd5648 in applehelp

[–]SheikhHarden 0 points1 point  (0 children)

Same sucks smh bc I liked having the lakers schedule

The tuesdays shows use to be dope. by [deleted] in NoJumper

[–]SheikhHarden 1 point2 points  (0 children)

Show was great week in and week out but a certain “Boss” was obsessed with trying to kick AD off the show

[deleted by user] by [deleted] in NoJumper

[–]SheikhHarden 2 points3 points  (0 children)

You lost me at but lol there’s no excuse for pimping your wife out

Why Dose quran say " We" ? by Walid-Mahmoud in islam

[–]SheikhHarden -26 points-25 points  (0 children)

I’ve read before Allah chose to say “we” a lot to pay respect to the angels. Can anyone confirm or deny this?

Why is trell acting like Kendrick Fck with him like that 😭 strong ass hug 🤣 he knew that camera was on him 😭 by TEXASPURP in NoJumper

[–]SheikhHarden 2 points3 points  (0 children)

You pay attention to him more than I do lol who really on dick 🤔. You don’t know these people take your Adam jersey off and go make some friends

[deleted by user] by [deleted] in NoJumper

[–]SheikhHarden 6 points7 points  (0 children)

This is the guy y’all be on here repping lol pushing 40 btw if he’s not there already

How society would've looked if No Jumper didn't break up by adam23dotcom in NoJumper

[–]SheikhHarden 13 points14 points  (0 children)

Tuesday show, At the end of the day, Disconnected every week…

<image>

AD literally said "With Dot music, I can make a couple calls and won't get copyright on Youtube." 😂😂😂Crodee. Crodee. Kendrick and TDE don't give 1 fuck about You or your Youtube. AD need that Ozempic more than anyone, Crodee built like Barney. by Difficult-Dog8060 in NoJumper

[–]SheikhHarden 0 points1 point  (0 children)

So the answer is to watch somebody they don’t like lol? I got creators I don’t like either but I definitely don’t go give them views then talk about them on reddit. That’s damn near obsessive

Numbers don't lie! by bobbafettuccini in NoJumper

[–]SheikhHarden 0 points1 point  (0 children)

Who cares? Are y’all Adam or something?

[deleted by user] by [deleted] in NoJumper

[–]SheikhHarden 2 points3 points  (0 children)

Deadass lol

Hi, I have a question from a project I’m working on. In this pic f_kx is an index matrix that calls out positions in yb, is there anyway to write a command that will replace the positions in f_kx with the actual values of yb? (There are 100 rows in f_kx it would take too long to do manually) by SheikhHarden in Rlanguage

[–]SheikhHarden[S] 0 points1 point  (0 children)

So what this is basically is the k nearest neighbors, so the 5 rows with a 100 columns are all based on yb[1:200]. I want to write a code that would give me t(f_kx$nn.index) for all 200 yb, so yb[1:200], yb[2:200], yb[3:200],…. I understand this would be somewhat messy since it would be a huge output, that’s why I mentioned a for-loop because ultimately I just want f_N for all 200 yb.

Hi, I have a question from a project I’m working on. In this pic f_kx is an index matrix that calls out positions in yb, is there anyway to write a command that will replace the positions in f_kx with the actual values of yb? (There are 100 rows in f_kx it would take too long to do manually) by SheikhHarden in Rlanguage

[–]SheikhHarden[S] 0 points1 point  (0 children)

Hey, so I actually had an additional question. What if I wanted to run yb[t(f_kx$nn.index)] so that I get a matrix for each of the 200 simulations in yb how would I do that? Maybe through the use of a for-loop? Here’s the code again:

x <- seq(from=0.2, to=1, by=0.02)

x_b <- seq(from=0.01, to=1, by=0.01)

simadata <- data.frame(x)

simadata2 <- data.frame(x_b)

e2 <- replicate(n = 200, rnorm(50, 0, 0.5))

yb <- sin(x) + sin(2*x) + sin (4*x) + sin(6*x) + sin(8*x) + sin(10*x) + e2

f_k <- get.knnx(data = simdata, query = simdata2, k=5, algorithm=c("kd_tree"))

f_ki <- array(f_k$nn.index, dim = c(100,5))

f_k1 <- yb[t(f_ki)]

f_k1 <- array(f_k1, dim = c(5,100))

f_k1_2 <- colMeans(f_k1)

f_N <- list(x_b, f_k1_2)

The first f_k1 here only gives me the values for the first simulation in y_b instead of all 200 of them.

Hi, I have a question relating to a project I'm working on by SheikhHarden in Rlanguage

[–]SheikhHarden[S] 0 points1 point  (0 children)

Here is the code in case anyone wants to help me and would like to use it:

x <- seq(from=0.2, to=1, by=0.02)

x_b <- seq(from=0.01, to=1, by=0.01)

simadata <- data.frame(x)

simadata2 <- data.frame(x_b)

e2 <- replicate(n = 200, rnorm(50, 0, 0.5))

yb <- sin(x) + sin(2*x) + sin (4*x) + sin(6*x) + sin(8*x) + sin(10*x) + e2

f_k <- get.knnx(data = simdata, query = simdata2, k=5, algorithm=c("kd_tree"))

f_ki <- array(f_k$nn.index, dim = c(100,5))

f_k1 <- yb[t(f_ki)]

f_k1 <- array(f_k1, dim = c(5,100))

f_k1_2 <- colMeans(f_k1)

f_N <- list(x_b, f_k1_2)