KatKat
September 1, 2019, 12:45pm
1
I want to plot most influential variables for my lasso model, but when i run the following code
coef(PlayStoreLasso, s = "lambda.1se") %>%
tidy() %>%
filter(row != "(Intercept)") %>%
ggplot(aes(x = value, reorder(row,value), color = value > 0)) +
geom_point(show.legend = FALSE) +
ggtitle("Influential variables") +
xlab("Coefficient") +
ylab(NULL)
I get two warnnings:
1: 'tidy.dgCMatrix' is deprecated.
See help("Deprecated")
2: 'tidy.dgTMatrix' is deprecated.
Can you please explain what does it mean and how can i fix it?
mara
September 2, 2019, 10:38am
2
Could you please turn this into a self-contained reprex (short for repr oducible ex ample)? It will help us help you if we can be sure we're all working with/looking at the same stuff.
Even just knowing what packages you're using here will make it much easier to help you out.
install.packages("reprex")
If you've never heard of a reprex before, you might want to start by reading the tidyverse.org help page . The reprex dos and don'ts are also useful.
There's also a nice FAQ on how to do a minimal reprex for beginners, below:
A minimal reproducible example consists of the following items:
A minimal dataset, necessary to reproduce the issue
The minimal runnable code necessary to reproduce the issue, which can be run
on the given dataset, and including the necessary information on the used packages.
Let's quickly go over each one of these with examples:
Minimal Dataset (Sample Data)
You need to provide a data frame that is small enough to be (reasonably) pasted on a post, but big enough to reproduce your issue.
Let's say, as an example, that you are working with the iris data frame
head(iris)
#> Sepal.Length Sepal.Width Petal.Length Petal.Width Species
#> 1 5.1 3.5 1.4 0.…
What to do if you run into clipboard problems
If you run into problems with access to your clipboard, you can specify an outfile for the reprex, and then copy and paste the contents into the forum.
reprex::reprex(input = "fruits_stringdist.R", outfile = "fruits_stringdist.md")
For pointers specific to the community site, check out the reprex FAQ .
system
Closed
September 23, 2019, 10:38am
3
This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.