Join our meetup, learn, connect, share, and get to know your Toronto AI community.
Browse through the latest deep learning, ai, machine learning postings from Indeed for the GTA.
Are you looking to sponsor space, be a speaker, or volunteer, feel free to give us a shout.
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:
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]