Καλωσόρισες στο δωρεάν online course "Guided Project στο Microsoft Power BI" από την Data Tutor!
Μέσα από αυτό το μάθημα θα δούμε from scratch και βήμα-βήμα πώς μπορούμε να δημιουργήσουμε από το 0 ένα report 📊
Αν θέλεις να δεις το πλήρες course, κάνε εγγραφή σήμερα στην Data Tutor και λάβε την πιστοποίησή σου:
🔗 https://datatutor.gr/courses/guided-p...
Κάνε εγγραφή στο κανάλι @datatutorgreece για περισσότερο #δωρεάν εκπαιδευτικό υλικό σε θέματα #DataAnalysis και #DataVisualization.
---------------------------------------------------------------------------------------------------------------------------------------------------------------
Τεχνικές Απαιτήσεις:
Για την εύρυθμη παρακολούθηση αυτού του μαθήματος, είναι απαραίτητο να έχετε το Microsoft Power BI Desktop εγκατεστημένο στον υπολογιστή σας.
Μπορείτε να το κατεβάσετε από τον παρακάτω σύνδεσμο:
🔗 https://www.microsoft.com/en-us/downl...
Τέλος, από εμπειρία, σας συνιστώ ότι αν θέλετε να ασχοληθείτε σοβαρά με αυτό το εργαλείο, θα χρειαστείτε ο υπολογιστής σας να έχει τα παρακάτω χαρακτηριστικά:
RAM περισσότερο από 8 GB
SSD Disk
(Συνίσταται) Χώρο διαθέσιμο στον υπολογιστή σας μεγαλύτερο από 64 GB
---------------------------------------------------------------------------------------------------------------------------------------------------------------
Βήματα:
Παρατηρούμε ότι πρέπει να δημιουργηθεί ένας role-playing dimension: DimDate
1. Home tab - Transform Tab
2. Home tab - New Source - Blank Query
3. Μετονομασία σε DimDate
4. Home tab - Advanced Editor και επικόληση του παρακάτω κώδικα
Ο κώδικας δημιουργίας της DimDate:
let
// Set the start and end date for the date table
StartDate = #date(2023, 12, 1),
EndDate = #date(2033, 12, 31),
// Create a list of dates from the start to end date
DateList = List.Dates(StartDate, Duration.Days(EndDate - StartDate) + 1, #duration(1,0,0,0)),
// Convert the list to a table and add columns for year, month, day, etc.
DateTable = Table.FromList(DateList, Splitter.SplitByNothing(), {"Date"}),
#"Changed Type" = Table.TransformColumnTypes(DateTable,{{"Date", type date}}),
#"Inserted Year" = Table.AddColumn(#"Changed Type", "Year", each Date.Year([Date]), Int32.Type),
#"Inserted Month" = Table.AddColumn(#"Inserted Year", "Month", each Date.Month([Date]), Int32.Type),
#"Inserted Day" = Table.AddColumn(#"Inserted Month", "Day", each Date.Day([Date]), Int32.Type),
#"Inserted Weekday" = Table.AddColumn(#"Inserted Day", "Weekday", each Date.DayOfWeek([Date]), Int32.Type),
#"Inserted MonthName" = Table.AddColumn(#"Inserted Weekday", "MonthName", each Date.ToText([Date], "MMMM"), type text),
#"Inserted MonthNameShort" = Table.AddColumn(#"Inserted MonthName", "MonthNameShort", each Date.ToText([Date], "MMM"), type text),
#"Inserted QuarterNo" = Table.AddColumn(#"Inserted MonthNameShort", "QuarterNo", each Date.QuarterOfYear([Date]), Int32.Type),
#"Inserted YearQuarter" = Table.AddColumn(#"Inserted QuarterNo", "YearQuarter", each Text.Combine({Text.From([Year]), " Q", Text.From([QuarterNo])}), type text),
#"Inserted YearMonth" = Table.AddColumn(#"Inserted YearQuarter", "YearMonth", each Text.Combine({Text.From([Year]), "-", Text.PadStart(Text.From([Month]), 2, "0")}), type text),
#"Inserted YearMonthDay" = Table.AddColumn(#"Inserted YearMonth", "YearMonthDay", each Text.Combine({Text.From([Year]), Text.PadStart(Text.From([Month]), 2, "0"), Text.PadStart(Text.From([Day]), 2, "0")}), type text),
#"Added Custom Column" = Table.AddColumn(#"Inserted YearMonthDay", "Month,Year", each Text.Combine({[MonthNameShort], ",", Text.Middle(Text.From([Year], "en-IN"), 2)}), type text),
#"Inserted Merged Column" = Table.AddColumn(#"Added Custom Column", "Quarter", each Text.Combine({"Q", Text.From([QuarterNo], "en-IN")}), type text),
#"Inserted Day Name" = Table.AddColumn(#"Inserted Merged Column", "WeekDay Name", each Date.DayOfWeekName([Date]), type text)
in
#"Inserted Day Name"
1. Μετονομασία DimDate σε DimPurchaseDate
2. Δεξί κλίκ DimPurchaseDate - Duplicate
3. Μετονομασία DimPurchaseDate σε DimJourneyDate
4. Close and Apply
5. Σύνδεση των δύο νέων πινάκων
Επιστροφή στο Model View
Drag and Drop FactTickets.Date of Journey στην DimJourneyDate.Date
Drag and Drop FactTickets.Date of Purchase στην DimPurchaseDate.Date
#PowerBI #FreeCourse #δωρεάν #μάθημα #DataVisualization #BusinessIntelligence #HandsOnLearning
Информация по комментариям в разработке