The column went_on_backorder
is a factor. Linear regression requires a numeric response variable.
To use logistic regression, use glm
in base R or a package such as vgam
. Here’s a brief example:
pd_train1 <- data.frame('went_on_backorder' = c('No','Yes','Yes'), 'lead_time' = 1:3) model <- glm(went_on_backorder ~ ., data = pd_train1, family = 'binomial')
And you can predict your classes:
predict(model, newdata = data.frame('lead_time' = c(0,1,2.5,3.5)), type = "response")
Related Posts:
- Poker hand range chart visualization in R
- Critical t values in R
- Error in plot.new() : figure margins too large, Scatter plot
- What does %>% function mean in R?
- Reasons for using the set.seed function
- R on MacOS Error: vector memory exhausted (limit reached?)
- Remove legend ggplot 2.2
- How do I replace NA values with zeros in an R dataframe?
- R: Using equation with natural logarithm in nls
- How to change legend title in ggplot
- Error in do_one(nmeth) : NA/NaN/Inf in foreign function call (arg 1)
- R on MacOS Error: vector memory exhausted (limit reached?)
- kmeans complains “NA/NaN/Inf in foreign function call (arg 1)”, when there are none?
- Why use as.factor() instead of just factor()
- mean() warning: argument is not numeric or logical: returning NA
- R issue “object not found”
- How do I delete rows in a data frame?
- Why do I get “number of items to replace is not a multiple of replacement length”
- Error in grid.Call(L_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : Polygon edge not found
- Having trouble setting working directory
- How can two strings be concatenated?
- SummarySE (Rmisc package) to produce a barplot with error bars (ggplot2)
- Remove a row from a data table in R
- R ggplot2 scale_y_continuous : Combining breaks & limits
- Add color to boxplot – “Continuous value supplied to discrete scale” error
- Error in file(file, “rt”) : invalid ‘description’ argument in complete.cases program
- Error in plot.window(…) : need finite ‘xlim’ valuescc
- rmarkdown error “attempt to use zero-length variable name”
- Error: Incorrect number of dimensions in R
- cannot coerce type ‘closure’ to vector of type ‘character’
- Basic – T-Test -> Grouping Factor Must have Exactly 2 Levels
- R – longer object length is not a multiple of shorter object length
- How does one reorder columns in a data frame?
- R error: cannot coerce type ‘closure’ to vector of type ‘double’
- R: Using equation with natural logarithm in nls
- remove legend title in ggplot
- scale_color_manual() not working
- Error in lm.fit(x, y, offset = offset, singular.ok = singular.ok, …) 0 non-na cases
- Clear R environment of all objetcs & packages
- Why I get this error writing data to a file
- R: need finite ‘ylim’ values in function
- How to save a data frame as CSV to a user selected location using tcltk
- Convert a list to a data frame
- Manually colouring plots with `scale_fill_manual` in ggplot2 not working
- Subscript out of bounds – general definition and solution?
- R: Error in eval(predvars, data, env) : numeric ‘envir’ arg not of length one in intrinsic.pars() in multgee package
- Convert a list to a data frame
- Remove grid, background color, and top and right borders from ggplot2
- What does the double percentage sign (%%) mean?
- How to subset a Data frame column wise using column names?
- Create an empty data.frame
- Error : length of ‘dimnames’ [2] not equal to array extent
- Mean of a column in a data frame, given the column’s name
- How can I plot data with confidence intervals?
- MLE error in R: initial value in ‘vmmin’ is not finite
- Unimplemented type list when trying to write.table
- Custom legend for multiple layer ggplot
- Subscript out of bounds – general definition and solution?
- file.path function in R
- Reshaping data.frame from wide to long format
- How to set limits for axes in ggplot2 R plots?
- duplicate ‘row.names’ are not allowed error
- predict.lm() in a loop. warning: prediction from a rank-deficient fit may be misleading
- Convert categorical variables to numeric in R
- How to sum data.frame column values?
- Error: invalid subscript type ‘list’ in R
- “non-numeric argument to binary operator” error in R
- readOGR() cannot open file
- What does “The following object is masked from ‘package:xxx'” mean?
- grep using a character vector with multiple patterns
- How to avoid “Error in stripchart.default(x1, …) : invalid plotting method” error?
- R error in unique.default(x) unique() applies only to vectors
- Unused arguments in R
- How to convert a data frame column to numeric type?
- Boxplot dplyr: Error: non-numeric argument to binary operator
- How do I install an R package from source?
- Optimization of a function in R ( L-BFGS-B needs finite values of ‘fn’)
- Error: ggplot2 doesn’t know how to deal with data of class matrix?
- Aggregate multiple columns at once
- Error in match.fun(FUN)
- Error in file(filename, “r”, encoding = encoding) : cannot open the connection
- installing data.table results in “there is no package”
- What is integer overflow in R and how can it happen?
- R histogram range error: some ‘x’ not counted; maybe ‘breaks’ do not span range of ‘x
- Plotting data in R; error: default method not implemented for type ‘list’
- Error in contrib.url(repos, “source”) in R trying to use CRAN without setting a mirror Calls: install.packages -> contrib.url Execution halted
- Changing fonts in ggplot2
- Error in
: target of assignment expands to non-language object - How do I combine two data-frames based on two columns?
- How to eliminate “NA/NaN/Inf in foreign function call (arg 7)” running predict with randomForest
- Indicator function in R
- Batch convert columns to numeric type
- IF “OR” multiple conditions
- R4DS error comparison (1) is possible only for atomic and list types
- How can I make a list of lists in R?
- Error in x[[i]] : recursive indexing failed at level 2
- How to avoid “operations are possible only for numeric, logical or complex types” when computing top 3 elements in each group
- Warning: non-integer #successes in a binomial glm! (survey packages)
- Difference between as.POSIXct/as.POSIXlt and strptime for converting character vectors to POSIXct/POSIXlt
- How to deal with “data of class uneval” error from ggplot2?