0

I am working on a project where I am given a round 200 readings/featured columns and based on those reading there are some attributes about 60(columns) of them ranked from 0-5. now I have about 1000 rows from the featured readings and only 100 from the attributes. I am looking to use a model that I can train the data with the 100 attributes filled out and then predict on the remaining 900 attributes rows from the featured data given.

Are there are any recommendations for the best approach or even better a similar project I can reference?

desertnaut
  • 57,590
  • 26
  • 140
  • 166
Saulti23
  • 23
  • 3
  • I don't think you'll find an answer to a question like that here. https://stackoverflow.com/ is for programming queries and not recommendations, you can try your luck at https://datascience.stackexchange.com/ – The Singularity Sep 25 '22 at 02:15

1 Answers1

0

I was able to figure it out I just ran a loop to train on each dependant var separately. if you have a big dataset like 300,000 using random forest take about 2.5- 3 seconds per dependant var and then used the missing data as a df to find predictions and append. if you need more explanation let me know

Saulti23
  • 23
  • 3
  • Your answer could be improved with additional supporting information. Please [edit] to add further details, such as citations or documentation, so that others can confirm that your answer is correct. You can find more information on how to write good answers [in the help center](/help/how-to-answer). – Community Sep 30 '22 at 09:19