I am trying to build a regression model for big data with 220 variables. The 220 variables have binary values with values as zero and one. Some variables are correlated (not highly correlated). Also, some of the variables have 60% or more of their data as zero values. The zeros are not an indication of missing values, they are just values.
My main goal is to identify the most important variables. What is the best approach for variable selection?
Variable selection in big data
49 Views Asked by Soodi At
1
There are 1 best solutions below
Related Questions in MACHINE-LEARNING
- Trained ML model with the camera module is not giving predictions
- Keras similarity calculation. Enumerating distance between two tensors, which indicates as lists
- How to get content of BLOCK types LAYOUT_TITLE, LAYOUT_SECTION_HEADER and LAYOUT_xx in Textract
- How to predict input parameters from target parameter in a machine learning model?
- The training accuracy and the validation accuracy curves are almost parallel to each other. Is the model overfitting?
- ImportError: cannot import name 'HuggingFaceInferenceAPI' from 'llama_index.llms' (unknown location)
- Which library can replace causal_conv1d in machine learning programming?
- Fine-Tuning Large Language Model on PDFs containing Text and Images
- Sketch Guided Text to Image Generation
- My ICNN doesn't seem to work for any n_hidden
- Optuna Hyperband Algorithm Not Following Expected Model Training Scheme
- How can I resolve this error and work smoothly in deep learning?
- ModuleNotFoundError: No module named 'llama_index.node_parser'
- Difference between model.evaluate and metrics.accuracy_score
- Give Bert an input and ask him to predict. In this input, can Bert apply the first word prediction result to all subsequent predictions?
Related Questions in DATA-CLEANING
- Approach for Data Cleaning a complex multi-table File
- Unable to filter in power bi dax query
- Removing duplicate data conditionally in Excel
- I need help using pandas to group data from multiple columns into labeled categories
- CSV file data manipulation in R
- Massive dataset - average values by month and location
- How can i find every instance of a repeating string in a list, and then concatenate it to the list element that precedes it in every instance?
- INTERNAL_ERROR Input row doesn't have expected number of values required by the schema
- Powerbi: remove part of the string value in column and put it to another table
- How to restart automatically the application after clearing its storage?
- Is it possible to read table from pdf below a specific text
- Survey treatment with R language (NA values)
- Convert numeric column to integer if possible, otherwise keep as numeric
- How do I transpose every line in a row to multiple columns?
- Is there a way to create even single year age from the groups based on a weight?
Related Questions in VARIABLE-SELECTION
- Find the parameter alpha for Elastic Net with survival data (family = cox) with a t_start t_stop (intervals) in longitudinal high dimensional data
- How to use CAST package for a shapefile (polygons) in R?
- LassoCV results depend on the number of inputvariables?
- Implementing Random-Forest or Lasso with a spatio-temporal shapefile in R?
- Variable selection in big data
- Distinguishing between structural & nonstructural regressor candidates in N Lassos run sequentially on N synthetic data sets
- How to iteratively remove just the intercept terms from the variables selected by n glmnet functions run on n datasets in R
- Why am I getting error "numbers of columns of arguments do not match" for some model specifications but not others?
- R: What is the difference of the Lasso for variable selection between the packages glmnet and hdm
- Can I include covariates outside of the minimally sufficient set in a causal framework that aren't in the causal pathway?
- How to capture the most important variables in Bootstrapped models in R?
- Selecting important features to perform random forest classification
- Obtain variable selection order from glmnet
- How do I model this linear programming problem in Python?
- Stepwise AIC using forward selection in R
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
To find the most important variables, you can use several different variable selection algorithms. The output of these algorithms can be combined or you can use them separately. Some of the variable selection algorithms are as follows:
Additionally, if you have some domain knowledge about the data, you can eliminate variables that are less relevant to the target variable.