Тёмный

Sales Prediction Model with Python and Power BI 

Absent Data
Подписаться 46 тыс.
Просмотров 60 тыс.
50% 1

Опубликовано:

 

29 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 68   
@joenorbe6544
@joenorbe6544 4 года назад
This is great. Thank you for sharing this.
@Eothan
@Eothan 4 года назад
Dude, excelent video! You went line by line explaining thism which made a huge diff. Thank you! you just earned a new sub
@absentdata
@absentdata 4 года назад
Glad you found it useful.
@briananders4121
@briananders4121 4 месяца назад
For those who used the provided script and received the AttributeError: 'DataFrame' object has no attribute 'append', here is an alternative (paste after components=pd.DataFrame(zip(X.columns,coef),columns=['component','value'])): # Create a DataFrame for the intercept intercept_df = pd.DataFrame({'component': ['intercept'], 'value': [lin.intercept_]}) # Concatenate the intercept DataFrame with the components DataFrame components = pd.concat([components, intercept_df], ignore_index=True)
@CarlosCueto-Felgueroso
@CarlosCueto-Felgueroso 20 дней назад
Amazing video!! such a idea to combine powerbi parameters and powerbi!! Do you have accesible the python script or code of the model?
@SaurabhMishra-dz4nq
@SaurabhMishra-dz4nq 4 года назад
Please share the CSV file used as dataset in this analysis.
@kavishsewmangal7046
@kavishsewmangal7046 2 года назад
You think he will share anything when you demand him to do it instead of asking politely?
@bottonline4544
@bottonline4544 Год назад
Excelente contenido . Estoy intentando replicar el ejercicio pero en las 3 ultimas lineas del codigo : 20-23 # Create Coefficients.... Me arroja el siguiente error "AttributeError: 'DataFrame' object has no attribute 'append' " Esto se debe a que mi version de Pandas es 2.0.1 y no permite el append ? Me puede ayudar con esto 🙏 Saludos
@emerlanojan2802
@emerlanojan2802 5 месяцев назад
Nice work: May I ask if what particular linear regression was used is it simple linear or multiple linear regression
@akshayf20
@akshayf20 3 года назад
Very well explained. Do you know how can we simulate the results of a black box model (such as random forest, which do not have a formula unlike linear regression) in order to predict the y variable by changing the new x variables?
@devanshubajpai9922
@devanshubajpai9922 2 года назад
you can actually get constants for random forest regressor
@ExcelVisual
@ExcelVisual 4 года назад
It is interesting! thanks for the idea
@MostafaHaliem
@MostafaHaliem 3 года назад
Can we have the PowerBi file if you don't mind
@dunwally2433
@dunwally2433 4 года назад
Great work! Can you please share the pbix file?
@musicforyoume4689
@musicforyoume4689 3 года назад
How to access to dataset? Would you please address the data link?
@absentdata
@absentdata 3 года назад
You can find that in the description
@musicforyoume4689
@musicforyoume4689 3 года назад
@@absentdata Thank you
@markstephens8423
@markstephens8423 Год назад
I get this error AttributeError: 'LinearRegression' object has no attribute 'coef'
@absentdata
@absentdata Год назад
Try coef_ you might need to add the underscore
@hotboyphil
@hotboyphil 4 года назад
thanks for making this. do you have anything on ETL from SQL to Python with powerbi?
@Shiffo
@Shiffo Год назад
I used to connect to SQL with Python using ODBC connection on my local PC. Maybe you could use that to connect in PowerBi, but I would suggest connecting directly to ODBC within PowerBI. import pandas as pd import pyodbc server = 'server adres' database = 'database name' username = 'username' with open ('pw.txt', 'r') as f: pw = f.read() #store the credentials in a pw text file in the same folder. conn = pyodbc.connect('DRIVER={SQL Server };SERVER='+server+';DATABASE='+database+';UID='+username+';PWD='+ pw) sql = 'SELECT * from TABLE;' # enter your query here data = pd.read_sql_query(sql, conn)
@slacex
@slacex 8 месяцев назад
we have to change append for _append
@palocymasaio
@palocymasaio 10 месяцев назад
Great work, thank you. can you provide the python code please ?
@absentdata
@absentdata 10 месяцев назад
I think this is it github.com/Gaelim/Sales-Prediction-Model/blob/master/Sales%20Prediction%20Power%20BI.pbix
@antonietakuz5636
@antonietakuz5636 Год назад
Could you share the code for the Predicted Return on Investment formula on power bi? Great vid! Thank you
@roberttyler2861
@roberttyler2861 4 года назад
Hey this is great, is it possible to get the pbix?
@ahe970
@ahe970 2 года назад
Thanks -that is good. However, u move so fast, I could not tell how u created that dashboard??? Is it in Python? Also, u didn't show the standard errors and t-stats for the regression nor R-square - how can u do that? Thanks
@ConradGrobien
@ConradGrobien Год назад
Could you share the code for the Predicted Return on Investment formula on power bi? Great vid! Thank you.
@00Z0015
@00Z0015 3 года назад
When I run the python script in Power BI I get two columns. Column 1 has Components, Dataset, X, X_test and X_train and the second value has "Table" written in front of each Column 1 items. In the video it show TV, Podcast, RU-vid and intercept. Please help!
@gregoryyounkie3467
@gregoryyounkie3467 4 года назад
Very well done step by step stats, python, bi. Many videos leave parts of this out.
@absentdata
@absentdata 4 года назад
Glad it was helpful!
@afounlaid8667
@afounlaid8667 4 года назад
Great work, thank you. can you provide the dataset please ?
@Hanad9564
@Hanad9564 2 года назад
That is what I wanted to ask
@devanshubajpai9922
@devanshubajpai9922 2 года назад
thanks for such a simple and short example video ❤️🇮🇳
@jayantkodwani7868
@jayantkodwani7868 4 года назад
Great Video, loved it!
@JoaoGuilherme-nx8yk
@JoaoGuilherme-nx8yk 3 года назад
Please, show how you make this dashboard!
@ashleygesty7671
@ashleygesty7671 3 года назад
Thank you so much for this video!
@Collectedbyluis
@Collectedbyluis 3 года назад
Awesome video! Had never thought about doing this in PBI.
@roycemekolle7334
@roycemekolle7334 3 года назад
Thanks for these series of videos. I had always wondered how u could show your work on python to persons who are not familiar with coding environment
@absentdata
@absentdata 3 года назад
Glad you like the video. Definitely check out some of the other projects that integrate Python and Power Bi on this channel
@mitchellkasen5889
@mitchellkasen5889 3 года назад
I guess it is kind of off topic but do anybody know of a good website to stream new movies online?
@vincentari6483
@vincentari6483 3 года назад
@Mitchell Kasen ehh try flixportal. you can find it through google:) -vincent
@mitchellkasen5889
@mitchellkasen5889 3 года назад
@Vincent Ari thank you, I went there and it seems like they got a lot of movies there :D I appreciate it!!
@vincentari6483
@vincentari6483 3 года назад
@Mitchell Kasen you are welcome xD
@satyamanand9911
@satyamanand9911 4 года назад
How do we optimize our spend on spending channels for maximum sales?
@twummiley1647
@twummiley1647 2 года назад
The dataset in the link provided is different from the one you used, can I get the one you used, please?
@absentdata
@absentdata 2 года назад
Same data just different headings.
@funwithshaurya8017
@funwithshaurya8017 3 года назад
Excellent video. May I know what is the measure written for TV Parameter value?
@absentdata
@absentdata 3 года назад
Sorry for the delay. Can you let me know what you mean by the measure written for the TV parameter?
@my0wn0p1n10n
@my0wn0p1n10n 3 года назад
Good explanation, I was looking for this exactly!
@MrSandeep8727
@MrSandeep8727 4 года назад
Very Informative Video. Will you be able to share the dateset for practice? Thanks in advance.
@absentdata
@absentdata 4 года назад
Yes I can www.absentdata.com/power-bi/sales-prediction-model-in-power-pi/
@RahulDas-os3rg
@RahulDas-os3rg 2 года назад
Can I have the PBIX file please . The content of the video is really awesome. If I can get the PBIX then it may help me in clearing one of the interview scheduled on day after tomorrow.
@absentdata
@absentdata 2 года назад
I don't have the pbix file. Also you should be able to easily just follow the video and apply it to another dataset.
@RahulDas-os3rg
@RahulDas-os3rg 2 года назад
@@absentdata : Well I can do it. But the thing is I don't have any clue for the individual indicators for each and every category where we are displaying certain value associated with each and every category. EX - TV, RU-vid. Can you tell me is there any formula you are using to display or what is the field you are using there to display and any filter associated with it. Kindly make the full video as you have not explained the entire report.
@hrishihatolkar1944
@hrishihatolkar1944 3 года назад
Dude u r awesome. I need more videos on ML using python
@absentdata
@absentdata 3 года назад
Glad you like it!! Definitely check out the other vids on this channel.
@tink417
@tink417 3 года назад
Thank you for sharing. Do you by any chance have the Power Bi model, to examine as a template?
@absentdata
@absentdata 3 года назад
Yes I have: github.com/Gaelim/Sales-Prediction-Model
@tink417
@tink417 3 года назад
@@absentdata appreciate you.
@ShangaviMDA
@ShangaviMDA 3 года назад
Can u able to share the dataset link it will be reàlly useful
@absentdata
@absentdata 3 года назад
You can find it here: github.com/Gaelim/youtube
@Kannan-dt8dt
@Kannan-dt8dt 4 года назад
Awesome video !!!
@123jamalq
@123jamalq 4 года назад
I ha seen your sentiment code which motivated me to work on the translation of message we receive. Following python code i used which worked well: import pandas as pd from googletrans import Translator translator = Translator() dataset['City_English'] = dataset['Message'].map(lambda x: translator.translate(x, src="zh-TW", dest="ur").text) I need your help now, I want to detect language column which just give the language detection. I worked a lot but vain full. I am using this code but not working: import pandas as pd langdetect import detect word5= detect() #f=word5.detect_language() dataset['City English'] = dataset['Message'].apply(lambda x: word5.detect_language(x)) Please guide me to resolve the issue. Regards, Jamal Qamar
@cokestudio1111
@cokestudio1111 4 года назад
Can you please share this workbook?
Далее
Price Prediction with Python and Power BI
19:10
Просмотров 28 тыс.
Офицер, я всё объясню
01:00
Просмотров 4,1 млн
Watermelon magic box! #shorts by Leisi Crazy
00:20
Просмотров 28 млн
Running Python Scripts in Power BI
9:10
Просмотров 203 тыс.
Creating custom visuals in Power BI with DAX
35:04
Просмотров 13 тыс.
Multiple Linear Regression in Power BI using R Script
45:16
Simple Sales Prediction Using Python on Power BI
35:23
How to Deploy Machine Learning Models using Power BI
33:12
Офицер, я всё объясню
01:00
Просмотров 4,1 млн