Questions tagged [describe]

psych library function - used primarily to scale construction and for item analysis using classic psychometrics

Part of the psych library. Used primarily for scale construction and item analysis using classic psychometrics - meaning it displays the most frequently requested stats in psychometric and psychology studies.

Also used with its range flag to check for early coding errors in various analytic and statistical programs.

126 questions
0
votes
1 answer

pd.describe(include=[np.number]) return 0.00

I use the df_30v.describe(include=[np.number]) to give me the summary on my variables in the data frame. However the result is something with too many digit count 235629.000000 235629.000000 235629.000000 119748.000000 how can i get the…
Pumpkin C
  • 1,452
  • 6
  • 21
  • 27
0
votes
0 answers

Mocha/Chai - Conditionally invoke desired it block uder describe block

Suppose I have before hook at the beginning of describe block, where GET API is called to return array of some objects if data is present in database, otherwise it returns empty array. First it block under describe is ok, it will check response…
user3681549
0
votes
1 answer

Writing results from "desribe" into a matrix changed the Matrix in R-Studio from Data to Value

I learning since 1 month "r" und working with r-Studio. Now I have following Problem: I want to describe a Dataset with the function "describe". After that, I want to write the results into a table, defined with the function Matrix. I write this…
0
votes
1 answer

describe() from psych package not providing full descriptives

I need the full descriptives including all the moments, but when I use describe() from psych package, it doesn't give me the options I specify, for example skew and kurtosis, but it gives me all the deciles which I haven't specified for. Can't…
Deidgar
  • 11
  • 4
0
votes
0 answers

how can i see all contents of describe function in R

I used describe function in R for analyze big data. My bigdata has 74,836 obs & 147 variables. And I input describe(Data name) But.. I can't see all contents in console page. only I can see about 90% data contents. this image is result. Many…
서영재
  • 96
  • 1
  • 9
0
votes
1 answer

MYSQL Show specified column names

There are mysql-methods like "Show column_name" or "DESCRIBE table". But how can I get only specified column names? column names: id,name,values,info -> Get only column names: id,name (not also values,info).
icemanzzz
  • 11
  • 2
0
votes
1 answer

how to order the results of a `describe ` statement in SQL?

I want to be able to order the column names when I do a describe statement in SQL: use ; describe ; What do I order it by? use ; describe order by ; Thanks.
makansij
  • 9,303
  • 37
  • 105
  • 183
0
votes
1 answer

Python - Pandas: combination of unique rows and their statistics

I have been searching through the web whether there is a simple method when using python/pandas to get a dataframe consisting only the unique rows and their basic stats (occurences, mean, and so on) from an original dataframe. So far my efforts came…
0
votes
1 answer

Cannot describe a Hive table created using avro serde

I have created a Hive table with Avro serde. Below is the code that I have copied from a website to create my table. create table NEW_TABLE row format serde 'org.apache.hadoop.hive.serde2.avro.AvroSerDe' stored as inputformat…
user4503253
0
votes
2 answers

What does "Standard" mean in the datatype column of describe

if you Describe dbms_transform PROCEDURE COMPUTE_TRANSFORMATION Argument Name Type In/Out ------------------------------ ----------------------- ------ MESSAGE STANDARD IN…
Mark Brady
0
votes
1 answer

Pandas Dataframe from NumPy array - incorrect datatypes and can't change

I am trying to sort the following Pandas DataFrame in Python: import numpy as np import pandas as pd heading_cols = [ "Video Title", "Up Ratings", "Down Ratings", "Views", "User Name", "Subscribers", ] column_1 = [ …
edesz
  • 11,756
  • 22
  • 75
  • 123
0
votes
1 answer

latex table from describe function in Hmisc

I've been trying to get a latex output for the table below by adding latex(describe) or latex(xtable) before the requested fuction in Hmisc but that does not work. Any idea of where the error is? <
yojan2001
  • 21
  • 3
0
votes
2 answers

R: Produce machine-readable output for summary / describe

I have a data frame with 10k rows and 500 columns. For each column, I want to create a count for each unique value in the row. E.g. Fruit Vegetable Meat 1 Apple Carrot Steak 2 Apple Potato Chicken 3 Pear Peas…
MA2
  • 43
  • 4
0
votes
1 answer

Why doesn't mysql use the index key?

I have 1 table locations and 4 identical tables: countries, regions, provinces, cities All tables are InnoDB All tables have a column id which is Primary, Non-Null, Unsigned Int, Auto-Increment All tables have a column name which is Non-Null,…
nl-x
  • 11,762
  • 7
  • 33
  • 61
0
votes
1 answer

Plot results from describe.by{psych} output

I have the results from a describe.by{psych} applied on a dataframe. The results is a list. List of 1000 $ 1 :Classes ‘psych’, ‘describe’ and 'data.frame': 20 obs. of 13 variables: ..$ var : int [1:20] 1 2 3 4 5 6 7 8 9 10 ... ..$ n …
user1882633
  • 153
  • 1
  • 2
  • 9
1 2 3
8
9