GitHunter0
GitHunter0
Hi folks, Please, consider the MWE below: ``` import streamlit as st import pandas as pd with st.form(key='form1'): user_input = st.text_input("Insert text") submit = st.form_submit_button("Submit") if submit: st.warning("This part should...
Could you provide an example on how to retrieve dividends? I tried this function and it returns the message `Cash Flow data unavailable for fb`: ``` symbols = ['fb'] tickers...
Hey @yihui , purl() has being an incredibly useful function for me. Since RStudio editor for .py files is still limited (no code sections and no outline pane), I mostly...
Hi folks, I'm not being able to access AWS S3 via `sparklyr`. Please, see the MWE below. I tried to access the same S3 file via `aws.s3` package and it...
Hey @yihui , how are you? Please, would you consider adding support for numbered equations & cross-reference? I was surprised Xaringan didn't have it natively since it is an indispensable...
Hey, I am wondering why did you choose to base tidyquant on tidyverse/dplyr rather than on data.table. Shouldn't it allow to deal with larger datasets and have higher speed performance?...
Hi folks, I really like the concept of tidymodules, I just have 2 concerns: (1) Is it under active development? (2) Is it ready to be used for production? Thank...
Hey Paul, is there a way to temporarily disable `shinyauthr` login? This would be very handy in the testing phase of the app, when the developer might just want to...
I cannot find a way to change the idiom which dates are displayed. Is it possible? Thank you
Hi folks, `pickerInput()` choices are not appearing when `Bootstrap 5` is selected. Here is a MWE: ``` library(shiny) library(shinyWidgets) ui