- 103
- 8 689
AIgineer
เข้าร่วมเมื่อ 11 ม.ค. 2014
I am an AIgineer with great passion for teaching within the world of mathematics, programming data and AI.
วีดีโอ
Python fundamentals part 3 - OOP (coding)
มุมมอง 304 ชั่วโมงที่ผ่านมา
Python fundamentals part 3 - OOP (coding)
Data processing course structure (theory)
มุมมอง 259 ชั่วโมงที่ผ่านมา
Data processing course structure (theory)
Introduction to python and learning roadmap (theory)
มุมมอง 2514 ชั่วโมงที่ผ่านมา
Introduction to python and learning roadmap (theory)
Python fundamemtals part 1 (coding)
มุมมอง 4719 ชั่วโมงที่ผ่านมา
This is fundamental python programming covering * input-output * data types * f-string * lists * for statement * while statement * dictionary * if-statements
Course repetition of SQL using DuckDB part2
มุมมอง 2621 วันที่ผ่านมา
github.com/AIgineerAB/SQL_duckdb_course
Course repetition of SQL using DuckDB part 1
มุมมอง 3721 วันที่ผ่านมา
Course repo github.com/AIgineerAB/SQL_duckdb_course
Common table expressions in DuckDB (coding)
มุมมอง 4028 วันที่ผ่านมา
Common table expressions in DuckDB (coding)
Commont table expressions (CTE) in DuckDB
มุมมอง 4228 วันที่ผ่านมา
Commont table expressions (CTE) in DuckDB
Joins in SQL DuckDB to combine rows between several tables (coding)
มุมมอง 110หลายเดือนก่อน
Joins in SQL DuckDB to combine rows between several tables (coding)
Joins in SQL DuckDB to combine rows between several tables
มุมมอง 80หลายเดือนก่อน
Joins in SQL DuckDB to combine rows between several tables
Working with string and regexp in DuckDB (theory)
มุมมอง 47หลายเดือนก่อน
Working with string and regexp in DuckDB (theory)
Working with strings in SQL and DuckDB (coding)
มุมมอง 105หลายเดือนก่อน
Working with strings in SQL and DuckDB (coding)
Generating synthetic data using DuckDB SQL (coding)
มุมมอง 119หลายเดือนก่อน
Generating synthetic data using DuckDB SQL (coding)
DuckDB CLI to ingest data from csv file
มุมมอง 114หลายเดือนก่อน
DuckDB CLI to ingest data from csv file
Course structure for modern SQL with DuckDB part 2 - github repository
มุมมอง 77หลายเดือนก่อน
Course structure for modern SQL with DuckDB part 2 - github repository
Course structure for modern SQL with DuckDB
มุมมอง 92หลายเดือนก่อน
Course structure for modern SQL with DuckDB
DBeaver connect with DuckDB with SQL introduction
มุมมอง 141หลายเดือนก่อน
DBeaver connect with DuckDB with SQL introduction
Generating synthetic data using DuckDB (theory)
มุมมอง 70หลายเดือนก่อน
Generating synthetic data using DuckDB (theory)
I’m a statistics student and I’m really interested in data science and ml I think your videos are great and can’t wait for more!
thanks, I will upload full courses as I develop them. If you want, you can have a look at some courses which I have finished developing github.com/AIgineerAB/SQL_duckdb_course github.com/AIgineerAB/data_warehouse_course
hey man whats good? hope you're well. seems like you know a lot about handling data from your videos. wondering where you're based? i build AI agents for businesses. i think we can work together. you can be my technical guy, i can sell and close deals. right now im building them on third party platform since i dont have technical background. gonna provide inbound voice call AI agent service soon. let me know how to reach you. im gonna take over my region with AI.
The content you shared was great, and I really appreciated the information. However, the audio quality could use a little improvement. If you haven't already, you might consider using a tool like Adobe's Enhance Speech feature to clean up the audio and make it sound clearer.
thank you for pointing out the sound issue, I've known about it quite a while, but now I've managed to solve it, so for my future video the sound should be better. Have a look at this one, where the sound should be better th-cam.com/video/zm79cZboFi4/w-d-xo.html
How to format st.dataframe with css like change the header color, and the background color of the table?
I am not sure if it is possible as the whole dataframe seem to be a div. However I found this in documentation docs.streamlit.io/develop/api-reference/data/st.dataframe it says that pandas styler object can be used for styling the dataframe, and here is documentation for pandas styler object pandas.pydata.org/docs/user_guide/style.html haven't tried it out, tell me if it works
Here is a minimal example, tried it out and it works import streamlit as st import pandas as pd df = pd.DataFrame({ 'Column 1': [1, 2, 3], 'Column 2': [4, 5, 6] }) def style_dataframe(df): return df.style.set_table_styles( [{ 'selector': 'th', 'props': [ ('background-color', '#4CAF50'), ('color', 'white'), ('font-family', 'Arial, sans-serif'), ('font-size', '16px') ] }, { 'selector': 'td, th', 'props': [ ('border', '2px solid #4CAF50') ] }] ) styled_df = style_dataframe(df) st.write(styled_df.to_html(), unsafe_allow_html=True) here is the source for the discussion discuss.streamlit.io/t/how-to-change-the-header-color-and-font-in-st-dataframe-and-st-data-editor/69676/2
Thank you for this best video on streamlit css on TH-cam 🙏
Thank you :)
The video got stuck from 06:00 to 07:23 minute , we can hear just sound.
Remember to add SELECT in the grants (missed in the video) so that job_ads_dlt_role can view the data as we're using that role to select the data later
Great video! The visuals really help my understanding
Thank you, you can find my other videos through my repo.