Table Editor in Python with pandastable

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

КОМЕНТАРІ • 22

  • @peterkosjr
    @peterkosjr 6 місяців тому

    This is outstanding content. Thank you!

  • @stansuen8072
    @stansuen8072 7 місяців тому

    Great video! Thanks. When you resize and make the window bigger, can you config it so that more rows and columns are brought into the viewport? Also free to header rows and first columns? I have tried it with a big dataframe and I cannot resolve this issue.

  • @golmatol6537
    @golmatol6537 8 місяців тому

    Seems like it might really come in handy some day.

  • @Beyonix22
    @Beyonix22 4 місяці тому

    Is there a way to do conditional formatting in pandastable library ?

  • @dipeshsamrawat7957
    @dipeshsamrawat7957 8 місяців тому

    Nice! Thank you.

  • @sadameer6058
    @sadameer6058 8 місяців тому +3

    Hello, can u please make a video on how to read text files with massive speed, i have a folder full of text files with +1Gb each file to search query in. what i can do?

    • @evanpendergraft
      @evanpendergraft 8 місяців тому +1

      try loading the text files lines as a dictionary. it should increase the speed of search querys.

    • @sadameer6058
      @sadameer6058 8 місяців тому +2

      @@evanpendergraft wdym? what is the key and what is the value?

    • @trevoreguitar
      @trevoreguitar 8 місяців тому +1

      Either use mmap (this example shows line by line but you could just perform a re search over the full content if reading the big file into memory isn't a concern):
      import mmap
      with open("FILE", "r+b") as f:
      mm = mmap.mmap(f.fileno(), 0)
      for line in iter(mm.readline, b""):
      print(line)
      Or if multirow operations aren't as big of an issue/don't need special code to perform on & you need to perform a ton of queries, you can just dump the contents (make a table, column_name = filename, new line in file = new row in column) into some sqlite/duckdb database & perform SQL queries over the top of them. If you REALLY need to go further you could theoretically do multiprocessing & with os.fork() + mmap start applying operations as the file is being read given the current location of the pointer, but if you're dealing with parent/child processes you might want to take this as an opportunity to just learn a lower level language for both your own benefit & understanding + better control

    • @y2ksw1
      @y2ksw1 8 місяців тому +1

      Use the operating system directly. For huge amounts of data scraping, all languages but C are deficient. grep would be your friend.

  • @jelsonnervar7715
    @jelsonnervar7715 8 місяців тому

    Can U do other programming languages content, like C#?

  • @murphygreen8484
    @murphygreen8484 8 місяців тому

    Kinda cool. Though why would anyone use this over Excel?

  • @vishnubalaji9500
    @vishnubalaji9500 8 місяців тому

    hiw use this in kivy or flet

  • @philtoa334
    @philtoa334 8 місяців тому

    Thx_.

  • @Maxcrafter-l6w
    @Maxcrafter-l6w 8 місяців тому

    first

  • @xkolm49
    @xkolm49 8 місяців тому

    useless but good to know it exists

  • @uchiha_sasuke_48
    @uchiha_sasuke_48 8 місяців тому

    I have a question. I know how things go and how they happen. But I don't know how to code on my own without taking help from GPT, Bard etc.
    Can I actually make a project using those and place them in my resume?

    • @NikolazLopes
      @NikolazLopes 8 місяців тому +4

      Using AI to learn isn't bad; searching for how to use a function you forgot or help with some tasks is okay, and everyone does it. But if you can only code with it, it's a problem. Try to code a project without AI, as long as it takes, searching on your own. If you struggle too much it shows you must learn other things before or pratice what you already know. I think.

    • @uchiha_sasuke_48
      @uchiha_sasuke_48 8 місяців тому +1

      @@NikolazLopes thanks bro
      I'll try your approach

  • @lizzybennet5726
    @lizzybennet5726 8 місяців тому +1

    Thanks! Is it possible to use Pandastable on Google Colab?