Conceptual Question about the speed of plotly

Hi everyone

To add some elements to a plotly Figure for many cases we can add out elements (for example 100000 scatters) using a proper DataFrame data table. I think if instead of using one DataFrame table, we use a loop and in each loop we use add_scatter(...) to add our 100000 elements one by one again we will get same figure BUT By this way we are enlarging the β€˜data’ and by this way the figure may become slow and heavy. Am I thinking correct?