Message from @micbwilli

Discord ID: 536422763640913927


2018-10-23 03:49:41 UTC  

@GDoctor I'm not sure I understand the assignment. Since there's 3 months in a quarter then wouldn't the monthly average of a quarter be the quarterly costs divided by 3?

2018-10-23 16:36:19 UTC  

Anyone know how to transform a multivariate regression so that you can do a t test of B1 + 2B2 = 0 and B1 + B2 = 1? I already got it for B1 = B2

2018-10-23 16:37:10 UTC  

Base regression formula is Y = B0 + B1X1 + B2X2 + error

2018-10-23 17:18:03 UTC  

<@&387091385075105804> ^^^

2018-11-20 06:14:15 UTC  

Can someone take a look at a Java assignment for me?

2018-11-20 06:14:25 UTC  

<@&435155896780324864>

2018-11-20 06:14:58 UTC  

<@&387091385075105804>

2018-11-20 06:14:59 UTC  

I'm supposed to write a get method for a hashtable. It seems way too simple so I'm wondering if I'm missing something.

2018-11-20 06:15:33 UTC  

https://cdn.discordapp.com/attachments/387060078433271808/514322892444401705/Hashtable.java

2018-11-20 06:15:38 UTC  

https://cdn.discordapp.com/attachments/387060078433271808/514322913684488223/CSCD300hw7.docx

2018-11-20 06:16:10 UTC  

Are get methods for hashtables really that complex that this warrants an entire assignment?

2018-11-20 06:16:20 UTC  

Or am I overthinking it and this is actually really easy?

2018-11-20 19:03:51 UTC  

@Jacob In the future can you put this stuff into pastebin?

2018-11-20 19:33:44 UTC  

Yes

2018-12-25 17:05:49 UTC  

Jacob, you posted an essay about immigration a while back. I just read it recently and I have some feedback to help you improve your writing. I was thinking we could go through it via audio, or if you prefer, I can write it out.

2018-12-25 17:33:06 UTC  

Yes, I'll find some time

2019-01-20 00:34:55 UTC  

Can anyone explain how to create a cout statement in C++ that'll print a number array each time it's sorted?

2019-01-20 00:35:22 UTC  

@ThisIsChris perhaps?

2019-01-20 05:51:17 UTC  

<@&387091385075105804> ^^^

2019-01-20 05:51:49 UTC  

@GDoctor You want the array printed after sorting or before sorting?

2019-01-20 05:52:33 UTC  

I'm sad that my skills are never needed when I see the AE call. It's never something I have experience with. 😟

2019-01-20 05:59:26 UTC  

@micbwilli what are some of the topics you like?

2019-01-20 06:00:38 UTC  

Biology and Chemistry are mostly what I know.

2019-01-20 06:51:04 UTC  

@ThisIsChris the assignment calls for output after each "pass" through an array during a sort, (any kind of sort can be used).

2019-01-20 06:54:17 UTC  

@GDoctor OK that makes sense! what code do you have so far?

2019-01-20 06:58:53 UTC  

Not much, just the boilerplate #include, main function and the array initialized. I jist wanna know how to get it to print after each pass and not just after sorting is done.

2019-01-20 07:13:43 UTC  

@GDoctor can you paste the code? put it between three back ticks both above and below the code:
```python
x = 3
print(x)
```

2019-01-20 07:15:24 UTC  

https://cdn.discordapp.com/attachments/387060078433271808/536443614822400028/Screen_Shot_2019-01-20_at_2.15.10_AM.png

2019-01-20 07:21:03 UTC  

#include<iostream>

using namespace std;

int main()
{
const int NUMINTS = 20;
int randomNumbers[NUMINTS] = { 24, 9, 88, 15, 22, 38, 10, 76, 62, 54,
51, 39, 10, 13, 66, 89, 99, 100, 33, 75, };
}

2019-01-20 07:21:19 UTC  

```cpp
#include<iostream>

using namespace std;

int main()
{
const int NUMINTS = 20;
int randomNumbers[NUMINTS] = { 24, 9, 88, 15, 22, 38, 10, 76, 62, 54,
51, 39, 10, 13, 66, 89, 99, 100, 33, 75, };
}
```

2019-02-14 01:26:18 UTC  

Can anyone help with a bit of statistics? Here's the problem: if P(A|B) = 0.7 and P(A'|B') = 0.3, are A and B independent or dependent? I'm not sure if I should use Baye's Theorem or something else to relate the two statements <@&387091385075105804>

2019-02-14 01:32:36 UTC  

@Jakob-NY My first thought here is that P(A'|B') = 0.3 means that P(A|B') = 0.7 since P(A|B') = 1 - P(A'|B')

2019-02-14 01:33:02 UTC  

Oh gotta go dig deep in the textbooks for this

2019-02-14 01:33:05 UTC  

So P(A|B) = P(A|B')

2019-02-14 01:33:19 UTC  

Does that mean they are independent? Not sure...

2019-02-14 01:34:50 UTC  

Thanks! That definitely makes sense. The definition of independence I'm working with is that if P(A|B) = P(A) and P(B|A) = P(B), then they're independent. But I think I can figure it out from what you helped with