Topic profile page for Histogram.
This page has aggregated data from forum posts, threads, listings, online discussions, newsgroups, messageboards, and other online sources which contain user generated content for the term: Histogram.
Topic "Histogram" was discussed 12,579 times on 1,214 sites in last 3 months
[b]IOVE PPO Histogram about to cross positive[/b].. Im expecting a very exciting next week.. Get your tickets before they announce the divy news.. Once they do good luck chasing after .013. [chart]stockcharts.com/c-sc/sc?s=IOVE&p=D&yr=0&mn= 6&dy=0&i=p83185705673&a=183562290&r=871%22%3E[/cha rt]
Started 2 days, 3 hours ago (2009-11-27 07:08:00)
by paranjr
Using Histogram function in VBA I want to write a macro to make a Histogram using the built in Histogram Function in Data Analysis. I created Named Ranges called Data and Bins. Then I wrote the following macro, but get errors. Sub Plot_Histogram() ' Plot_Histogram Macro Histogram(Data, "", Bins, "", "", True, False) ...
Started 2 days, 7 hours ago (2009-11-27 03:55:00)
by Kim R
Are you using the wrong in camera histogram? You have often seen me telling folks use your histogram and shoot RAW. Now granted on _most_ cameras the only controls on your camera that affect RAW files are ISO, shutter speed, and aperture (on some cameras there are a few other controls that might affect RAW too so check you cameras manual). OK great so let us say we are shooting RAW and we are ...
Started 3 days, 13 hours ago (2009-11-25 21:37:00)
by jamesf01
I read this on a canon web site about the d300 . live histogram on the d300s Live view is available it's just not that well documented or obvious. To activate a live histogram one has to be in Tripod Mode in Live View, press OK as soon as the image is on screen, and then cycle though the various viewing mode options using the Info button. The good news is that once activated the camera remains ...
Started 3 days, 19 hours ago (2009-11-25 15:58:00)
by TNVOLtrader
I am looking for someone to edit the attached Moving Average Difference indicator to reflect a bar color change when the value signals a change in direction from the previous trend - similar to that of the multi-colored MACD histogram. Bars moving in a downward direction would be colored red and those moving upward would be colored blue. In addition, I would like an arrow placed on the main ...
Started 4 days, 20 hours ago (2009-11-24 14:55:00)
by Christina O.
I have two group samples that i want to compare side by side using the histogram and frequency distribution charts. I ran a wilcoxen non-parametric to compare the group means for statistical significance and it has an option to display the histograms next to the box plot but all I want is the histogram for each of my groups and the frequencies text box below. I cannot get JMP ...
Started 1 week, 1 day ago (2009-11-21 00:37:00)
by Dustcloth
Am I dreaming or can I view the RGB channel histogram with my G10? I'm not talking about the light histogram but the RGB individual channel histogram. I could've sworn I saw it in there once upon a time but.........maybe that was my 40D? Thanks in advance!
Started 1 day, 15 hours ago (2009-11-27 19:31:00)
by SteveG
Quote: Originally Posted by Surly Ghillie Strong voice or not, still I contend (influenced perhaps by 4 decades of non digital photographic experience) that the way to go is to know enough about light and about lighting that you aren't guessing at exposure, or relying on your Korean committee brain to interpret it for you. When you ...
Started 1 day, 20 hours ago (2009-11-27 14:41:00)
by Bakur
I have 2 questions (issues). And was wondering if anyone has answers. 1. Proper exposure. Our DP uses lightmeter (Seconik if I'm not wrong) and to get proper exposure (due to histogram and final results) he sets ISO to 50 (on lightmeter), when having default 320 ISO setting on camera. Because when he sets lightmeter to 320 ISO, image is always underexposed, by at least 2 stops (maybe I'm ...
Started 6 days, 14 hours ago (2009-11-22 20:22:00)
by pierronymous
Hi, Attached is a file with 50 000 points in a compressed *.txt file (MyData.zip). The histogram makes me think that the density distribution follows a normal law. However the usual normality tests (see below*) give a p-value almost equal to 0. I do not understand why the p-value is so low. Can somebody help me please? * Using R with 'nortest' package I have tried the Kolmogorov-smirnov...
Started 3 days, 18 hours ago (2009-11-25 15:59:00)
by ayman_w72
Hi all Need rectangle histogram indicator that shows three colors: - when price is above upper bollinger band - and when under lower band - and when between the two bands I use this method to identify trend direction with high degree of accuracy when using H4 & H1 at the same time and i use bollinger standard dev. 1.0 Thanks alot in advance
Started 1 week, 1 day ago (2009-11-20 18:42:00)
by vishal_c
I am working on a project to create a Visual C++ application that loads a grayscale image (bitmap) and performs basic image processing tasks like Zooming/Shrinking, Histogram equalization, basic filtering in both spatial and frequency domains, noise reduction etc. Now I have some basic exposure to C++ coding before but I've never worked with VC++ before and am completely lost trying to build the...
Started 5 days, 4 hours ago (2009-11-24 06:39:00)
by Antonio1
I have a lot of data that is on media files such as Access or Excel and I want to insert these data into a MySQL database without having to copy. I am using Microsoft office 2003. Second thing Automatic change of colors in a chart (histogram) with EXCEL. How can I do this. I had tried with font colors but not working.
Started 2 days, 12 hours ago (2009-11-26 22:53:00)
by KeSue
I've just imported photographs taken with a new camera (Canon 7D). The photos look fine at first, whilst rendering the preview and the histogram is "calculating ...", but then change, becoming darker, with an orange cast. This is not happening to all the photos, but all were taken in the same lighting, with flash. I've seen this happen with importing photographs from other Canon cameras (300D,...
Started 3 days, 7 hours ago (2009-11-26 03:40:00)
by twipot
Hi, I have a column of scores in Excel. I need to construct a histogram where in the x axis the scores are split into groups with 3 points between each (If the min score is 300 and the max is 330, it goes like 300-303, 303-306 and so on) and in the y axis the number of people whose score is in between these numbers. I have no idea about how to choose my data ...
Started 18 hours, 46 minutes ago (2009-11-28 16:12:00)
by paranjr
Re: Using Histogram function in VBA One more problem. I tried to make the bins automatically with the following code: Sub Make_Bins(M As Long) Dim i As Long, j As Long Dim Length As Single ReDim breaks(M) As Single Length = (Max(Data) - Min(Data)) / M For i = 1 To M breaks(i) = arr(1) + ...