Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Invoke Function writtein in R

Hi there

 

I have very basic R script that I want to use to hash a string using SHA-1 and base64 encode 

 

Say that my string is HY8&V5EDJO8NYT9C2011-12-13T00:44:02ZTest123, I can write this in R and it outputs my new hash string

 

a = base64enc::base64encode(digest::digest("HY8&V5EDJO8NYT9C2011-12-13T00:44:02ZTest123", algo = "sha1", raw = T, serialize = F))

 

I want to convert this into function in PowerBI - please could you tell me what I need to do to acheive this?

 

Thank you so much

Ped

 

1 ACCEPTED SOLUTION
v-shex-msft
Community Support
Community Support

Hi @Anonymous,

 

I haven't found anything about directly invoke function which written in R script, you can try ImkeF's point of view if it works for you.


In addition, you can write a function which use to call the local R script, for example(load local R script and execute it)

 

let
    LoadLocalRScript = (file_path as text) as table =>
let
    Source = Csv.Document(File.Contents(file_path),[Delimiter=#(lf), Columns=1, Encoding=1252, QuoteStyle=QuoteStyle.None]),
    RScript =  Text.Combine(Source[Column1], "#(lf)"),
    output = R.Execute(RScript)
in
    output 
in
    LoadLocalRScript

 

 

For detial information, you can refer to below link:
Running Local R Scripts in Power BI

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

4 REPLIES 4
v-shex-msft
Community Support
Community Support

Hi @Anonymous,

 

I haven't found anything about directly invoke function which written in R script, you can try ImkeF's point of view if it works for you.


In addition, you can write a function which use to call the local R script, for example(load local R script and execute it)

 

let
    LoadLocalRScript = (file_path as text) as table =>
let
    Source = Csv.Document(File.Contents(file_path),[Delimiter=#(lf), Columns=1, Encoding=1252, QuoteStyle=QuoteStyle.None]),
    RScript =  Text.Combine(Source[Column1], "#(lf)"),
    output = R.Execute(RScript)
in
    output 
in
    LoadLocalRScript

 

 

For detial information, you can refer to below link:
Running Local R Scripts in Power BI

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.
Greg_Deckler
Super User
Super User

In the Query Editor, you should be able to add an R Script step. It is the last icon on the right in the Query Editor.


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...
ImkeF
Super User
Super User

I don't know of any possibility for M to create hash strings.

 

But you can run your R-script in the Query Editor instead: https://powerbi.microsoft.com/en-us/documentation/powerbi-desktop-r-in-query-editor/

Imke Feldmann (The BIccountant)

If you liked my solution, please give it a thumbs up. And if I did answer your question, please mark this post as a solution. Thanks!

How to integrate M-code into your solution -- How to get your questions answered quickly -- How to provide sample data -- Check out more PBI- learning resources here -- Performance Tipps for M-queries

Anonymous
Not applicable

@ImkeF hi there yes thats what I was getting at - if M could somehow "M" an "R" function 🙂 It would be cool actually

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.