Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: Annoying error although module is installed

by tangent (Parson)
on Feb 28, 2016 at 22:49 UTC ( [id://1156407]=note: print w/replies, xml ) Need Help??


in reply to Annoying error although module is installed

stddev() is not a built-in function, it is a function provided by the module. From looking at the docs that module does not export any functions by default so you will need to import them before using them:
# you can remove this line use Statistics::Basic::StdDev; # add this line use Statistics::Basic qw(:all);
You can then use all the functions in your script.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1156407]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (3)
As of 2024-04-25 19:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found