You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The progress bar works as expected when running as an R script in RStudio, but it does not display when the same functionality is used within the package. This inconsistency affects the user experience when the package is used, as users are unable to visually track the progress of long-running processes.
Steps to Reproduce
Run a function from the package that uses a progress bar (e.g., a function utilizing the progressr package).
Observe that the progress bar does not appear.
Run the same function as a standalone script in RStudio.
Notice that the progress bar appears and functions as expected in the RStudio script.
Expected Behavior
The progress bar should display consistently both when running the script directly in RStudio and when using the function from the package. The progress bar should indicate the progress of long-running tasks to enhance user experience.
Additional Context
The progress bar currently functions in RStudio but not in other contexts (e.g., when the package is used from the command line or in non-interactive sessions).
This issue may relate to how RStudio handles interactive processes compared to non-interactive environments.
Proposed Solution
Investigate any discrepancies between the behavior of the progress bar when running as a script vs when used within the package.
Ensure that the progressr package is correctly initialized and rendered within the package functions.
Acceptance Criteria
The progress bar should be visible and functioning as expected both when running in RStudio and when using the package.
Any environment-specific configurations or dependencies related to progress display should be identified and resolved.
The text was updated successfully, but these errors were encountered:
Description
The progress bar works as expected when running as an R script in RStudio, but it does not display when the same functionality is used within the package. This inconsistency affects the user experience when the package is used, as users are unable to visually track the progress of long-running processes.
Steps to Reproduce
progressr
package).Expected Behavior
The progress bar should display consistently both when running the script directly in RStudio and when using the function from the package. The progress bar should indicate the progress of long-running tasks to enhance user experience.
Additional Context
Proposed Solution
progressr
package is correctly initialized and rendered within the package functions.Acceptance Criteria
The text was updated successfully, but these errors were encountered: