photo

the cyclist


Alden Scientific

Last seen: 1일 전 2011년부터 활동

Followers: 4   Following: 0

메시지

Head of Modeling and Statistics at Alden Scientific. Obsessive runner. Professional Interests: Predictive modeling, statistics. (I don't respond to email via author page, but will usually look at a question if you send me a link to it.)

Programming Languages:
Python, R, MATLAB, SQL
Spoken Languages:
English
Pronouns:
He/him

통계

All
MATLAB Answers

49 질문
5,313 답변

File Exchange

1 파일

Cody

24 문제
303 답안

순위
15
of 298,572

평판
15,594

참여
49 질문
5,313 답변

답변 채택
73.47%

획득한 표
2,945

순위
10,328 of 20,619

평판
58

평균 평점
0.00

참여
1 파일

다운로드 수
5

ALL TIME 다운로드 수
585

순위
514
of 161,704

참여
24 문제
303 답안

점수
3,493

배지 수
10

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Treasure Hunt Participant
  • Scavenger Finisher
  • Editor's pick for Answers
  • Master
  • Introduction to MATLAB Master
  • Community Group Solver
  • First Review
  • First Submission
  • Thankful Level 5
  • 36 Month Streak
  • Revival Level 3
  • Knowledgeable Level 5

배지 보기

Feeds

보기 기준

답변 있음
Would kfold loss values vary if cross validation is performed after model training?
The predictions will be identical, as long as you use the same fold assignments: % Set seed, for reproducibility rng default ...

5일 전 | 0

| 수락됨

답변 있음
How to create a pdf from the histogram
You can use the histogram function to create and plot a histogram. You can use the ksdensity function to estimate a non-paramet...

10일 전 | 1

| 수락됨

답변 있음
More unexpected behavior multiplying an array with a double
Using the simpler example that @Stephen23, posted S(1).x = pi; S(2).x = sqrt(2); S.x Note that S.x is not a double array. ...

17일 전 | 1

| 수락됨

답변 있음
How does one obtain the covariance matrix for the fixed effects from fitting a mixed effect model using fitlme or fitlmematrix?
A LinearMixedModel object lme has a CoefficientCovariance property, which you can obtain with lme.CoefficientCovariance This i...

26일 전 | 0

| 수락됨

답변 있음
Hyperparameter optimization fitrnet not working
Per the documentation for fitrnet ... "You can use an array ResponseVarName to specify multiple response variables. (since R202...

대략 1개월 전 | 0

| 수락됨

답변 있음
Shapley based feature selection
The Shapley values don't require the class labels (i.e. the actual responses) to determine feature importance. The Shapley valu...

2개월 전 | 1

| 수락됨

문제를 풀었습니다


Project Euler: Problem 4, Palindromic numbers
A palindromic number reads the same both ways. The largest palindrome made from the product of two 2-digit numbers is 9009 = 91 ...

3개월 전

문제를 풀었습니다


Project Euler: Problem 3, Largest prime factor
The prime factors of 13195 are 5, 7, 13 and 29. What is the largest prime factor of the number being input, input might be ui...

3개월 전

문제를 풀었습니다


Solve a System of Linear Equations
Example: If a system of linear equations in x₁ and x₂ is: 2x₁ + x₂ = 2 x₁ - 4 x₂ = 3 Then the coefficient matrix (A) is: 2 ...

3개월 전

문제를 풀었습니다


Verify Law of Large Numbers
If a large number of fair N-sided dice are rolled, the average of the simulated rolls is likely to be close to the mean of 1,2,....

3개월 전

문제를 풀었습니다


Word Counting and Indexing
You are given a list of strings, each being a list of words divided by spaces. Break the strings into words, then return a maste...

3개월 전

문제를 풀었습니다


Magic is simple (for beginners)
Determine for a magic square of order n, the magic sum m. For example m=15 for a magic square of order 3.

3개월 전

문제를 풀었습니다


Rotate Matrix @180 degree
Rotate Matrix @180 degree Example A=[8 1 6; 3 5 7; 4 9 2], then answer would be [2 9 4;...

3개월 전

문제를 풀었습니다


Converts numbers into characters
Converts numbers into characters

3개월 전

문제를 풀었습니다


Find the max element of the array
Find the max element of the array

3개월 전

문제를 풀었습니다


Square root
Given x (a matrix), give back another matrix, where all the elements are the square roots of x's elements.

3개월 전

문제를 풀었습니다


Calculate the average value of the elements in the array
Calculate the average value of the elements in the array

3개월 전

문제를 풀었습니다


to the 2 all elements
to the 2 all elements

3개월 전

문제를 풀었습니다


the average value of the elements
Calculate the average value of the elements in the array

3개월 전

문제를 풀었습니다


Double all elements in the array
Duplicate all elements in the array

3개월 전

문제를 풀었습니다


calculate the length of matrix
input 1 array, calculate the length

3개월 전

문제를 풀었습니다


Draw a '0' in a one matrix!

3개월 전

문제를 풀었습니다


Length of the hypotenuse
Given short sides of lengths a and b, calculate the length c of the hypotenuse of the right-angled triangle. <<https://i.imgu...

3개월 전

문제를 풀었습니다


Maximum value in a matrix
Find the maximum value in the given matrix. For example, if A = [1 2 3; 4 7 8; 0 9 1]; then the answer is 9.

3개월 전

문제를 풀었습니다


Return area of square
Side of square=input=a Area=output=b

3개월 전

문제를 풀었습니다


Convert from Fahrenheit to Celsius
Given an input vector F containing temperature values in Fahrenheit, return an output vector C that contains the values in Celsi...

3개월 전

문제를 풀었습니다


Calculate Amount of Cake Frosting
Given two input variables r and h, which stand for the radius and height of a cake, calculate the surface area of the cake you n...

3개월 전

문제를 풀었습니다


Find the Oldest Person in a Room
Given two input vectors: * |name| - user last names * |age| - corresponding age of the person Return the name of the ol...

3개월 전

답변 있음
Preserving More Decimal Places When Importing Excel Files with readtable in MATLAB
All decimal places are retained for me ... % Change the format format long % Read the file r = readtable("Lab.xlsx"); % H...

4개월 전 | 0

답변 있음
How to get MPE (Mean Percentage Error) with plsregress
The documentation doesn't seem to indicate any way to change the metric that is optimized. (This is unsurprising to me.) I can ...

4개월 전 | 0

| 수락됨

더 보기