Advanced Power BI Project • End-to-End • ChatGPT • Custom Visuals

  Рет қаралды 267,262

Power BI Park

Power BI Park

Күн бұрын

Learn how to use Python, ChatGPT, HTML, DENEB to make this report.
🟢Skip the python with the enriched Dataset: onyxdata.ck.page/a12261b1fb
00:00 - Intro
00:46 - Download and Enrich Dataset
05:55 - Glassmorphism Background
11:50 - Power BI
17:38 - HTML Visual
20:33 - DENEB Visuals
29:58 - Power BI Formatting
I wanted this to be a step into Advanced Visualization Techniques,
especially if you're a Power BI developer and haven't used them
These techniques are powerful tools to add to your kit.
The Video covers:
💠Enriched dataset with ChatGPT & Python
💠Glassmorphism Background
💠Power BI Building
💠HTML Cover Art
💠DENEB Visuals
💠PBI Format
You want the Python code? Scroll down 👇
=================================
🔥Code Interpreter for Data Analysis
🔗 • Code Interpreter for D...
🔥Power BI Backgrounds
🔗 • Transform your POWER B...
🔥Bravo in Power BI
🔗 • Make 1000+ DAX MEASURE...
🔥Ahmed's Portfolio
🔗photos.google.com/share/AF1Qi...
🔥Dataset
🔗www.kaggle.com/datasets/nelgi...
🔥Spotify Developer App
🔗developer.spotify.com/
🔥Download Python
🔗www.python.org/downloads/
🔥David's Deneb Showcase
🔗github.com/PBI-David/Deneb-Sh...
🔥Unit Chart Code
🔗stackoverflow.com/questions/7...
🔥Heatmap Code
🔗github.com/PowerBI-tips/Deneb...
🔥Color Pallette
🔗www.color-hex.com/color-palet...
=================================
Looking for Power BI consulting?
Reach out to me on Linkedin:
🟢 / injae-park
Thanks for taking the time to watch this video.
Python code:
=====================================================
import requests
import pandas as pd
Function to get Spotify access token
def get_spotify_token(client_id, client_secret):
auth_url = 'accounts.spotify.com/api/token'
auth_response = requests.post(auth_url, {
'grant_type': 'client_credentials',
'client_id': client_id,
'client_secret': client_secret,
})
auth_data = auth_response.json()
return auth_data['access_token']
Function to search for a track and get its ID
def search_track(track_name, artist_name, token):
query = f"{track_name} artist:{artist_name}"
url = f"api.spotify.com/v1/search?q={query}&type=track"
response = requests.get(url, headers={
'Authorization': f'Bearer {token}'
})
json_data = response.json()
try:
first_result = json_data['tracks']['items'][0]
track_id = first_result['id']
return track_id
except (KeyError, IndexError):
return None
Function to get track details
def get_track_details(track_id, token):
url = f"api.spotify.com/v1/tracks/{track_id}"
response = requests.get(url, headers={
'Authorization': f'Bearer {token}'
})
json_data = response.json()
image_url = json_data['album']['images'][0]['url']
return image_url
Your Spotify API Credentials
client_id = 'your_client_id'
client_secret = 'your_client_secret'
Get Access Token
access_token = get_spotify_token(client_id, client_secret)
Read your DataFrame (replace 'your_file.csv' with the path to your CSV file)
df_spotify = pd.read_csv('your_file.csv', encoding='ISO-8859-1')
Loop through each row to get track details and add to DataFrame
for i, row in df_spotify.iterrows():
track_id = search_track(row['track_name'], row['artist_name'], access_token)
if track_id:
image_url = get_track_details(track_id, access_token)
df_spotify.at[i, 'image_url'] = image_url
Save the updated DataFrame (replace 'updated_file.csv' with your desired output file name)
df_spotify.to_csv('updated_file.csv', index=False)
===============================================
!!!! All curly brackets need to be angled brackets - youtube restricts angled brackets in this text
_Image html =
Var x =
CALCULATE(
MAX('updated_spotify_data'[cover_url]),
'updated_spotify_data'[streams] = MAX('updated_spotify_data'[streams])
)
return
"
{!DOCTYPE html}
{html lang='en'}
{head}
{meta charset='UTF-8'}
{title}Image Cropping{/title}
{style}
.image-container {
width: 458px; /* Width of the container */
height: 140px; /* Height of the container */
overflow: hidden; /* Hide parts of the image that don't fit */
border-radius: 15px; /* Rounded corners */
position: relative; /* Relative positioning for the child element */
}
.image {
object-fit: cover; /* Cover the entire container */
object-position: center; /* Center the image */
width: 100%; /* Full width */
height: 100%; /* Full height */
}
{/style}
{/head}
{body}
{div class='image-container'}
{img src='"&x&"' alt='Album Cover' class='image'}
{/div}
{/body}
{/html}
"
=======================================================
#powerbi #shortcuts #microsoft

Пікірлер: 249
@ivannavarrete4111
@ivannavarrete4111 4 ай бұрын
I had the same problem with the heatmap but I can fix it just changing one option (Render option) from SVG to Canvas. I folllow the steps below: 1. In the visual, click the dots in the top right of the visual to edit the Deneb options. 2. I created the new specification using the option VEGA LITE. 3. I selected the option "Create." 4. I copied and pasted the code from Stack Overflow. 5. I clicked on "APPLY CHANGES." 6. I changed the name on line 41 from "KPI" to "Track." 7. I clicked on "APPLY CHANGES" again. 8. In my version of Deneb Visual, I have an option called "SETTINGS." In this section, we can change the RENDER MODE. What I did here is change the SVG mode to CANVAS mode, and that's it; the visual works fine. 9. Click "APPLY CHANGES." NOTE: I'm using an STAND ALONE VERSION of Deneb Visual. I hope this can help you solve the issue!
@PowerBIPark
@PowerBIPark 4 ай бұрын
Super awesome,. thanks for sharing :)
@ivannavarrete4111
@ivannavarrete4111 4 ай бұрын
@@PowerBIPark Thanks to you ! it's an amazing work you did ! and Thanks for sharing this video with all of us! Thks a lot!
@alexanderkyriakou
@alexanderkyriakou 2 ай бұрын
Simply changing the provider to "Vega-Lite" did the trick for me. Thank you for sharing your solution!
@shekharwadhawan6707
@shekharwadhawan6707 2 ай бұрын
Showing error in Ln 55 .data should be array
@lazy_bat_0298
@lazy_bat_0298 Ай бұрын
@@shekharwadhawan6707 I am also getting the same error @PowerBIPark
@Clemzysmith
@Clemzysmith 7 ай бұрын
I’ve been looking for something like this for so long. Thank you so much!!
@eduardofreire3387
@eduardofreire3387 6 ай бұрын
found the code, it was in front of my face and I looked at the description, lol.... Continue with this excellent work. Today, I will follow the talk at Microsoft. Thanks!
@ThomasLaussermair
@ThomasLaussermair 9 ай бұрын
Great tour of advanced dashboard techniques with integrations of HTML and Python, including the use of many other tools and visual libraries. Thanks for putting this together! Near the end, for the reset functionality overlaid on the circular arrow, I used a single button with a Bookmark action. Good to know about the Clear all slicers functionality.
@PowerBIPark
@PowerBIPark 9 ай бұрын
Nice, you watched the whole thing :D Honestly, I was in the same place as you, I recorded at first with the bookmark action, but the clear all slicers did come out a couple releases ago, so I thought it was worth re-recording for this :)
@eduardoferreira467
@eduardoferreira467 5 ай бұрын
I managed to finish!! Park, first, thank you very much for taking the time and sharing this incredible and very educational knowledge. I learned a lot from building this project.
@PGCodeRider
@PGCodeRider 5 ай бұрын
You are THE up and coming power BI/tech tutorial. There is a high demand for more advanced (but not crazy) tutorials out there. This is great. Nice artistic mix too
@PowerBIPark
@PowerBIPark 5 ай бұрын
Wow that's high praise. Thanks! I'm going to release more as soon as I kick this cold 😁
@ryuhayabusa3540
@ryuhayabusa3540 4 ай бұрын
Is there a channel like this for Tableau? Don't get me wrong great video and I'm very impressed.
@arjunsaini9725
@arjunsaini9725 8 ай бұрын
This look super cook. Didn't knew power BI can do this. I learned something new from this. Thanks
@thomasd8888
@thomasd8888 3 күн бұрын
Thanks so much for the valuable presentations!
@juanignacioXI
@juanignacioXI 7 ай бұрын
Just amazing!!, great work Mr. Park.
@Cloudsofa
@Cloudsofa 8 ай бұрын
one of the most valuable presentations so far. Please do more of this. Thank you for your dedication!
@PowerBIPark
@PowerBIPark 8 ай бұрын
Thanks so much 🙏
@fawadyusuf
@fawadyusuf 7 ай бұрын
Wow...too much info to digest for someone who is "Trying" to learn Power BI ;) Excellent video!
@applepeel1662
@applepeel1662 8 ай бұрын
Superb!! Will be adding this to my portfolio project
@manggnorora
@manggnorora 9 ай бұрын
I have been waiting for this one.
@ken_chen
@ken_chen 8 ай бұрын
Not sure if I will ever use those advanced techiniques. But, many thanks for sharing your skills without asking anything in return. This is a great Power BI visual training.
@PowerBIPark
@PowerBIPark 8 ай бұрын
Thanks man. I just hope this helps some people, like all the other youtubers helped me get a pbi job 😁🙏
@PowerBIPark
@PowerBIPark 9 ай бұрын
Python and HTML code is in the description (although you need to edit the HTML code) Make sure that you edit the Days in the heatmap code in 2 places! - I only mention one, but there's another place you need to fix it to order the side bar
@parthdeshmukh1834
@parthdeshmukh1834 7 ай бұрын
I am having problem with this heatmap code. Can you please help me in this.
@DhrubajyotiPatra
@DhrubajyotiPatra 6 ай бұрын
@@parthdeshmukh1834 did you able to get the heatmap visual from deneb, cause that name changing trick is not working for me , I am not able to see any options in edit configuration field mapping , can you help me with that?
@TheAmazingmayowa
@TheAmazingmayowa 5 ай бұрын
I am having problems in line 55. .data should be in array code
@JoanaOliveira-ni3cm
@JoanaOliveira-ni3cm 3 ай бұрын
Great tutorial ! Thank you so much !
@banihas22
@banihas22 9 ай бұрын
I can't wait to try this out on the weekend! Thanks for taking the time to put this together 😊
@PowerBIPark
@PowerBIPark 9 ай бұрын
Have fun!
@rupasanjana2678
@rupasanjana2678 8 ай бұрын
hey have you done this i really want excel file with urls or i' happy if you guide me
@rashmikrishnamohan1736
@rashmikrishnamohan1736 8 ай бұрын
Definitely gonna try this out! Will share my output soon! Thanks for sharing!
@PowerBIPark
@PowerBIPark 8 ай бұрын
You bet!
@tobiazeez4188
@tobiazeez4188 9 ай бұрын
This looks absolutely amazing!! Definitely will be trying this
@PowerBIPark
@PowerBIPark 9 ай бұрын
Let me know how it goes!
@excel-solutions4564
@excel-solutions4564 8 ай бұрын
Amazing tutorial.. Looking forward to practice all these amazing techniques.
@themindhelp9584
@themindhelp9584 4 ай бұрын
omggg I subscribeddddddddddd immediately!! thank youuuuuuuuuuuuuu...and please continue doing them
@aliikhlaq
@aliikhlaq 9 ай бұрын
You done this with detail. being a new to PowerBI i learn a lot Thank you
@PowerBIPark
@PowerBIPark 9 ай бұрын
I'm happy to hear that, this video is to help people like you 🙏
@predatorleader
@predatorleader 5 ай бұрын
Perfect presentation/training i loved it very much ! keep up the great work :)
@nishikantanayak7797
@nishikantanayak7797 6 ай бұрын
so beautiful so elegant just looking like a wow
@SDSYoutube
@SDSYoutube 9 ай бұрын
Great video. Thanks for this. Lots of great info here!
@PowerBIPark
@PowerBIPark 9 ай бұрын
Thanks Andrew. Most "end-to-end" Power BI tutorial videos on YT are very basic, so I wanted to make something a tiny bit more advanced 😎
@heljava
@heljava 7 ай бұрын
Amazing demo. Learned a lot. I will be applying some (most) of the things of this video to my projects. Really helpful content and clearly explained. Thank you very much!
@PowerBIPark
@PowerBIPark 6 ай бұрын
Appreciate the feedback! I hope it helps you in your work 😁
@DhrubajyotiPatra
@DhrubajyotiPatra 6 ай бұрын
@@PowerBIPark hi sir i loved you video, but I am having a difficulty in the deneb visual heatmap code of github that name chnaing trick is not working for Me, I am not able to see any dropdown or option for the edit configurations field mapping option so it is remaining on NAN, Undefined values although I have the changed that KPI name to track, but not helping, if you can provide me any resource or help me in it , I will be highly grateful.
@GabrielFerreira-ip4wh
@GabrielFerreira-ip4wh 3 ай бұрын
Awensome content, thanks for sharing, brazil here 🎈🎈
@TrackPowerBi
@TrackPowerBi 8 ай бұрын
Great video! Step by step! I really like this view! Now I'm your fan! I'm waiting for the next video! :)
@PowerBIPark
@PowerBIPark 8 ай бұрын
Thank you so much!
@eduardoactd
@eduardoactd 7 ай бұрын
Maaaaan crazy vid!!! i just adapted to give a new look to my company's reports and looks awesome! thanks! Suscribed!!!
@PowerBIPark
@PowerBIPark 7 ай бұрын
Awesome! I hope they give you recognition for it 😁
@gungunmishra2484
@gungunmishra2484 8 ай бұрын
thankyou so much for this valuable content
@nikhil6ful
@nikhil6ful 3 ай бұрын
Relevant talk of 45 mins 15 seconds..What a tutorial.. thanks for introducing generative AI for PB
@PowerBIPark
@PowerBIPark 3 ай бұрын
Glad you enjoyed it! If you want all the files, I have them available on patreon :)
@ThoNguyen-kq7ob
@ThoNguyen-kq7ob 16 күн бұрын
Bro this is fire. Thank you! Keep making the content!
@PowerBIPark
@PowerBIPark 16 күн бұрын
Thanks, appreciate it :)
@AuthyDrains151
@AuthyDrains151 12 күн бұрын
@@PowerBIParknice
@preciousime2643
@preciousime2643 9 ай бұрын
thank you for this video. i really enjoyed it.
@PowerBIPark
@PowerBIPark 9 ай бұрын
Your final product looks great. Well done!
@TheAmazingmayowa
@TheAmazingmayowa 5 ай бұрын
i just completed the video, thank you
@TheAmazingmayowa
@TheAmazingmayowa 5 ай бұрын
@DogsInMumbai hi dear.I will go through my notes and get back to you .
@marymargaret8724
@marymargaret8724 8 ай бұрын
Amazing😍, Bless U for ur knowledge Sharing, expecting more, thank you
@PowerBIPark
@PowerBIPark 8 ай бұрын
😁
@ngocnguyenhong6732
@ngocnguyenhong6732 2 ай бұрын
Your presentation is super clear and the end result is definitely impressive! Even as a professional, I pick up a lot of useful tools while watching your videos, and I hope you carry on this momentum and enthusiasm for your next endeavors.
@PowerBIPark
@PowerBIPark 2 ай бұрын
That's such a nice message to read. Thank you :)
@Aestheticvibe2004
@Aestheticvibe2004 8 ай бұрын
please more videos like this
@lofi_Insomnia_
@lofi_Insomnia_ 4 ай бұрын
Nice tutorial! As Mac user, I only have access to Power BI Service (The Web version). I wish there's a tutorial series that only tailors to the web. Until we have Power BI Desktop for Mac, this would be the best we could have.
@sumayeablash952
@sumayeablash952 4 ай бұрын
Just wooooooooooooooow... Amazing
@TenhoDados
@TenhoDados 3 ай бұрын
So wonderful. Congratulations you deserve millions of likes 👏 👏 👏
@PowerBIPark
@PowerBIPark 3 ай бұрын
That's such a nice comment, thank you :)
@dganalysis
@dganalysis 9 ай бұрын
Great comprehensive video Park 💪
@PowerBIPark
@PowerBIPark 9 ай бұрын
Thanks Gerard!
@dr.nehachaudhry3526
@dr.nehachaudhry3526 8 ай бұрын
Thanks for sharing this amazing project👍ll definitely try this 🙂
@PowerBIPark
@PowerBIPark 8 ай бұрын
Great, I hope it is educational for you 😁
@dr.nehachaudhry3526
@dr.nehachaudhry3526 8 ай бұрын
@@PowerBIPark yes, it is
@ChatPowerBI
@ChatPowerBI 6 ай бұрын
👏 great! I wonder when Power BI will allow us to format objects like Power Point so we don't have to go back and forth between tools to adjust the layout
@joaorataoo
@joaorataoo 9 ай бұрын
An extraordinary presentation. I learned a lot, and it's clearly a higher level of reporting. Just out of curiosity, I wonder how long it would take an expert like you to develop this report. Big thanks!!!
@PowerBIPark
@PowerBIPark 9 ай бұрын
Thank you so much. So everything took me 2 afternoons, but I had to wait because I reached out to David for the unit chart code. I might have been able to do it faster, but I spent a lot of time on fixing the PowerPoint, and trying to see how much% transparency would look nicer 😂
@shahzadkheros
@shahzadkheros 8 ай бұрын
amazing!
@claudiozadorosny4722
@claudiozadorosny4722 9 ай бұрын
Very good
@harshith4484
@harshith4484 4 ай бұрын
Hi, I know many people are struggling to create a Heat Map Visual. Here's what worked for me: 1. I didn't change the KPI name. 2. Click on 'Apply Changes,' after you update the KPI name in line number 41, then go to 'Edit Specification' and 'Field Mapping' (in the header code editor), and apply the mapping. I hope this helps!
@abdessamadabidaoui7907
@abdessamadabidaoui7907 4 ай бұрын
I tried this and it didn't work
@ujasrudani
@ujasrudani 3 ай бұрын
Thanks It worked
@cesartobar6564
@cesartobar6564 25 күн бұрын
Thank you! It worked!
@albertroy9620
@albertroy9620 4 ай бұрын
Finally made everything but only that heat map was giving problem so used alternative for it rest was nice experience doing it
@PowerBIPark
@PowerBIPark 4 ай бұрын
A lot of people had problems with the heatmap after deneb 1.6 came out :( there is a resolution in the pinned comments though :)
@jadejenkins7515
@jadejenkins7515 8 ай бұрын
Great video, very informative. Only got the free Chat-GPT, so decided just to use the code provided above, if anyone else gets an indentation error, you can use the free version of Chat GPT to format to code to correct the structure. Also I got the following error: KeyError: 'artist_name'. On closer inspection of the data set, artist_name is actually "artist(s)_name". If you correct this in line 52, it should fix the problem.
@PowerBIPark
@PowerBIPark 8 ай бұрын
Thanks for sharing!
@Hamza12123
@Hamza12123 8 ай бұрын
good work
@FredericLEGUEN-Excel
@FredericLEGUEN-Excel 8 ай бұрын
Wow! Impressive. Now it's time for me to practice because nothing is easy. Can you please add Chapter in your video? That's really important to navigate, especially for such a long video
@PowerBIPark
@PowerBIPark 8 ай бұрын
Actually great feedback, thanks!
@FridaDaniel
@FridaDaniel 9 ай бұрын
Great Inspiration! Definitely taking part this month!
@PowerBIPark
@PowerBIPark 9 ай бұрын
You got this!
@jasonthegentleman2992
@jasonthegentleman2992 Ай бұрын
This is an awesome video man, this Deneb visual is next level with the provided resources. thanks to @SupernovaSmith for directing me to it!
@PowerBIPark
@PowerBIPark Ай бұрын
Glad you enjoyed it!
@ewdlop1
@ewdlop1 5 ай бұрын
Thanks!
@PowerBIPark
@PowerBIPark 5 ай бұрын
Wow my first super thanks. 🍻
@churtado1984
@churtado1984 8 ай бұрын
just great every fucking minute ¡¡¡
@matiasmandelman9698
@matiasmandelman9698 5 ай бұрын
After investigating why the heatmap in Deneb is not working for most people, I have managed to correct it: points to take into account when modifying the code: 1: in my case, that I work in Spanish, replace the months and days by the exact names that appear in each column. "Jan" for "ene" or "Mon" for "lu." 2: replace all the "keys" by their original name. That is, all the "__0__" by "Day of Week"," __1__" by "Month" and "__2__" by the name of the metric, in my case, "_Track". Although I believe that only by performing point 2 it works correctly. I have done this and it worked, so please comment if you can correct it.
@eduardoferreira467
@eduardoferreira467 5 ай бұрын
Matias, It worked, I got it here. Thank you for your help with the resolution! Let's go!! Hugs, Edu | São Paulo | Brazil
@mohsinbaig9326
@mohsinbaig9326 8 ай бұрын
Superbly done!🤩 How do you get the right option pane (from where you selected the format pane or selection pane) in your PowerBI? How can I get that in my Power BI?
@PowerBIPark
@PowerBIPark 8 ай бұрын
Great question, it's actually the on-object formatting. A lot of people don't like it because it's not 100% intuitively made. You can turn it on through the preview settings in the power bi desktop (just google power bi on object settings) 😁
@alexandros27.
@alexandros27. 7 ай бұрын
Not quite sure If the measure for returning the top strong streams is correct . It returns the maximum stream afrom all the values in the column in the end but messes up inside the row context
@ShirishaB-wk9zf
@ShirishaB-wk9zf 17 күн бұрын
Great video !! between i have a problem in the heatmap visual. I have the changed the settings from SVG to Canvas and using a Vega-lite. May i know where the second place is do we need to change the code. would be helpful to complete the report. Thanks!
@anushkapanikulam2023
@anushkapanikulam2023 20 күн бұрын
In the slicers using the released_year eliminates the possibility of having a year with no songs released
@khurrumsandhu
@khurrumsandhu 21 күн бұрын
I subscribed
@uchiha_sasuke_48
@uchiha_sasuke_48 9 ай бұрын
🤤that thumbnail is asking me start this project immediately and learn something new.
@PowerBIPark
@PowerBIPark 9 ай бұрын
I hope you do learn something useful :)
@uchiha_sasuke_48
@uchiha_sasuke_48 9 ай бұрын
Before starting this project, I just want to make myself clear. Can I complete this whole project for free without any deviations. I can observe that you're using ChatGPT 4. But I've only ChatGPT 3. Can I get that Spotify client ID for free. Until now I haven't used Spotify at least once in a life.
@PowerBIPark
@PowerBIPark 9 ай бұрын
The only paid item that I use is ChatGPT-4, but everything else is free, including spotify APIs.
@naren9603
@naren9603 5 ай бұрын
The Deneb heatmap visual is not showing up for me even though I clicked the edit button and changed the name n number of times.
@_ARYANYUAN
@_ARYANYUAN 18 күн бұрын
while doing the spotify test app step what URL to be put in the required url box?
@AhmedGamal-mi1ns
@AhmedGamal-mi1ns 7 ай бұрын
I thoroughly enjoyed watching this video. It's not every day that you come across advanced projects like this available for free on the web. However, I do have a request. I currently only have access to GPT-3.5, and I find it a bit challenging to work with code. Could you please share the code with me?
@PowerBIPark
@PowerBIPark 7 ай бұрын
Thanks Ahmed. Check out the description, the code is there 😊
@hepingliu5344
@hepingliu5344 6 ай бұрын
What a great demo! Is possible to change the label font size the Month and the Days of Week in the Deneb Heatmap? Thanks a lot.
@ydeevlog4825
@ydeevlog4825 5 ай бұрын
for me heat map is not coming i cant save the mapping the dialog box is not coming
@DPaquette
@DPaquette 7 ай бұрын
The image size for album cover does not fit the window size in the html window I tried even at 45% and higher pixels for W & H.
@sanket.hande9
@sanket.hande9 5 ай бұрын
Nice dashboard mate. Can you upload image background image in description? ( I don't have office 365)
@adityadash1320
@adityadash1320 8 ай бұрын
When I tried the html code and tried to click on Image html, its not working, no image shows up, it says image html on a a blank white screen. Am I missing anything? I even changed the data category of cover_url to Image URL and the image shows in that column but not in the above step as shown.
@JesusGil90
@JesusGil90 6 ай бұрын
hello, I would like to ask you something, is there any way to consume data from the Power BI report? for example, query those averages and use it in a PHP, Node etc application.
@nishantkhandelwal1609
@nishantkhandelwal1609 3 ай бұрын
can you please tell what slicer did you used
@vikashkumarmahato6461
@vikashkumarmahato6461 8 ай бұрын
Cant wait to try it ,is there any links or data or code i need other than those mentioned in the description. i have connected with you on linked in for the lovely work you do
@PowerBIPark
@PowerBIPark 8 ай бұрын
Reach out to me on linkedin, ill send you any code you need :)
@user-my7my7br8b
@user-my7my7br8b 5 ай бұрын
What problem statement we can give for this project?
@RedCloudServices
@RedCloudServices 7 ай бұрын
Is it possible to add a chatbox and open source LLM like Llama instead of openai?
@nirajmahajan2147
@nirajmahajan2147 17 күн бұрын
Where can I get the python code to get urls in the dataset?
@aizazzizu1525
@aizazzizu1525 8 ай бұрын
It's amazing but unfortunately I'm not on that level right now and you didn't have any videos on your channel for beginners.
@PowerBIPark
@PowerBIPark 8 ай бұрын
That's okay - I hope this becomes useful maybe in the future 😁
@aizazzizu1525
@aizazzizu1525 8 ай бұрын
@@PowerBIPark 🤣 Hope so. Keep it up
@user-hw5ew4lr9f
@user-hw5ew4lr9f 5 ай бұрын
can you please solve my query regarding that average stream per year i am getting error there about allexcept syntax that year is not there
@angietoros
@angietoros 8 ай бұрын
How round to more decimals?
@rumidanishmand642
@rumidanishmand642 4 ай бұрын
hello sir !
@abdessamadabidaoui7907
@abdessamadabidaoui7907 4 ай бұрын
Thank you for this amazing project, i tried making the heat map following exactly the steps that you have done and still didn't work do you have a follow up on how to make it work.
@PowerBIPark
@PowerBIPark 4 ай бұрын
Hey the answers in the comments I think I pinned it as the answer because a lot of people had issues after deneb was updated
@abdessamadabidaoui7907
@abdessamadabidaoui7907 4 ай бұрын
@@PowerBIPark Thank you so much for giving time to my comment, i tried it as well and it didn't solve the problem. but anyway that's just pushed me to wanting more to learn how to make heatmaps and visuals in deneb, i'll be making one of my own. thanks again and i'll always follow your videos. please make more tutorials like this :D
@Aabha_Singh222
@Aabha_Singh222 8 ай бұрын
On the track image like blinding light html content, im getting a slicer which is shifting the picture to left and right, up and down. How to fix it?
@PowerBIPark
@PowerBIPark 8 ай бұрын
it's because the html visual is too small. You need to adjust the width and length in the code, or make the visual bigger
@sravyareddy3290
@sravyareddy3290 9 ай бұрын
The dashboard looks really attractive. I am looking forward to working on this. Is there a way I can get the python code as I do not have access to ChatGPT- 4 ?
@PowerBIPark
@PowerBIPark 9 ай бұрын
Sure man, reach out to me on linkedin and I'm happy to send you the python code or the excel with the cover URLs already there. The excel will also be released for download on Monday
@sravyareddy3290
@sravyareddy3290 9 ай бұрын
@@PowerBIPark That's very kind of you. You are awesome :)
@Yog3shPatel
@Yog3shPatel 4 ай бұрын
Hi If you can also provide the background image in discerption that will be a great help. Please Bro?
@neelimaneelu2792
@neelimaneelu2792 6 күн бұрын
Sir can i image url based on the order id's of amazon, is there any possible things
@kanu3540
@kanu3540 8 ай бұрын
Great video, very informative. I am not able to find designer section in my PowerPoint. Please help me
@PowerBIPark
@PowerBIPark 8 ай бұрын
It's okay not to use the designer, just use any photo and change the settings with picture formatting from PowerPoint
@srajaldeepshukla
@srajaldeepshukla 6 ай бұрын
bro i really need the python code, That code isnt working which is in description. please help
@baanusai7395
@baanusai7395 6 ай бұрын
Cant help my self but notice that the data set from kaggle has an error where the Column: stream has an error data for row 576. (error entry :- BPM110KeyAModeMajorDanceability53Valence75Energy69Acousticness7Instrumentalness0Liveness17Speechiness3) would be really helpful if anyone can comment the accurate data.
@sarakadam438
@sarakadam438 2 ай бұрын
I wish there was more reasoning whenever you're doing something new like 'replacing " with single ', idk why :p
@PowerBIPark
@PowerBIPark 2 ай бұрын
It's because double quotes are used in DAX to signify strings xD
@santoshingle3977
@santoshingle3977 4 ай бұрын
Hi, This is great video. But I'm facing a problem with deneb specification field mapping. I don't see columns to map when kpi name is changed.
@PowerBIPark
@PowerBIPark 4 ай бұрын
I saw a different person tried this approach, and it worked for them: 1. I didn't change the KPI name. 2. Click on 'Apply Changes,' after you update the KPI name in line number 41, then go to 'Edit Specification' and 'Field Mapping' (in the header code editor), and apply the mapping.
@ome9034
@ome9034 7 ай бұрын
could you send entire python code at once in one file , mentioning what all things we need to change?
@user-ki9uz1wj5f
@user-ki9uz1wj5f 5 ай бұрын
Hello. First of all thanks for the amazing video. Second, I cant seem to get the heatmap right. I get an empty mapping window after changing the _Track name everytrime. Help me out please
@matiasmandelman9698
@matiasmandelman9698 5 ай бұрын
I solved it in my comment!
@ryuhayabusa3540
@ryuhayabusa3540 4 ай бұрын
Is there a channel like this for Tableau?
@luisfernandomacedo1451
@luisfernandomacedo1451 8 ай бұрын
Hi guys! Lemme ask you something. After publishing the report in the web, did have any issue? I used the Deneb visual in one the report I am building, and after publishing it on the service, it does not display the gradient color. Anyone knows why?
@PowerBIPark
@PowerBIPark 8 ай бұрын
I've never had any issues, even with this code here. Hopefully yours resolves!
@jamilleghazaleh9627
@jamilleghazaleh9627 2 ай бұрын
I tried everything but still everytime it shows the html code instead of the image. I already checked the measure 100x and I even changed the type of colum to "Image URL" but nothing works
@sudheendranekkanti9471
@sudheendranekkanti9471 7 ай бұрын
Hey @Power BI Park I'm facing a problem at Deneb Heatmap where it's not showing the heat map even though I changed the name of track measure multiple times... any thoughts on why this is happening ???
@parthdeshmukh1834
@parthdeshmukh1834 7 ай бұрын
I am facing the same problem
@DhrubajyotiPatra
@DhrubajyotiPatra 6 ай бұрын
yes man i m facing the same problem too. any suggestion on how can we proceed.
@arpithagangatkar580
@arpithagangatkar580 5 ай бұрын
kzfaq.infoE2wjo4FaVjk
@willywales9446
@willywales9446 5 ай бұрын
I have a challenge on power BI that I would like to discuss it with you.
@duudiduudu
@duudiduudu 21 күн бұрын
why is my excel formated so weird when i open it? All the data is in one cell on each row
@Julian-bi6ld
@Julian-bi6ld 7 ай бұрын
Fantastic video. Just a question, I want to create a report like that for my company, being more specific, for the connectivity department. Do you know if is possible to use Python if my datasource comes from Sharepoint? I also want to know if make sense to create a report like that using Deneb function for any type of report.. I mean there is always a possibility to structure my data to fit with these type of visuals? In my personal case, I need to represent the launching dates of each site within specific technology. Thank you very much
@PowerBIPark
@PowerBIPark 7 ай бұрын
Hi Julian, so it's possible, but if you want to integrate python into your process, it's better for that to be in synapse or fabric. Power bi(or more specifically power query) does not handle python too well, but this is not an issue in fabric. On the other hand, there are hundreds of deneb templates, you can go check out the deneb documentation website, and there's a lot of good ones to start. I always use it as a last resort, or if I really want to impress someone, because deneb is still a lot more work than regular visuals 😁
@Julian-bi6ld
@Julian-bi6ld 7 ай бұрын
@@PowerBIPark Thank you very much for your feedback. Your content is amazing.👏🏻
@user-cf3ol4tx2y
@user-cf3ol4tx2y 3 ай бұрын
한글 번역 기원 1일차
@manaswi6127
@manaswi6127 7 ай бұрын
why is it only showing url but not image
Code Interpreter for Data Analysis - ChatGPT (July 2023 update)
11:07
Chat GPT with Microsoft Power BI | @PavanLalwani
11:25
Pavan Lalwani
Рет қаралды 84 М.
LOVE LETTER - POPPY PLAYTIME CHAPTER 3 | GH'S ANIMATION
00:15
ОДИН ДЕНЬ ИЗ ДЕТСТВА❤️ #shorts
00:59
BATEK_OFFICIAL
Рет қаралды 8 МЛН
МАМА И STANDOFF 2 😳 !FAKE GUN! #shorts
00:34
INNA SERG
Рет қаралды 4,3 МЛН
Вечный ДВИГАТЕЛЬ!⚙️ #shorts
00:27
Гараж 54
Рет қаралды 13 МЛН
How To Create these useful Power Bi Visuals that Excel Lacks
10:55
Leila Gharani
Рет қаралды 438 М.
FASTEST Way to Become a Data Analyst and ACTUALLY Get a Job
10:55
Stefanovic
Рет қаралды 3 МЛН
Power BI Report Makeover | Combining All New Visualization Features
49:05
Make 1000+ DAX MEASURES in 10 MINS
16:13
Power BI Park
Рет қаралды 31 М.
5 Shortcuts to write DAX faster - Power BI
2:56
Power BI Park
Рет қаралды 19 М.
Do NOT Create Your Design in Power BI! (here’s why)
13:30
How to Power BI
Рет қаралды 57 М.
5 DESIGN TRICKS that Make EVERY Power BI Report Look GREAT!
20:22
How to Power BI
Рет қаралды 534 М.
How ChatGPT Built My App in Minutes 🤯
8:28
Website Learners
Рет қаралды 2,1 МЛН
Неразрушаемый смартфон
1:00
Status
Рет қаралды 2,3 МЛН
Ультрабюджетная игровая мышь? 💀
1:00
Хотела заскамить на Айфон!😱📱(@gertieinar)
0:21
Взрывная История
Рет қаралды 4,9 МЛН