Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I have a dataset of ~6000 rows (individuals) and ~40 columns (attributes). I want to scale these attributes and use the dist R function to create a pairwise similarity/distance matrix comparing every single row against one another. I have a functioning R code to produce this in R Studio:
*Read in data and set working directory etc.... (i've not included some transformations I did in R because I replicated these in the applied steps in the Query Editor)
data_scaled<-scale(dataloaded)
max<-nrow(dataloaded) # for testing - number of people to process (i.e. first n rows)
# compute the distance matrix using dist()
dataEuc_dist<-as.matrix(dist(data_scaled[1:max,], method="euclidean"))
View(dataEuc_dist)
(Tried with and without the last line: "View(...)"
When I use the above in the Run R Script a table is produced with only two columns ("Name", "Value") and a "This table is empty" notification. Is there a separate line needed to force the creation of this dataset to output as a new table? Is it possible to do this in the R Script creator, because an entirely new dataframe is being created rather than transforming the already existing table?
EDIT: I also know that I can do these actions within R and transfer the table, however, i'd like to make the process automated if possible for future data refreshes.
Not entirely sure how this function works in power BI so any input would be great!
Thanks!
Gareth
Hey,
you should omit the
View(...)
line in your r script.
Instead the last line has to return a dataframe.
Maybe this will help
https://stackoverflow.com/questions/50025814/convert-matrix-into-dataframe-in-r
Regards,
Tom
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
78 | |
77 | |
59 | |
36 | |
33 |
User | Count |
---|---|
100 | |
62 | |
56 | |
48 | |
41 |