Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
statistics
- Page 1
Evaluating OpenAI GPT 4.1 for Text Summarization and Classification Tasks
Programming
Computer Science
2 Weeks Ago
by usmanmalik57
…", "Mathematics", "
Statistics
", "Quantitative Biology", "…- Computer Science - Physics - Mathematics -
Statistics
- Quantitative Biology - Quantitative Finance Return only …
Re: SAP db - how to get the time update statistics was performed on a table?
Programming
Databases
2 Months Ago
by peol
To check when update
statistics
was last performed on an SAP table, use database-specific queries! For SAP HANA, check M_TABLES.LAST_COMPILED. In SQL Server, use STATS_DATE. For Oracle, check DBA_TAB_STATISTICS.LAST_ANALYZED. In DB2, use SYSCAT.TABLES.STATS_TIME. Stay optimized, stay ahead!
Re: I built a kafka GUI client for operating kafka, welcome to use
Programming
Software Development
1 Month Ago
by elary
It is a nice project.Is there any notification function?
Re: Statistics with perl
Programming
Software Development
14 Years Ago
by d5e5
…functions you want but gives different results than
Statistics
::Basic for Standard Deviation. I don't …usr/bin/perl use strict; use warnings; use
Statistics
::Descriptive; #Try to open first command-line argument…foreach my $scaf (sort keys %scaffolds){ my $stat =
Statistics
::Descriptive::Full->new(); my @start_sites = sort {$a &…
Re: Statistics with perl
Programming
Software Development
14 Years Ago
by d5e5
Statistics
::Basic doesn't seem to min and max functions. You … max.[CODE]#!/usr/bin/perl use strict; use warnings; use
Statistics
::Basic qw(:all); #Try to open first command-line argument…
Statistics::Descriptive gives deviant Standard Deviation?
Programming
Software Development
14 Years Ago
by d5e5
…a different result when calculating Standard Deviation using
Statistics
::Descriptive than when using the other module or …]. Am I doing something wrong, or does
Statistics
::Descriptive have a deviant way of calculating deviations…stddev(@d), "\n"; #Basic my $stat =
Statistics
::Descriptive::Full->new(); $stat->add_data(@d); print …
Statistics with perl
Programming
Software Development
14 Years Ago
by bio-grad
… setting up a perl script which will provide the
statistics
on some data I have in an excel file.…However, the system is not recognizing the
Statistics
package when I include use
Statistics
::Lite qw(:all); in the script. ….33 [CODE]#!/usr/bin/perl use strict; use warnings; use
Statistics
::Lite qw(:all); my $data = @ARGV; open $data…
Re: Statistics::Descriptive gives deviant Standard Deviation?
Programming
Software Development
14 Years Ago
by d5e5
… use. Conclusion: the values for standard deviation calculated by
Statistics
::Basic and
Statistics
::Descriptive differ for small data sets but this doesn…'t mean either value is wrong. What
statistics
module you use for calculating standard deviation depends on what…
Re: Statistics with perl
Programming
Software Development
14 Years Ago
by d5e5
… it won't help you install
Statistics
::Lite. I haven't worked much with
statistics
but if Perl won't let…Package Manager and don't mind installing something other than
Statistics
::Lite you could try the following: Start up Synaptic Package…them for installation and then Apply. That should install a
statistics
module you can use in your Perl scripts.
Re: Statistics with perl
Programming
Software Development
14 Years Ago
by d5e5
I found
Statistics
::Basic but couldn't find OrLite. I had to make … this run for you? It doesn't give all the
statistics
you want but maybe it can serve as a first… step.[CODE]#!/usr/bin/perl use strict; use warnings; use
Statistics
::Basic qw(:all); #Try to open first command-line argument…
Re: Statistics with perl
Programming
Software Development
14 Years Ago
by d5e5
….daniweb.com/forums/member488285.html"]mitchems[/URL] about installing
Statistics
::Descriptive on Windows. His advice would probably apply to installing…
Statistics
::Lite as well. Just copying the module into your bin …
Re: Statistics with perl
Programming
Software Development
14 Years Ago
by bio-grad
… you think the script looks otherwise? Once I have the
statistics
functions working properly, will the rest of the script function…
Re: Statistics with perl
Programming
Software Development
14 Years Ago
by anushaahenry
Hi, Using Perl for
Statistics
the Internet. These operations typically require using a variety of …
statistics- counting mysql rows and display a number
Programming
Web Development
15 Years Ago
by phpsteve
hi I would like to be able produce
statistics
on my web page by counting the numbers of rows … than printing the values as they come? i would like
statistics
in my web page to tell me how many defects… is a bit beyond me but simple tables showing the
statistics
would be very useful for a start. thank you for…
Statistics Travian and How?
Community Center
17 Years Ago
by Grantmitch1
… have one problem though. We wish to display our alliance
statistics
but we can't do it without it being manual…. Is there a script that will look into the Travian
statistics
and send the information to our server and display it…
Statistics Data Show Problem
Programming
Web Development
15 Years Ago
by lan89
Hello I want to show my
statistics
data, now the system only show the data which is …. Please advise me. [CODE]$sql = "SELECT pageid, date FROM
statistics
WHERE pageid='".$ID."' AND date BETWEEN '$datefrom' AND…
Statistics tracker?
Hardware and Software
Linux and Unix
21 Years Ago
by Dani
…? I'm in desperate need of a php/MySQL based
statistics
tracker for Apache. It should be easy to configure and…
Re: Statistics tracker?
Hardware and Software
Linux and Unix
21 Years Ago
by Dani
Well, I installed AWStats. It's nice ... still not as full featured at HitBox Pro is though. I'd like to be able to see a listing of 2nd-level domains that are referrers ;) Something else I like that Hitbox does is it automatically grabs the title of each page for
statistics
. I understand a log analyzer can't do that though. Oh well ;)
Statistics script for website
Programming
Web Development
14 Years Ago
by dks1383
Hi all I want to make a
statistics
script for my website by javascript I know that I …
Statistics Program
Programming
Software Development
13 Years Ago
by Jdan2388
…; int main() { cout<<"\n Functions, arrays, and
statistics
" <<"\n\nThis program will compute two…
Statistics Calculator (dynamic arrays)
Programming
Software Development
12 Years Ago
by xikhari.some1behindu
I am currently working in a
Statistics
Calculator which should display mean, standard deviation, median and mode. …
Class to do statistics
Programming
Software Development
14 Years Ago
by KLane
… sum; double sum2; public:
Statistics
(double _x, int n); ~
Statistics
();
Statistics
Accumulate(double a);
Statistics
mean(
Statistics
& m);
Statistics
sigma(
Statistics
& s); void Print() const…
C++ Class Statistics
Programming
Software Development
14 Years Ago
by KLane
…return 0; }
Statistics
::
Statistics
(double _x, int _n){ x=_x; n=_n; }
Statistics
::~
Statistics
(){ cout<<"
Statistics
destructor called"<…;<endl; } void
Statistics
::Accumulate(double data){ sum…
Re: Class to do statistics
Programming
Software Development
14 Years Ago
by daviddoria
Please use code tags when posting code. What is the problem? Please provide a sample input, the current output, and the expected output. I also suggest decoupling your file input from your algorithm. Hard code some values and make sure the
statistics
code works first before introducing another challenge of the file input.
Re: C++ Class Statistics
Programming
Software Development
6 Years Ago
by mellguth
… mean, standard deviation, minimum and maximum --- here it is: class
Statistics
{ double n; double sum; double sum2; double max_; double min_… : max_; min_ = (data < min_) ? data : min_; n+=1.0; }; ~
Statistics
() = default; double mean() const {return (n>0.0) ? sum…
Analysing text files to obtain statistics on their content
Programming
Software Development
16 Years Ago
by Davo1977
Analysing text files to obtain
statistics
on their content You are to write a Perl program… that analyses text files to obtain
statistics
on their content. The program should operate as follows: …) The file should be read and checked to display crude
statistics
on the number of characters, words, lines, sentences and …
Calculating statistics of an array of integers
Programming
Software Development
14 Years Ago
by Ivanero
Hey guys I am trying to calculate
statistics
for an array such as min,max,median...…far... [CODE]//Mostafa Abdel Moez 111606 //Calculating some common
statistics
for an array of integers. #include <iostream>…n"; cout<<" Calculating some common
statistics
for an array of integers.\n\n"; arr…
Print Media Statistics
Community Center
17 Years Ago
by MoritzSydney
Hi guys, I'm looking for some
statistics
on traditional print media. For example, what percentage of people … was hoping some of you might have come across these
statistics
, or at least have an idea of where I can…
Get statistics using self joins
Programming
Databases
15 Years Ago
by Harutyun
… on a banner software which allows admins to see full
statistics
of banner displays, clicks and other information in selected time… dateline as they are heavily used in all queries getting
statistics
data. I found that the best way to get data…
Analysing text files to obtain statistics on their content Using Perl
Programming
Software Development
15 Years Ago
by Akase
… write a Perl program that analyses text files to obtain
statistics
on their content. The program should operate as follows: 1…) The file should be read and checked to display crude
statistics
on the number of characters, words, lines, sentences and paragraphs…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC