Skip to main content

Blog

Learn About Our Meetup

5000+ Members

MEETUPS

LEARN, CONNECT, SHARE

Join our meetup, learn, connect, share, and get to know your Toronto AI community. 

JOB POSTINGS

INDEED POSTINGS

Browse through the latest deep learning, ai, machine learning postings from Indeed for the GTA.

CONTACT

CONNECT WITH US

Are you looking to sponsor space, be a speaker, or volunteer, feel free to give us a shout.

[P] Help with PLS in R

Hello r/MachineLearning ~

Struggling Noob here. I have been asked to create a pls model on a dataset with 200 predictor variables and 1 response variable(y below). I have only 16 observations. I know the n is small and predictors are high, but these are outside of my control.

I have made a model, with the code below, but I have little confidence it is right. I don’t know how to properly test it. The summary says after 2 components, 95% is explained.

My Questions:

  1. How do I see what variables are in those components.
  2. How do I test the model pls.fit or determine the R^2

Thank you so much for any help. If anyone has strong knowledge here, I’d be happy to pay for a quick tutoring session.

pls.fit <- plsr(df$y~.,data = df, scale = TRUE,validation = "LOO")

summary(pls.fit)

validationplot(pls.fit)

submitted by /u/reasonablemanzach
[link] [comments]