Standard Dask Demo

Поділитися
Вставка
  • Опубліковано 3 лют 2025

КОМЕНТАРІ • 6

  • @MilesGranger
    @MilesGranger 8 років тому +1

    Thank you so much for your fantastic work and wonderful explanations, I really appreciate it! I refer to your work often, both in terms of usage and design. :)

  • @drrrck
    @drrrck 4 роки тому +2

    You have a weirdly soothing voice. Like, ASMR for actual nerds. I'll bet if you started an ASMR channel where you just taught beginner to intermediate python, you could make fukkin bank. Plus, you'd reach a crazy wide audience with whatever you wanted to advertise. I think it's just crazy enough to work...

  • @glitzprince
    @glitzprince 6 років тому

    Great tutorial esp on the setup!

  • @gauravgupta319
    @gauravgupta319 5 років тому

    Awesome explanation od dask distributed and it's work. I want to ask one question i.e. How I create an empty dask dataframe having only the column names which are in a list. And after it, add single-single value in each cell. I achieved it by pandas dataframe, but I need to implement it by dask. Let me show you the pandas code -
    data = pd.DataFrame(columns = list_of_column_name) //data is an empty dataframe
    i = 0
    while i < len(list_of_column_name) : //append one by one value in a particular column name as per calculation.
    value = some_value after calculation
    if i ==0 :
    data.loc[len(data), list_of_column_name[i] ] = value
    else :
    data.loc[(len(data) - 1), list_of_column_name[i] ] = value
    i += 1
    #end loop here
    Summary: I just want to create an empty dask dataframe with a column name only (outside the loop). Then after entering into the loop, fill the value row-wise in each cell of dataframe.
    Note: This is a dummy code only, but I really need it, Sequentially filling is required because of different - different calculation of values in each cell and every row is based upon sliding window.
    And thanks for this video :) I'm waiting for your response.

  • @sarahhenao2410
    @sarahhenao2410 6 років тому

    Hi Mathew,
    This is a great video.
    I am new to Dask and I am going to use this video to begin my studies.
    My question is : How do you get the Dask Status window to see the Task stream, Memory use, etc.
    Thank you in advanced,
    Sarah

    • @sarahhenao2410
      @sarahhenao2410 6 років тому

      Just kidding, I found your Dask Dashboard Walkthrough Video. Thanks!