plotly / plotly/plotly.R

Unable to implement geom in plotly

Open
#2,449 0 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Dominant language
R
Stars
2.7k
Forks
641
PR merge metrics
No merged PRs in 30d

Description

Hello,

I am recently learning R from an online course. While working on the code script for the lesson on categorical overview analysis using ggplotly, I encountered 11 warnings related to the implementation of the geom. I may have missed the loading process of the needed packages. Can I ask your assistance in checking this out with me?

Attached is the doc with the warnings received:
Warnings.txt

Here's the sample code script I am working on until the problem:

Load Packages ----

if(!require(pacman)) install.packages("pacman")
pacman::p_load(
tidyverse, # meta-package
inspectdf,
plotly,
janitor,
visdat,
esquisse
)

Load Data ----

ebola_sierra_leone <- read_csv("C:/Users/micha/OneDrive/Desktop/Trainings&Schools/Graph_FoSSA&R/R/Week 2/ebola_sierra_leone.csv")

Explore data ----

head(ebola_sierra_leone)
tail(ebola_sierra_leone)

ncol(ebola_sierra_leone)
nrow(ebola_sierra_leone)
dim(ebola_sierra_leone)

summary(ebola_sierra_leone)
#general data overview
vis_dat(ebola_sierra_leone)

categorical overview

cat_summary_plot <- show_plot(inspect_cat(ebola_sierra_leone)) # nested function
ggplotly(cat_summary_plot)

Thank you!

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Start with the attached Warnings.txt and reproduce the sample script through the ggplotly(cat_summary_plot) call. Inspect the output of inspect_cat(ebola_sierra_leone) and the resulting cat_summary_plot; the issue is complete when the warning cause and any required package or compatibility change are identified and documented.

Written by the indexing model from the issue text.

Assessment

Tech stack
plotly, r
Domain
data-visualization
Issue type
Bug
Difficulty
4/5
Estimated time
3-5 days
Activity status
Stale
Clarity
Needs clarification
Newbie friendliness
18/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.