-
Notifications
You must be signed in to change notification settings - Fork 0
/
labeled_dataset_200.csv
We can't make this file beautiful and searchable because it's too large.
8697 lines (7771 loc) · 917 KB
/
labeled_dataset_200.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Position,Link,Company,Location,Job Description,Python,SQL,R,VBA,C,C++,C#,Java,JavaScript,HTML,Ruby,RDBMS,NoSQL,Access,Excel,Word,PowerPoint,Sharepoint,ETL,Oracle,Snowflake,Tableau,PowerBI,Looker,QilkView,MicroStrategy,Plotly,Matplotlib,Seaborn,Pandas,NumPy,Statistics,Probability,Hypothesis Testing,A/B Testing,MATLAB,Time Series,Regression,Classification,Clustering,Predictive Modeling,Tensorflow,Pytorch,Scikit-Learn,Hadoop,Spark,Hive,Databricks,SAP,SCM,CRM,ERP,SAAS,PeopleSoft,Agile,Teamwork,Presentation,Reporting,Verbal,Written,Detail-oriented,Motivation,Adaptability,Good attitude,Problem-solving,Critical-thinking,Time management,Project management
Board Certified Behavior Analyst,https://www.indeed.com/pagead/clk?mo=r&ad=-6NYlbfkN0CMCrtsX_tXXu32Hs4auRsvZI6zMCwFKKCOoJBu0ZKj7EsYLSjIiMYxOzuB6Y7SwXBrbsHvgSuOM5_e8ILjtAtNQwWpS6ku6aSEdD7s5ytoN73kUrcmBf9dYlccu9I1NPFZ0e2lsIZX8t-dwir51MvsKCYC1mOB5xBDKwcZA9vUL1PI0Opo_sIjqRwaYSrfmN3rqDtJmXNiIsqvooIsa2SpJxcxiM-ZyXIGZpjfe3M6BZ86jeC-HTMA_Ffu3kfHv2tKSR6ioKZ9sGYFK5ZKUthrIW9FyIkOFOJ1qeMWkHZqQM5W0UQ6wbfU9VS5ZktZ8D-_WCY81tbPgi5K49lC3YVZg6GKUqAXkRbDTnM_n8rEZyYFkVFKefALOftNl3DjtCI_9KeklyiuFD2Q3cZUWdEqMDEuwc_ALmrTcohgx726R63FhSSdRrFrXgladEmFhKdqSckFmh9kzhTWaNCHRASMZRt9MavXB1GhGepYDb8POuJ6YAtoU83jmNVGGJgvGJ6VKSGh2HbU_4XCP04x6p7Qn9HZ4sZUdUXy-ys9_hiij66UJZU7C8nxt9qUGSAFSUUrRa3gZvLF9046hlSuuVwVUs__kETzuSi4ElkEJom3W1QEWqyOsbsIHy7qez6qMn7c2KemcDXGJOH1w6f02SPvUI5o0lQsntPOb4pzNfmB-G5NdTaLgnjwJiFi1hLtzu4P1GMqZFgSkeXx5FzRue-o-EH2H7rDYCY=&xkcb=SoC-6_M3CDXejw2aYx0LbzkdCdPP&camk=4HOcmqOLYrA0g0PA4ySgHA==&p=0&fvj=1&vjs=3,Impact Learning & Development,"Rapid City, SD 57702","Job Description
The BCBA will provide support to individuals and their families by coordinating and providing services in Applied Behavior Analysis, functional analyses and assessment, behavior acquisition and reduction procedures, and adaptive life skills. A BCBA will also oversee programming of associate behavior analysts and provide ongoing support and supervision to Behavior Technicians (BT) as it relates to the implementation and documentation associated with Behavior Support Plans and Treatment Plans.
This is a 40-50 hour per week position (25 billable hours per week) working closely with members of the treatment team in a fast-paced, client-focused, school-based environment.
What we do
Our mission is to impact the lives of children, families, and communities together through top-notch therapeutic and behavioral health services. We believe that every child should receive the services that help them grow to their full potential. We provide this through applied behavior analysis and speech & language therapies within the clinic, school, and (when appropriate) home settings.
Make a Difference
Be a part of making a positive impact on the lives of children, families, caregivers, and the community in the beautiful Black Hills of South Dakota. We believe in teamwork and collaborating to ensure the best services for every child that comes into our care.
Essential Duties and Responsibilities
The essential functions include, but are not limited to the following:
Function in a supervisory capacity and provide oversight to all areas of programming including the training of direct support professionals, person centered strategies consultants (if applicable) and DSP trainers.
Assist in the development, facilitation, and follow-up training in Applied Behavior Analysis, using both discrete trial training and natural environment training models of teaching.
Facilitate and assist in the development and identification of resources and support information for clients and their families
Provide model teaching and other direct instructional supports including, but not limited to, practicum supervision/teaching, class instruction and in-service instruction to other support professionals.
Assist in the development and implementation of assessment tools, to conduct functional assessments and analyses when appropriate, and to develop appropriate behavior strategies to teach appropriate behavior and reduce maladaptive behaviors.
Provide ongoing support and training to direct support professionals, ABA implementers, and other individuals in support roles for families
Ongoing training and supervision of paraprofessional staff in implementation of ABA principles and methodology and behavior reduction strategies.
Create ongoing data collection system to establish baseline and programmatic efficacy for all consumers, and to analyze data on a frequent and ongoing basis to guide programming.
Develop behavior plans/treatment plans for all consumers with a focus on teaching and other antecedent strategies for reducing problematic behavior(s).
Meet as needed with supervised staff to discuss ongoing consumer issues and to provide support when necessary.
Review and sign off on behavior plan/treatment plan training for all field staff and provide field supervision when necessary.
Utilize ReThink website to enter session notes within 24 hours of each session.
Provide consultation services and to maintain ongoing communication with all constituents (other supports, parents, community, and community agencies).
Keep current with the literature, new research findings and resources. In addition, continuing education courses to maintain BCBA certification are necessary (minimum of 32 credits every 2 years).
Maintain all data, paperwork, and communication between personal care staff and families, and to provide ongoing feedback to government related agencies that contract with such families.
Perform other duties as assigned.
Minimum Qualifications (Knowledge, Skills, and Abilities)
Master’s degree (special education or another related human services field)
Ability to demonstrate competence in behavior management skills, instructional skills, oral and written communication, organizational skills, and interpersonal relations
Ability to work with a variety of clients regarding age, functionality, and with minimal direction
Knowledge of Word Excel, Teams, and Outlook systems
Ability to respond quickly to phone calls, text messages, and e-mails
Availability to provide services during the daytime hours/school hours
Demonstrated experience in organizing, developing, and implementing services and programs in an educational setting.
Physical Demands and Work Environment
The physical demands described here are representative of those that must be met by an employee to successfully perform the essential functions of this position. Reasonable accommodations may be made to enable individuals with disabilities to perform the functions. While performing the duties of this position, the employee is regularly required to talk or hear. The employee frequently is required to use hands or fingers, handle or feel objects, tools, or controls. The employee is occasionally required to stand; walk; run; sit; and reach with hands and arms. The employee must occasionally lift and/or move up to 40 pounds. Specific vision abilities required by this position include close vision, distance vision, and the ability to adjust focus. The noise level in the work environment is usually low to moderate.
Note
This job description in no way states or implies that these are the only duties to be performed by the employee(s) incumbent in this position. Employees will be required to follow any other job-related instructions and to perform any other job-related duties requested by any person authorized to give instructions or assignments. All duties and responsibilities are essential functions and requirements and are subject to possible modification to reasonably accommodate individuals with disabilities. To perform this job successfully, the incumbents will possess the skills, aptitudes, and abilities to perform each duty proficiently. Some requirements may exclude individuals who pose a direct threat or significant risk to the health or safety of themselves or others. The requirements listed in this document are the minimum levels of knowledge, skills, or abilities. This document does not create an employment contract, implied or otherwise, other than an “at will” relationship.
Job Types: Full-time, Part-time
Pay: $62,000.00 - $69,443.00 per year
Expected hours: 20 – 40 per week
Benefits:
401(k)
401(k) matching
Dental insurance
Health insurance
Life insurance
Paid time off
Professional development assistance
Retirement plan
Vision insurance
Compensation package:
Bonus opportunities
Patient demographics:
Children
Schedule:
Day shift
Monday to Friday
Travel requirement:
No travel
Education:
Master's (Required)
License/Certification:
BCBA (Required)
Ability to Relocate:
Rapid City, SD 57702: Relocate before starting work (Required)
Work Location: In person",0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0
Board Certified Behavior Analyst (BCBA),https://www.indeed.com/pagead/clk?mo=r&ad=-6NYlbfkN0Du8Zs55xZGpRBKTwx5DTxM4P3qc-LzbNQoFzvScOQzpH6qiqAgwOcZ9KmSSE5qeZzQ8k5PvzF13CN-PS8AjvME63ec8RM8LEAGLCcFp7hbetm9NZHNakfGQA94S8GUXp6QVCDDQEONmBEbtrEwvwNd6NIurW8Dhd5lPtNRtrkQaOfTVpjPyOLHGNIMnHIEcIyeaxYYmosT-_nhgDPK8LgoXAhiu57a4pjqu21ljnKgWfKgqauOcYe3oooLKqAEYhk6FW-RuSWqqOOAGx0neT7HFZ0XPRB8FjgAqjByKfTFumsUfaEtdN-5jqhaIYYcxpOi-l9ddJ3Abs0WEz_DhOIbTyR_4cJDPRMQt3Oykgf2vJ5PKIzDpPF4Aqsvj2kOux9DSRnxMO3WRaMWi0bYmdw-HMfgRszjXiMMymM07ODYc6Vn3748fm_ZwMMTeBKx4ceTygqPtJkPBn4yFnpaD4kiHgDUiQh2OZLsXOTtnJZEFQvhqU2ajbb2EHJXVVF1G4Lb1dOWYbsA2Cyvx-WHQPEj6yD-mT4y3zCHqVtR28S7o_gLhweJ7aeM4URKK1GB6XMzgsJkS18pEhY-X0crHg8mtzcy-HDnqOg3wuh40jYxWI8146D_ioHXiN_hM-rjJoU6vlN7zhfMWMoIiQUds6FrlxSIEr0F5S1B9AUVZWECLQ==&xkcb=SoAK6_M3CDXejw2aYx0KbzkdCdPP&camk=4HOcmqOLYrBnjXier447wA==&p=1&fvj=1&vjs=3,Proven Behavior Solutions,"West Bridgewater, MA","PROVEN BEHAVIOR SOLUTIONS VOTED TOP PLACES TO WORK 2020 & 2021 BY THE BOSTON GLOBE AND BEST PLACES TO WORK BY BOSTON BUSINESS JOURNAL 2018 & 2019!!!
Proven Behavior Solutions is a leading provider of innovative and person-centered behavior analysis services. We are committed to fostering a positive and collaborative work environment that values growth, professionalism, and excellence in applied behavior analysis. We pride ourselves on being experts in our field with a passion for serving the Autism community. Headquartered in Massachusetts, our clinical team is made up of highly experienced Board Certified Behavior Analysts (BCBAs), Speech and Language Pathologists (SLPs), Occupational Therapists (OTs), and Registered Behavior Technicians (RBTs), proficient in using the principles of Applied Behavior Analysis (ABA) to change the lives of children and teens with ASD and their families.
GENERAL SUMMARY
We are seeking a highly skilled and motivated BCBA to join our dynamic team. You will play a crucial role in conducting assessments, designing ABA programs for skill acquisition and behavior-reduction plans, parent training, and ongoing supervision and training of Registered Behavior Technicians (RBT’s) in both clinic and home-based settings. This is an exciting opportunity to make a meaningful impact on the lives of those we serve while working in a supportive and forward-thinking organization.
ESSENTIAL JOB FUNCTIONS
Develop treatment goals based on direct and indirect assessments
Conduct Functional Analysis (FAs) to develop effective and individualized behavior intervention plans
Provide supervision and training to behavior technicians and other team members
Directly observe treatment implementation for potential program revision and to ensure consistency across team members
Collaborate with families, caregivers, and other professionals to ensure a comprehensive and holistic approach to treatment
Collect and analyze data to evaluate the effectiveness of behavior intervention plans and make necessary adjustments
Provide training and supervision to team members working towards their BCBA credential
Prepare biannual or quarterly progress reports as required by various funding sources
Use Proven Behavior Solutions’ methodologies and formatting to ensure continuity across the Proven Team
Stay current on the latest research and best practices in applied behavior analysis
OTHER DUTIES AND RESPONSIBILITES
Attendance and instruction at regular staff meetings and company-wide training days.
Completion of required service summary forms
Weekly entry of ABA hours delivered to clients into utilization tracker
SUPERVISORY RESPONSIBILITY
Clinical Supervisor to Behavior Technicians (BT’s)
PREPARATION, KNOWLEDGE, SKILLS, AND ABILITIES
Masters and/or Doctoral degree in Applied Behavior Analysis (preferred), Psychology, or Special Education
Valid and current certification as a BCBA/BCBA-D, LABA
At least one year experience working as a BCBA and 3 years’ experience in ABA
Strong supervisory skills and a willingness to accept and provide regular feedback
Proven ability to communicate effectively and ability to work independently and as part of a team
CPR/BLS preferred
Valid driver’s license
Strong organizational and time-management skills
WORKING CONDITIONS/PHYSICAL DEMANDS
Ability to occasionally life children, materials, or equipment weighing up to 50 lbs.
Frequent standing, walking, bending, sitting, kneeling, crouching, or crawling
Ability to occasionally life materials or equipment weighing up to 25 lbs.; lift and arrange meeting room chairs, folding tables, flip charts, projectors, video recorder, boxes of supplies, etc.
Ability to perform regular office duties
ADDITIONAL BENEFITS
Unlimited Vacation
The above statements are intended to describe the general nature and level of work being performed by people assigned to do this job. The above is not intended to be an exhaustive list of all responsibilities and duties required.
Job Types: Full-time, Part-time
Pay: $73,000.00 - $85,000.00 per year
Benefits:
401(k)
401(k) matching
Continuing education credits
Dental insurance
Employee assistance program
Flexible schedule
Flexible spending account
Health insurance
Life insurance
Paid time off
Parental leave
Professional development assistance
Referral program
Retirement plan
Tuition reimbursement
Vision insurance
Compensation package:
Bonus opportunities
Performance bonus
Patient demographics:
Children
Schedule:
Monday to Friday
Application Question(s):
Are you a BCBA?
License/Certification:
license to practice ABA therapy in Massachusetts (LABA)? (Required)
Ability to Relocate:
West Bridgewater, MA: Relocate before starting work (Required)
Work Location: In person",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0
Board Certified Behavior Analyst (BCBA),https://www.indeed.com/pagead/clk?mo=r&ad=-6NYlbfkN0DdDMyOOOBwH3K8RvtOOgTV3jL4WupXxAp2PfI25_4KJaW9izcJoXD80Q40qih6nC4AKoNBBurxsP3gOrpFe4EVZSyUKgFEpSolXCLHHKpvNrxW7kQrM-wwuKlmJSjbY7tCbbDqfiGTzJTOMfQDVF5yw1_YIdxkZZ0k4X_bUBqUJD_l3YQALj8KK7GYNKJQJMzCZYLS0J5zGxTFQ17uEXBfLl9MsfoeQEKoxsBAnJGVPgpK9xX41CJg6C68ovk3aG-KVkIhPPnIGYg0Iijt65HIEcyu_KRbVAERgYnza6k3lLu7KiAR07kP7r6eWRan5_n0KmKStLxNLUDfOmdN5j-7GffH6em-NAV38-ek-Snt2w-wAq3fAM-Lr4Mt5iX2qFi-qxDjlRK0kTbl0IIx1VvpgdNNaZDI170AnF2Vxu6uMHvh7FiDBvaatx41CfTWSL1hQJ3Cz7UXZa8MwmUyxX3sWoLclo_XKuPIk6j2VDDPLiVA2FRCUnIEkFLwZIAnLBE6rbHOhSfHbcSopyFExCjvyYOpSW3tPgCuqG1dWiooChs1V3_U8LBeIX5cB0osZBmV9ZhLP6Xtiv3lBeqz6YrCHaYgRalLvW5wUFYqRXpd9JUbhRpBfp4qOgUSAx-P5LAOaiM5a-Ko8DXB9vLVW9du&xkcb=SoCX6_M3CDXejw2aYx0JbzkdCdPP&camk=4HOcmqOLYrAIxv9NP5Cdyg==&p=2&fvj=1&vjs=3,Keystone Autism and Behavior Interventions LLC,"Hillsboro, OH","Board Certified Behavior Analyst (in-home services)
Minimum Qualifications:
-Master’s degree in Education, Counseling, or related human services field;
-Successful completion of internship and/or formal training in the analysis of behavior and instructional strategies training related to working with clients who have pervasive developmental disorders and related disorders, their parents, and other agencies working with clients.
-Certification as a Board certified Behavior Analyst by the Behavior Analytic Certification Board.
-Certified Ohio Behavior Analyst licensure by the Ohio State Board of Psychology.
-Clean background check
-Holds an npi number and CAHQ number
-Ability to demonstrate competence in behavior management skills, instructional skills, oral and written communication, time management, organizational skills and interpersonal relations
-Ability to work with a variety of clients in regard to age, functionality, and with minimal direction -Certified as a BCBA for a minimum of 2 years, preferred
-Knowledge of DTT programming and implementation
-Knowledge of gmail, google drive, docs and sheets systems
-Ability to respond quickly to phone calls, text messages, and emails
-Flexible availability which includes Monday through Friday 8am-7pm at minimum
-Current on all required trainings/certifications including the bacb 8-hour supervision course
-Driver’s insurance on file with HR Department
-Transportation that is reliable and insured in the state of Ohio
-CPR/BLS certification
Reports to: Owner/Director of Operations
Job goal: The BCBA will provide support to individuals and their families by coordinating and providing services in Applied Behavior Analysis, functional analyses and assessment, behavior acquisition and reduction procedures, and adaptive life skills for both medically necessary treatment as well as educational services.
A BCBA will also oversee programming of associate behavior analysts and provide ongoing support and supervision to Direct Support Professionals (DSP) as it relates to the implementation and documentation associated with Behavior Support Plans.
Responsibilities-
-Function in a supervisory capacity and provide oversight to all areas of programming including the training of direct support professionals, person centered strategies consultants (if applicable) and DSP trainers.
-Assist in the development, facilitation, and follow-up training in Applied Behavior Analysis, using both discrete trial training and natural environment training models of teaching as well as other evidence based methodologies as appropriate.
-Facilitate and assist in the development and identification of resources and support information for clients and their families
-Provide model teaching and other direct instructional supports including, but not limited to, practicum supervision/teaching, class instruction and in-service instruction to other support professionals.
-Assist in the development and implementation of assessment tools, to conduct functional assessments and analyses when appropriate, and to develop appropriate behavior strategies to teach appropriate behavior and reduce maladaptive behaviors.
-Provide ongoing support and training to direct support professionals, ABA implementers, and other individuals in support roles for families.
Job Description –
-Ongoing training and supervision of paraprofessional staff in implementation of ABA principles and methodology and behavior reduction strategies.
-Utilize an ongoing data collection system to establish baseline and programmatic efficacy for all consumers, and to analyze data on a frequent and ongoing basis to guide programming.
-Develop behavior plans/treatment plans for all consumers with a focus on teaching, skill building and other strategies for reducing problematic behavior(s).
-Meet as needed with supervised staff to discuss ongoing consumer issues and to provide support when necessary.
-Review and sign off on behavior plan/treatment plan training for all field staff and provide field supervision when necessary.
-Complete competency assessments for supervisees pursuing RBT certification
-Enter session notes within 72 hours of each session.
-Provide consultation services and to maintain ongoing communication with all constituents (other supports, parents, community, school personnel, and community agencies).
-Keep current with the literature, new research findings and resources. In addition, continuing education courses to maintain BCBA certification are necessary (32 credits every 2 years).
-Maintain all data, paperwork, and communication between personal care staff and families, and to provide ongoing feedback to government related agencies that contract with such families.
-Perform other duties as assigned.
Job Types: Full-time, Part-time
Pay: $60.00 - $72.00 per hour
Expected hours: 10 – 20 per week
Schedule:
Monday to Friday
Work Location: Multiple locations",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,1,0
Board Certified Behavior Analyst (BCBA),https://www.indeed.com/pagead/clk?mo=r&ad=-6NYlbfkN0BPHwbOcgzm-bvXsdbZDfZm0sUjT3CQnQGZq8e4xCt3nSFoyAoW4RAJzaR6mf5GXfcv7wnAiER2dtdlE3L8Eg6aZvuafsdFcwfgJpBLbULiFleV1SZShdovPlSnRn2lk1auqW83Zy1m1ZvXY4J_3dmds49PTmn2y5WLyYTz_N7xeu0J98jLmb2cfukz0HWjx9P50ABHa6CLPu3-HOJdfj5Z5EqUD6ENffy7YoevS_MDukXkA-HMuae7Wk9_bert5K8E22ELqRRszxrJFuL5M_OIWMA2IOXVi9NHbT9y3E7Z8NN6cGqpeujgyad9MZVQr95QzoDTOkWGyhaGKSOH3kmS2QJyKS9F1xCHm13kdZmfOgMki7nPcpKco1kAftkWZNZYO-9Y3wHKGXBnp0bLetMc_pmwgjPoVjwrWFlhtSwMM5FbvctYStp7E5eYgc9ZTWM0CK5W2Wyu776qFEFRcbP2VMuRuYpjwJ_yF-JHtb9jqm0w2mF9nCKIbGmcQ6V7Dg4rt8-W05pyE26l8bOhiA6QC2J68FOV7aQtTU55Qel9913lpovsaVNhaTk7xc1DN_1XTQn1xzDLWAMkuEnS_V9PR_Lb2jrOOQ8276xf1mum-Y7z_IoZDtqOJqKSgqgbT47JqJIsVKWCrrCpGc66hZ9E&xkcb=SoAj6_M3CDXejw2aYx0IbzkdCdPP&camk=4HOcmqOLYrDy22ibSdY2Zw==&p=3&fvj=1&vjs=3,Pathways Autism Center,"Atlanta, GA 30328","Pathways Autism Center is currently hiring for full-time and part-time Board Certified Behavior Analyst positions in our Sandy Springs, Johns Creek and Marietta clinics. In addition, we have positions available in our school consultation program.
Base pay for full-time salaried positions starts at $80,000.00 - $100,000.00 per year with the opportunity for relocation assistance. Part-time positions range from $60-70 an hour, fee for service.
Pathways is a leading provider of ABA therapy services in GA. We are a family owned business and have won awards in excellence, Behavioral Health Center of Excellence (BHCOE), Georgia Small Business Persons of the Year by US Small Business Administration (SBA), and Small Business “Success Story” by the Small Business Development Center of GA.
BENEFITS
Comprehensive Health, Dental, and Vision benefit package
Aggressive Monthly Bonus Plan
401(k) Company Match
Robust Paid Time Off (PTO)
Company Holidays
Flexible Scheduling
CEU Reimbursement and Conference Attendance
Work Life Balance
Opportunities for leadership and career advancement
JOB DESCRIPTION
A board certified behavior analyst (BCBA)is responsible for developing effective treatment for children with ASD, providing supervision and training to staff to oversee treatment fidelity, and collaborating with colleagues in an energetic and supportive environment and focused on quality and ethics.
RESPONSIBILITIES:
Provide regular training and support to direct care staff implementing treatment protocols in clinic, school, and community settings
Complete functional behavior assessments (FBAs), functional analyses (FA), and design behavior intervention plans for clients, to include follow through and support assistance for correct implementation
Design skill acquisition protocols inclusive of developing communication, social skills, independence, and behavior skill sets
Regularly review and analyze data to determine program and treatment outcomes and train and support staff on correct data collection measures
Provide oversight to cases, staff and family to make sure all company policies are followed and that treatment is provided according to ethical and best standards of practice
Provide regular training to parents and multidisciplinary professionals pertaining to applications of ABA
Comply with organization, state and federal regulations set forth to include professional development, safety training, confidentiality policies, and adhere to the BCBA task list
Work collaboratively with other therapists, providers, BCBAs, and school staff for effective programs
Demonstrate positive attitude and professional and ethical conduct at all times
Participate in all team meetings and company wide trainings as designated by supervisor and organization
Maintain good standing and certification status with the Behavior Analyst Certification Board (BACB®)
Performs other related duties as assigned by management
QUALIFICATIONS:
Hold a minimum of a master’s degree (BCBA) or bachelor's degree (BCaBA) in related field (education or psychology)
Hold a certification as a BCBA or BCaBA and be in good standing with the BACB®
Experience with designing treatment protocols, behavior intervention plans and skill acquisition programs using behavior analytic principles with individuals with developmental disabilities and autism
Experience collaborating with other professionals and therapist to implement practices and principles of ABA in clinic, home, community, and school settings
Experience with delivering direct instruction/implementation of skill & behavior protocols
Experience training staff, parents, and direct care workers in implementation of ABA
Completed the supervision and ethics requirements outlined by the BACB®
Maintain current CPR and First Aid requirements
Please visit our careers page on our website at www.pathwaysbehavior.com or our Indeed page to learn more about the BCBA position and other opportunities at Pathways Autism Center.
Equal Opportunity/Affirmative Action Employer; M/F/D/V
Pathways Autism Center is proud to be an Equal Employment Opportunity Workplace. We are committed to building a team that represents a variety of backgrounds, perspectives, and skills. The more inclusive we are, the better our work will be.
The above is intended to describe the general content of and requirements for the performance of this job. It is not to be construed as an exhaustive statement of duties, responsibilities or physical requirements. Nothing in this job description restricts management’s right to assign or reassign duties and responsibilities to this job at any time. Reasonable accommodations may be made to enable individuals with disabilities to perform the essential functions.
Job Type: Full-time
Pay: $80,000.00 - $100,000.00 per year
Benefits:
401(k)
Dental insurance
Flexible schedule
Health insurance
Paid time off
Vision insurance
Schedule:
Monday to Friday
Supplemental pay types:
Bonus opportunities
License/Certification:
BCBA (Required)
Work Location: In person",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0
Senior Data Analyst,https://www.indeed.com/rc/clk?jk=1e61371557d55bce&bb=PtdRPYyO0eJYZ_rwRr22-Ijzz1DQAdYkf1ijyskUKOzr2TnKiucIbpNZHVPPVb5uJRHhwm3oyUGjgr37bLTsgn8LD_6olPjec7-opGMkfmOZUYvF1nIj3g%3D%3D&xkcb=SoBZ67M3CDXejw2aYx0PbzkdCdPP&fccid=88e1dcd0cd0bffc1&vjs=3,Calendly,"Remote in Atlanta, GA 30363","About the team & opportunity
What's so great about working on Calendly's Operations team?
We are the infrastructure of our business that allows us to scale to new heights.
Why do we need you? Well, we are looking for a Senior Data Analyst who will bring a strong business acumen, expertise in visualizing data for a broad audience, and an expert at SQL with the ability to parse out data irregularities and optimize queries. You will report to the Senior Manager of Corporate Analytics and will be responsible for cross functional reporting and ad hoc analysis that span multiple departments and stakeholders.
As a Senior Data Analyst, you will be a key player in connecting departments through data-driven insights and crafting compelling stories. Utilizing Tableau for dashboard creation, notebook tools for ad hoc analyses, and crafting decks that drive a business narrative, you will play a crucial role in supporting Finance and the business as a whole.
A day in the life of a Senior Data Analyst at Calendly
On a typical day, you will be working on weaving intricate information into dashboards, ad hoc reports, or in depth analysis that empowers decision-making across Calendly. You will lead projects and provide in-depth analysis to answer valuable business questions for our stakeholders. This is your chance to influence Calendly's journey and shape its future through the power of data. You'll collaborate with a passionate, growing team driven by a shared love of uncovering knowledge and empowering stakeholders to make informed choices.
Build and maintain cross-functional business dashboards in Tableau and Hex to ensure clear and accessible insights
Perform complex and deep analysis requiring multiple methods and tools (SQL, Python, Google Sheets, and visualization tools)
Partner with the business to find the key business questions needing answers and effectively communicate results across all levels of the organization
Catalog and define key business metrics in dbt and contribute ideas to shaping new data models in BigQuery, enhancing the overall data infrastructure
Become a champion of efficiency and growth by focusing on strategic, systems-minded analysis with an eye on optimization and process transformation
What do we need from you?
7+ years of hands-on experience in a role focused on analytics or business intelligence (must be writing SQL daily with varying levels of complexity)
Advanced proficiency in SQL (we use BigQuery) and data analysis/visualization tools (Tableau and Hex)
Experience with process automation (i.e. redesigning legacy google sheet or excel workbooks into automated reports via SQL or Python)
Proficiency in quantitative analysis, statistics, and business intelligence query tools, demonstrating the ability to derive actionable insights from complex data sets
A talent for translating detailed data into clear, actionable recommendations suitable for diverse audiences, showcasing your ability to bridge the gap between technical and business perspectives
Experience collaborating across teams, toggling between technical intricacies and broader business objectives to drive effective decision-making
Strong presentation and data storytelling skills, with the ability to translate complex logic into easily understandable insights and recommendations
Authorized to work lawfully in the United States of America as Calendly does not engage in immigration sponsorship at this time
What's in it for you?
Ready to make a serious impact? Millions of people already rely on Calendly's products, and we're still in the midst of our growth curve — it's a fantastic time to join us. Everything you'll work on here will accelerate your career to the next level. If you want to learn, grow, and do the best work of your life alongside the best people you've ever worked with, then we hope you'll consider allowing Calendly to be a part of your professional journey.
Our Hiring Process:
We aim to provide an inclusive and equitable candidate experience to everyone who expresses interest in working at Calendly. To learn more about our hiring process, please visit our careers page at www.careers.calendly.com.
Once selected for an opportunity, the recruiter assigned to the role will keep you informed every step of the way. Have questions? Let your recruiter know! Want to share your experience? We are passionately committed to improving and building on our process, and we consider feedback a gift.
If you are an individual with a disability and would like to request a reasonable accommodation as part of the application or recruiting process, please contact us at [email protected] .
Calendly is registered as an employer in many, but not all, states. If you are located in California, Alaska, Hawaii, Montana, North Dakota, South Dakota, Nebraska, Iowa, West Virginia, and Rhode Island, you will not be eligible for employment. Note that all individual roles will specify location eligibility.
All candidates can find our Candidate Privacy Statement here
Candidates residing in California may visit our Notice at Collection for California Candidates here: Notice at Collection
Compensation is based on a variety of factors including but not limited to location, experience, and job-related skills. In addition, Calendly offers a wide range of best in class total rewards. This includes comprehensive employee benefits like healthcare, dental, vision, parental leave, 401(k) match, paid time off, and much more. At Calendly we believe exceptional performance deserves exceptional rewards! During the hiring process, we are committed to sharing details about the compensation range for the position, enabling you to make an informed decision.
Please note that the compensation details listed in role postings reflect the base salary only, and do not include bonus/commission, equity, or benefits.
Base Pay Range National - Salary
$103,700—$140,300 USD",1,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0
Data Analyst,https://www.indeed.com/rc/clk?jk=b77f67967a6becbe&bb=PtdRPYyO0eJYZ_rwRr22-OQdraSGt3YARSqxyaiP5XmNiSEZIm8kcUcPOXYq1n8EvtFMykVdTG87PKQBJZv-S0qkbpM8S2AknZa_Smr-gAc%3D&xkcb=SoDt67M3CDXejw2aYx0ObzkdCdPP&fccid=f4c6ba597fc7aa75&vjs=3,Baker Hughes,"Stafford, TX 77477","Data Analyst
Would you like the opportunity to develop your career with a global energy company?
Become part of a global leader in inspection and engineering services
About the team
Quest Integrity, a Baker Hughes company, is a global leader in assessing the reliability of critical assets for the energy and process industries. Quest Integrity employs leading-edge technology and subject matter expertise to help companies improve the uptime, performance and longevity of their assets.
Partner with the best
The Data Analyst is responsible for accurate and timely analysis of ultrasonic (UT) in-line inspection (ILI) data. Working with the pipeline services team to efficiently process and analyze data, they will support assessment engineers with fitness-for-service assessments and finalization of reports for state-of-the-art inline inspections of pipelines.
As a Data Analyst, you will be responsible for:
Completing assigned trainings and practice data sets to learn UT data analysis.
Evaluating and analyzing data acquired during an in-line inspection under the supervision of current level I, III or III Data Analysts.
Supporting engineers in fitness-for-purpose assessments of pipeline condition.
Fuel your passion
To be successful in this role you will:
Bachelor’s degree preferred. High School diploma/GED required.
Possess computer skills and ability to quickly learn and adapt to proprietary software applications.
Have written and verbal communication skills.
Be customer focused, with an excellent attention to detail and an ability to work in a team environment.
Work in a way that works for you
We recognize that everyone is different and that the way in which people want to work and deliver at their best is different for everyone too. In this role, we can offer the following flexible working patterns:
Please talk to us about the specific working patterns available when you apply.
Working with us
Our people are at the heart of what we do at Baker Hughes. We know we are better when all of our people are developed, engaged and able to bring their whole authentic selves to work. We invest in the health and well-being of our workforce, train and reward talent and develop leaders at all levels to bring out the best in each other.
Working for you
Our inventions have revolutionized energy for over a century. But to keep going forward tomorrow, we know we have to push the boundaries today. We prioritize rewarding those who embrace change with a package that reflects how much we value their input. Join us, and you can expect:
Contemporary work-life balance policies and wellbeing activities
Comprehensive private medical care options
Safety net of life insurance and disability programs
Tailored financial programs
Additional elected or voluntary benefits
About Us:
We are an energy technology company that provides solutions to energy and industrial customers worldwide. Built on a century of experience and conducting business in over 120 countries, our innovative technologies and services are taking energy forward – making it safer, cleaner and more efficient for people and the planet.
Join Us:
Are you seeking an opportunity to make a real difference in a company that values innovation and progress? Join us and become part of a team of people who will challenge and inspire you! Let’s come together and take energy forward.
Baker Hughes Company is an Equal Opportunity Employer. Employment decisions are made without regard to race, color, religion, national or ethnic origin, sex, sexual orientation, gender identity or expression, age, disability, protected veteran status or other characteristics protected by law.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,0,1,0,0,0,0,0
eDiscovery Data Analyst Position,https://www.indeed.com/pagead/clk?mo=r&ad=-6NYlbfkN0C__Jl89K5gXEMDM1jdNmbbcj5vc1uYJqm2FiL41S2JiuU0UmYafs1ZtFJGMXAQNzFJYTK0QtwWmQWe9K8twqlpRfJuIWjL6idHQQgzQOJX643DnQ8DucUCzPCSAYpV0e6WZhPG16i5ZbhC6qsMGZa_iYb0UueOX6hFnNKOjWzr4Lr2-3u78orHE5tWIq8D0HnLUCFnwAmyjCqBz7h65uHwDGtW841Gn6wSUM3BHoEbX-PhUgqg0XqlC_BoryO8Or0606sBsHkVMXkQnhJlaX1LPSbG3lCRsliiVSRAiAh84l_foL10LhANqo9LuXbNbQ_K5nDASfH2YqOtJtGf8WF9LYPvmVAvD6_CN6p1Lp429f4empT04eijGKQvchnDSkg_id0AXWprtsD8TKuY60CUpPXehheg_YzeD7IT5MOHxb314ywlhKlvmM0AzXLHzFYGTl20ECTGlcCM7PtOLvZ5Fz_qIZ2OZG7UOcpZ6ZrTfox_J0zH22yudE9OoIfrNKbN6jGLQ7enkb2PKxkEQ3uUx17jdgWwS31bcDBAvNKmSNcPo0DjEuSz1Zh-VaV4NY6KYdPOM_c413dFx79d-B-EZsJHxaTRhuNwEKdOTLqkpTVflCzxMWern5qkXZflN9xvucvGMoCKew==&xkcb=SoCE6_M3CDXejw2aYx0NbzkdCdPP&camk=4HOcmqOLYrBQ1L5b0mYWdw==&p=6&fvj=1&vjs=3,Confidential,Remote,"Seeking an eDiscovery Data Analyst with at least five years of broad industry experience using a variety of applications but a focus on Relativity. Relativity certifications are preferred but not required if experience can be demonstrated. Some nights and weekend work will be inevitable.
Soft Skills:
Verbal and written competency.
Ability to break down complex issues so the solutions are understandable not only in concept but the importance or value they provide to the client.
Understands which communication method (email, teams, phone call, text etc) is best in different circumstances or for different people.
Can effectively manage when mistakes are made.
Creative problem solving with a bend towards efficiency and repeatability.
Technical Skills:
General
Assist in the evaluation, selection, and implementation of technology solutions.
Data storage management including compression techniques.
Understanding of SQL field types and when to use them.
Convert an ESI Protocol into applicable workflows.
Quality Control!
eDiscovery
Data Collection
A general understanding of collection methodologies, of what is acceptable and what isn’t.
Processing
Experience using multiple processing engines including Relativity.
Understanding of deduplication, OCR, time zones, prefixes, folder options and extraction settings within a Relativity processing profile.
Remediation of processing errors.
Be able to determine what kind of data should be processed or loaded.
Text messages and RSMF
Data Loads
Data loads - Extensive knowledge and proficiency working with load files using text editors, REGEX and\or ReadySuite. Including DAT, OPT, LFP and CSV. Summation and Ringtail a plus.
Remediation of load files and import errors.
Indexes – DT Search, Analytics (structured, repeated content filters, profiles, categorization sets)
Review
Experience with Analytics and TAR
Image and Native Redactions using Blackout
Brainspace
Search terms. Converting, running and analyzing results and provide recommendations.
Email Threading
Productions
Analyze and modify production searches to meet production specified in the ESI Protocol.
Consult with internal and external clients to clarify details for such topics as:
*Imaging format (B&W/color) and redactions, OCR
*Delivery of native file types, placeholders, redactions\OCR using Blackout
*Branding
*Load file specifications including field names, order and redactions
Job Type: Full-time
Pay: $85,000.00 - $115,000.00 per year
Benefits:
Dental insurance
Health insurance
Life insurance
Paid time off
Schedule:
10 hour shift
8 hour shift
Monday to Friday
Weekends as needed
Work Location: Remote",0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0
Entry Level Data Analyst,https://www.indeed.com/rc/clk?jk=7f00b26b92d136b8&bb=PtdRPYyO0eJYZ_rwRr22-PbYEfVEJY8nDj8acRtw68BOXaz_X0n_vyVHRxNealbYb8TWZEkZsDicyH_rGStYofZGXKCLGyHF1g12kJw8W4WPiNYD0FMYAg%3D%3D&xkcb=SoDE67M3CDXejw2aYx0MbzkdCdPP&fccid=1541dec7dcda9014&cmp=FIABLE-CONSULTING-INC&ti=Entry+Level+Data+Analyst&vjs=3,Fiable Consulting,Remote,"Experience Level - 0 to 2 Years
Even Freshers can apply for this Job Role. (OPT Candidates also can apply)
Kindly Fill the Google Form, by clicking the below Link - ONLY CANDIDATES WHO HAVE FILLED THE GOOGLE FORM WILL BE CONTACTED
https://forms.gle/sEwSzZFckimrKLP38
We are seeking a highly analytical and detail-oriented engineer to join our dynamic team as the first and founding data analyst engineer and build the data pipeline for analysis.
The ideal candidate will possess a strong analytical mindset, excellent problem-solving skills, and a keen eye for interpreting and presenting data.
The role involves collecting, processing, and analyzing large datasets to derive meaningful insights, contributing to informed business decisions.
Responsibilities
Develop and maintain databases, data systems, and dashboards for efficient data analysis and reporting enabling stakeholders to manage the business and make informed decisions.
Building reports & dashboards that provide our stakeholders with timely, flexible, and structured access to their data.
Develop test scripts to validate data, data accuracy, and address data latency issues.
Develop pipelines and tools to collect, clean & analyze large datasets.
Preparing reports for the management stating trends, patterns, and predictions using relevant data.
Prepare insights for products to understand users and businesses using our platform.
Collaborate with cross-functional teams (product managers, operations, client services, finance, and sales) to understand data requirements and provide actionable insights.
Work closely with stakeholders to gather, document, and prioritize business requirements.
Requirements
Bachelor's degree in information technology, computer science, mathematics, statistics, or a related field.
Prior experience is a plus
Proficient in using data analysis tools and methodologies.
Proficient in data analysis tools and languages (e.g., sql, python).
Experience with data visualization tools (e.g., metabase, tableau, power bi).
Nice to have hands-on experience with dbt or airflow.
Strong analytical and problem-solving skills.
Excellent written and verbal communication skills.
Familiarity with business process modeling and analysis techniques.
Work both independently & collaboratively in a fast-paced and dynamic work environment.
Knowledge of project management principles is a plus.
Job Types: Full-time, Contract
Salary: $21.60 - $40.00 per hour
Benefits:
401(k)
Dental insurance
Health insurance
Experience level:
1 year
2 years
No experience needed
Under 1 year
Work Location: Remote",1,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,0,1,0,0,1
Data Analyst,https://www.indeed.com/rc/clk?jk=0b2692cc4601d32b&bb=PtdRPYyO0eJYZ_rwRr22-JqIe2r4ZWs-reojOrDmtWGzuxOlq0D-JPCdu0D8lZQ1_KkYcb-YxT91akKWELn81oHdYaCUoEBZQpTjdcFSllCEYuS4lgKm8w%3D%3D&xkcb=SoAt67M3CDXejw2aYx0DbzkdCdPP&fccid=e862a4d8e34c236f&vjs=3,Springbuk Inc,Remote,"Description:
At Springbuk, our vision is to prevent disease with data. We are creating real change in healthcare by empowering smarter decision-making via our Health Intelligence platform. Our team is nationwide; we work hard, we win together, and we share an inspiring company culture.
On the Data Management Support team, an Analyst is responsible for analyzing our clients’ healthcare data–evaluating raw data for usability, ensuring its successful mapping through our pipeline, and understanding its representation on our platforms. Along with other Support Analysts, you will use SQL, Python, Slack, Jira, and your analytic skills to help our colleagues answer client questions about their data. For example, this could mean explaining a data anomaly, or setting expectations for remediating a data issue and then seeing that remediation through to completion. Ultimately the Data Management Support team understands, defends, and facilitates the integrity of Springbuk’s healthcare data and its pipeline so that clients can use our platforms to produce actionable healthcare insights with confidence.
Here’s what you will do:
Work on a team of data analysts to ensure the quality, coverage, and accuracy of healthcare claims and eligibility data
Develop and maintain data quality software tools to analyze data, detect errors, and report anomalies
Use SQL, Python, and spreadsheet programs to perform data analysis and validation
Interpret Springbuk’s Data Quality Reports to ensure accurate data delivery to clients
Analyze data for reported client issues, find inconsistencies, and make adjustments to our data pipeline to prevent further issues
Review our data pipeline’s Quality Assurance checks performed during the data normalization process
Complete audits of client data using vendor-provided control reporting; communicate with vendors to resolve issues as needed
Engage with people in other roles at Springbuk, including Data Engineers, Client Success Managers, and Implementation Project Managers to answer questions, audit financial reports, and resolve client issues
Develop and maintain strategies, standards, and best practices for ensuring data quality
Review and revise data mapping logic as it relates to data quality enhancements
Develop coding and software skills with mentorship from Springbuk’s broader Technology organization
Requirements:
A successful candidate will have:
Excellent problem solving and critical thinking skills
Excellent communication skills with technical and non-technical teammates
High level of curiosity, with the ability to conduct and present self-directed research
Strong organizational and time management skills
Strong ability to analyze and visualize data
Strong knowledge of relational databases and SQL
Readiness to build and maintain custom tools using Python and Ruby
Readiness to work on an agile team: short iterations, issue tracking, version control, QA, etc.
Readiness to work in a continuous delivery environment
Readiness to work at a dynamic scale-up company with a SaaS product
Here’s what your team will do:
Our wider Data Integration, Management, and Quality teams are responsible for understanding and validating the quality of our client’s healthcare data.
Writing and implementing new mapping logic for claims, eligibility, and ancillary data types
Reviewing data quality reporting and triaging issues
Analyzing client reported data issues and finding a path to resolution
Adjusting our data pipeline per issues identified internally or externally
Working with vendors and internal stakeholders to correct observed data issues
Developing and deploying new anomaly checks in data quality reporting software
Here’s how you will get ramped up for success:
30 days - Learn our product, our architecture, our processes and standards, and make meaningful contributions
60 days - Learn the roadmap for your team and help design and plan upcoming projects
90 days - Take a proactive role in the resolution of data issues and data quality projects
We are unable to consider non-US-based remote employees for this position at this time.
Being You at Springbuk:
Springbuk’s goal is to attract and retain diverse talent and provide an inclusive environment for all where everyone’s voice is heard, and all employees feel accepted. Springbuk is an equal opportunity employer, and we do not discriminate on the basis of race, color, religion, creed, national origin or ancestry, ethnicity, sex (including pregnancy), gender (including gender nonconformity and status as a transgender or transsexual individual), age, physical or mental disability, citizenship, past, current or prospective service in the uniformed services, genetic information, or any other characteristic protected under applicable federal, state, or local law.",1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,1,1,0,1,1,1,1,0
Data Analyst,https://www.indeed.com/rc/clk?jk=0e65feee85e91908&bb=PtdRPYyO0eJYZ_rwRr22-GV22RFYXC6wds8PDpH2DnCm7eFKYBccqgNe8dTXzhlK56vOMCON1-bHWZjvAZVcJ70YPY5oNTrZIrUUAuUQntAykuvSz18PSw%3D%3D&xkcb=SoCZ67M3CDXejw2aYx0CbzkdCdPP&fccid=a05b334f5d990639&vjs=3,Glooko,Remote,"Report: This position reports to Director of Data and ML Solutions
Position:
We are looking for a data analyst to support the Glooko Data Products team. This includes:
conducting analyses to help us better understand our users, clinics, and devices,
identifying and interpreting user patterns/trends/anomalies, and
communicating analysis results,
develop and ensure successful delivery of data shares with partners,
preparing customer billing reports and dashboards.
This is an individual contributor role. You will spend:
75% of your time coding, analyzing data, and creating reports/dashboards, and
25% of your time communicating with internal and external stakeholders.
Areas of Responsibility:
Analyzing complex business problems using data from internal and external sources.
Processing and exploring data, discovering patterns/trends, and identifying anomalies.
Performing statistical analysis of structured and unstructured datasets to develop metrics, reports, and visualizations of trends and patterns.
Interpreting trends and patterns in datasets to guide data-driven decisions.
Using data visualization and BI tools to generate dashboards, reports, and presentations to aid in data storytelling.
Developing, monitoring, and maintaining growth and engagement metrics.
Gathering requirements, standardizing/automating reports, and providing insights.
Producing datasets, reports, and dashboards.
Developing new data exports according to identified business needs and requirements.
Supporting, managing, and scaling internal ad hoc analysis requests. This includes external and internal Support Sales, Account Management, & Customer Success teams.
Contributing to Glooko's Data Science Team:
Submitting version-controlled code with test coverage.
Completing code reviews.
Researching methodology, tools, and frameworks for data analytics.
Engaging in technical discussions, participating in technical designs, and presenting technical ideas.
Making informed technology choices after due diligence and impact assessment.
Characteristics of the person we are looking for:
You are a data-nerd. You love data and can tell a story with data and visualization in a calm, clear, and concise manner.
You are meticulous in everything you do.
You like writing code and automating processes.
You are continuously looking for opportunities to learn, build skills, and share what you learn.
You have a bias for action. Will thrive in a fast-paced, changing environment with limited structure that requires flexibility, resourcefulness, being efficient, and communicating effectively in a remote environment.
Qualifications:
Experience/expertise in the following:
SQL,
Python,
BI dashboards,
Version control tools,
Bonus: Experience with Metabase
Bonus: Automated testing frameworks (e.g., Pytest, Unittest, or Nose),
Bonus: Understanding of machine learning algorithms and principles
A degree in a quantitative field, such as Statistics, Economics, Mathematics, Computer Science, Engineering, Quantitative Social Science, or Data Science. See experience requirements for each of the different Levels below.
Strong time management skills and ability to thrive in a fast-paced environment with competing and shifting priorities.
Strong interpersonal and communication skills across all levels of the organization. You can explain technical issues to both technical and non-technical business partners.
Commitment to individual and team success.
The Company:
Each year, diabetes, obesity, and other cardiometabolic diseases cause the highest incidence of death, disability, and healthcare system costs. At Glooko, we make it simpler for people with these illnesses to connect with their physicians and care teams. Glooko is the universal platform for providing an FDA-cleared, HIPAA-compliant, EU MDR-certified Web and Mobile (iOS and Android) application for people with clinicians who treat them.
Glooko accelerates research and improves care by making it simpler for people to collect and share their health data with physicians and researchers. The platform seamlessly unifies and visualizes data from over 210 devices, including blood glucose meters, insulin pumps, continuous glucose monitors, activity trackers, and biometric devices. Connecting to these devices allows Glooko to deliver insights that improve personal and clinical decision support. Patients and providers have one place to view their health management information, including medications, food intake, exercise, and biometrics. The platform makes it easier for physicians to monitor and deliver more personalized care remotely.
Glooko's mobile app and web dashboard enable patients to track and proactively manage their diabetes care easily. Glooko's Population Tracker and APIs offer diabetes-centric analytics and insightful reports that enable clinicians to identify at-risk patients. Clinicians can send pattern-triggered notifications to patients, health systems, and payers.
Our proprietary platforms enable clinical trial conduct and acceleration by leveraging advanced patient selection and site identification tools as well as remote device and e-PRO data collection capabilities. This platform's capabilities support the rapid development and iteration of digital companion and therapeutic applications.
Launched in 2010, Glooko is funded and managed by visionary technologists and leaders in healthcare.
Glooko provides equal employment opportunities (EEO) to all employees and applicants for employment without regard to race, color, religion, sex, sexual orientation, gender identity, national origin, age, marital status, or disability. In addition to federal law requirements, Glooko complies with applicable state and local laws governing nondiscrimination in employment in every location where the company has facilities. This policy applies to all terms and conditions of employment, including recruiting, hiring, placement, promotion, termination, layoff, recall, transfer, leaves of absence, compensation, and training.
Posted positions are not open to third-party recruiters/agencies, and unsolicited resume submissions will be considered free referrals.
***NOTE: Only the job postings listed below are legitimate Glooko, Inc. job postings. All current job postings are listed on www.glooko.com/careers, LinkedIn, Indeed, and Glassdoor under ""Glooko."" Any domain that links to this page that references a position not listed here is not a legitimate Glooko job posting.",1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,1,0,0,0,1,0
Data Analyst: University Students and Recent Graduates,https://www.indeed.com/rc/clk?jk=3187b7609a88c2b1&bb=PtdRPYyO0eJYZ_rwRr22-OME1zNwoch7FcjnPBw7BnLF5fwR78NGrm1JLuUUvFGMtGyVtRrzbrO5-Z-y-wmD5T5UYRmC5pDcrol8ly1gj34%3D&xkcb=SoAE67M3CDXejw2aYx0BbzkdCdPP&fccid=734cb5a01ee60f80&vjs=3,Microsoft,"Redmond, WA 98052
(Overlake area)","Come build community, explore your passions and do your best work at Microsoft with thousands of University graduates from every corner of the world. This opportunity will allow you to bring your aspirations, talent, potential—and excitement for the journey ahead.
A Data Analyst determines the technique needed and develops analytic models to understand complex business issues and provide data-driven insights by integrating statistical inference, Machine Learning modeling, and/or other advanced analytical methods to manage, classify and analyze complex data from a variety of sources. A Data Analyst understands and anticipates both business and data requirements, identifies how to optimally integrate data, evaluates analytic techniques and assumptions, and determines follow-up actions to share insights that drive decision-making to address specific business needs.
Those hired into this role are invited to participate in Microsoft Aspire Experience, a two-year learning and development experience where you'll build your network, cultivate intentional capabilities and gain perspective into the career opportunities across Microsoft’s many exciting businesses.
Microsoft’s mission is to empower every person and every organization on the planet to achieve more. As employees we come together with a growth mindset, innovate to empower others, and collaborate to realize our shared goals. Each day we build on our values of respect, integrity, and accountability to create a culture of inclusion where everyone can thrive at work and beyond. Learn more about our cultural attributes
Embody our Culture and Values
Responsibilities
As you begin to learn the business you will support the development of data infrastructure and analytical frameworks. You’ll leverage your understanding of the business to examine projects through a customer and/or stakeholder-oriented focus.
You will use appropriate sources of data to address specific business needs and escalate complex issues. You’ll conduct analyses to respond to business questions and evaluate with guidance from others.
You will share and simplify relevant findings, with guidance, and ensure presented results provide information accurately. You’ll build and/or conduct formal experiments and report results under direction.
You will implement methods for making reporting and analytics self-service and efficient. You will understand linkages between analytical models and contribute to the summary of the review process—and, if the model is deemed deficient—seek to determine why.
You will build working relationships within and across teams to ensure alignment to deliver key insights and results. You’ll adhere to data privacy rules and ensure data have undergone appropriate review.
Conducts analyses to respond to business questions, interprets analytical outputs, provides responses in an appropriate format, and partners to build on others' analyses and frameworks.
Critically evaluates the choice of tools, techniques, and assumptions to ensure they are appropriate within context and provides feedback on features and functions of analytical tools and/or models with guidance from others
Qualifications
Required/Minimum Qualifications
Bachelor's Degree in Statistics, Mathematics, Analytics, Data Science, Engineering, Computer Science, Business, Economics or related field
Business Analytics IC2 - The typical base pay range for this role across the U.S. is USD $64,800 - $130,100 per year. There is a different range applicable to specific work locations, within the San Francisco Bay area and New York City metropolitan area, and the base pay range for this role in those locations is USD $86,400 - $142,700 per year.
Certain roles may be eligible for benefits and other compensation. Find additional benefits and pay information here: https://careers.microsoft.com/us/en/us-corporate-pay
Microsoft accepts applications and processes offers for these roles on an ongoing basis throughout the academic calendar (September – April).
#NSBE
Microsoft is an equal opportunity employer. Consistent with applicable law, all qualified applicants will receive consideration for employment without regard to age, ancestry, citizenship, color, family or medical care leave, gender identity or expression, genetic information, immigration status, marital status, medical condition, national origin, physical or mental disability, political affiliation, protected veteran or military status, race, ethnicity, religion, sex (including pregnancy), sexual orientation, or any other characteristic protected by applicable local laws, regulations and ordinances. If you need assistance and/or a reasonable accommodation due to a disability during the application process, read more about requesting accommodations.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0
Senior Data Analyst (Demand Generation),https://www.indeed.com/rc/clk?jk=1b4c0f1ffe277ed3&bb=PtdRPYyO0eJYZ_rwRr22-D9xATR6JfgiEIg3niZPlKROvWZmnbe8W4GEKCCPMBM2-4fe-ZZJXd_ps5MHWlpXLdBVJh5Nbp98R4ZpYBeVKqv10MqxQNdHng%3D%3D&xkcb=SoCw67M3CDXejw2aYx0AbzkdCdPP&fccid=88e1dcd0cd0bffc1&vjs=3,Calendly,"Remote in Atlanta, GA 30363","About the team & opportunity
What's so great about working on Calendly's Marketing team?
Calendly is the scheduling automation platform used by millions of users for eliminating the back-and-forth emails to find the perfect time — and so much more. Our Go to Market Analytics team is made up of Data Analysts who develop reporting, insights, and serve as a consultative partner to our Sales and Marketing organizations. You will have your hands on our self-serve product-led business, and our sales-led pipeline-oriented business, supporting the team in making decisions, optimizing campaigns and enhancing customer acquisition – ultimately driving business growth.
We're seeking a dynamic Senior Data Analyst to support our marketing team. You should have significant experience with Demand Generation as a key focus but you may find yourself working with Growth, Brand, International or other marketing teams in a typical week, too! Reporting to the Senior Manager of Go to Market Analytics, you'll collaborate closely with the Demand Generation team, our analysts, and our data and analytics engineering team to provide crucial insights and analytics support to drive effective decision-making and optimize marketing spend.
Utilizing Tableau for dashboard creation, notebook tools for ad hoc analyses, and crafting decks for larger commercial storytelling, you'll also play a crucial role in supporting marketing testing analysis. As the commercial partner, you'll provide insights through data-driven recommendations to propel our business forward and have an important role to play to ensure that we have the right data, tooling and strategy to provide support to the team.
A day in the life of a Senior Data Analyst at Calendly
Utilize your extensive knowledge of marketing to deliver value through reports, various BI tools, and in-depth analyses. Leverage your experience in data and analytics to tackle complex questions and support business owners on experimentation, data collection, and analysis. Partner closely with our Product and Data Engineering organizations to ensure you have the data you need, and support standardized tracking of product events through Segment, Hightouch, and Amplitude. Take ownership of building weekly performance reporting and work towards automating the reporting package.
On a typical day, you will be working on:
Strategically partner with the Demand Generation team to fulfill their data needs and optimize marketing campaigns.
Proactively analyze data using independent judgment to identify trends and patterns, providing actionable insights to inform strategic decision-making.
Provide support in experimentation interpretation, offering insights and guidance on data-driven decision-making to refine and optimize marketing strategies.
Dive deep into ads data, attribution models, and lead generation metrics to identify trends, opportunities, and areas for optimization.
Utilize predictive analysis techniques to forecast future trends and outcomes, enhancing the team's ability to anticipate market changes and capitalize on opportunities.
Serve as a subject matter expert on data analytics best practices, staying abreast of industry trends and emerging technologies to continually enhance the team's capabilities.
Assist with ad hoc data analysis requests from various marketing teams, demonstrating flexibility and the ability to support the wider marketing function strategically as a generalist, when needed. Analyze the effectiveness of different marketing strategies and tactics, offering insights to enhance targeting, messaging, and overall campaign performance.
Collaborate with the Demand Generation team to build and maintain reports that track the performance of various marketing campaigns and channels, enabling data-driven decision-making.
Drive continuous improvement in data quality and integrity, implementing robust data governance practices and ensuring adherence to industry standards and regulations.
Catalog marketing and user data in dbt and contribute to shaping our new data model in BigQuery, enhancing the overall data infrastructure.
What do we need from you?
3-5 years of hands-on experience in a role focused on analytics or data science, showcasing a strong background in demand generation or performance marketing analytics.
Proficiency in quantitative analysis, statistics, and business intelligence query tools, demonstrating the ability to derive actionable insights from complex data sets.
A talent for translating detailed data into clear, actionable recommendations suitable for diverse audiences, showcasing your ability to bridge the gap between technical and business perspectives.
Experience collaborating seamlessly across teams, toggling between technical intricacies and broader business objectives to drive effective decision-making.
Advanced proficiency in SQL, relational databases, and data analysis/visualization tools such as Tableau and Hex. Knowledge of Python is a plus, reflecting your commitment to staying at the forefront of industry tools and methodologies.
Proven track record of building custom reporting and dashboards, with a focus on actionable and impactful visualizations, steering away from one-size-fits-all solutions.
Inquisitiveness for user behavior and a sharp eye for uncovering insights and opportunities through data, fueling a continuous improvement mindset.
Strong presentation and data storytelling skills, enabling you to communicate complex findings in a compelling and understandable manner.
Authorization to work lawfully in the United States of America is required, as Calendly does not engage in immigration sponsorship at this time.
What's in it for you?
Ready to make a serious impact? Millions of people already rely on Calendly's products, and we're still in the midst of our growth curve — it's a phenomenal time to join us. Everything you'll work on here will accelerate your career to the next level. If you want to learn, grow, and do the best work of your life alongside the best people you've ever worked with, then we hope you'll consider allowing Calendly to be a part of your professional career.
Our Hiring Process:
Typically, individuals will participate in the following interview process. However, there may be slight nuances given the role and or department we are hiring for. Please keep in mind that individuals can be declined from the position at any stage of the process.
Qualified individuals will be invited to schedule a phone interview with a member of our recruiting team. This is a great time to ask any initial questions you have about the company or the role.
Next, we'll put you in direct contact with your potential manager. You'll get a chance to learn even more about life at Calendly, the responsibilities within your role, and the qualities needed to succeed here.
Next, you'll meet with your potential team members.
Then in parallel to meeting your potential teammates, you will perform an interview exercise, where you can highlight your skills.
Finally, we connect with those you've worked with before, to learn more about the impact you can make, the value you bring, and the best way to set you up for success at Calendly.
We aim to provide an inclusive and equitable experience to everyone who expresses interest in working at Calendly. The recruiter assigned to this role will keep you informed every step of the way. Have questions? Let your recruiter know! Want to share your experience? We are passionately committed to improving and building on our process, and we consider feedback a gift.
If you are an individual with a disability and would like to request a reasonable accommodation as part of the application or recruiting process, please contact us at [email protected] .
Calendly is registered as an employer in many, but not all, states. If you are located in Alaska, Hawaii, Montana, North Dakota, South Dakota, Nebraska, Iowa, West Virginia, and Rhode Island, you will not be eligible for employment. Note that all individual roles will specify location eligibility.
All candidates can find our Candidate Privacy Statement here
Candidates residing in California may visit our Notice at Collection for California Candidates here: Notice at Collection
Compensation is based on a variety of factors including but not limited to location, experience, and job-related skills. In addition, Calendly offers a wide range of best in class total rewards. This includes comprehensive employee benefits like healthcare, dental, vision, parental leave, 401(k) match, paid time off, and much more. At Calendly we believe exceptional performance deserves exceptional rewards! During the hiring process, we are committed to sharing details about the compensation range for the position, enabling you to make an informed decision.
Please note that the compensation details listed in role postings reflect the base salary only, and do not include bonus/commission, equity, or benefits.
Base Pay Range National - Salary
$103,700—$140,300 USD
Base Pay Range California - Salary
$136,000—$184,000 USD",1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0
Business Analyst,https://www.indeed.com/pagead/clk?mo=r&ad=-6NYlbfkN0Cdkd8XHwVE4r8MKBYgDVrl-4tqe4KgqVe-FDSt66E8XvVgVbcreA4WeQU-xBMA1ifW6ESGeulO9Ai84iPJ4k_XNw5Ce-yGajlxM3agloxh52t9Xy5sMLvhjZY5gwn3rfnJQYB2H3VobXrXlJ82nGTgb7i3yKf9_l1W03UbOnTJ6MAF529OTp42cOigXwmmMXjBN5z83MVHhsEMWLa1iYCI2QvB5gD2kqxJtPZG_lvRJ8hKEZ9O5qCWRL8z1lBKerjFW6iFdZ_MUvRy6-CyaZj-6U9CdihtuYLG_Z0FZF91v2qFeL6ZV1vjaJPhxeg7NKYDzwVoauBevT9MMif5yVp5NBwpJM_sx4HUsGzOgpUYRoJVkBmfHHSEiwpp5K5pjitsetoSE0bGSNaSvkgKEqDWWnAbEEd6jgKKhk1d6I-WcqjnBkGZk9qTZEqpM4Awn6HkVIAknwakkOv7oreFXFZalw3I9jf7nc9MQ3NlzD45nWfb1UJ8cDSgi2kPpGZksBif2gzVNSXpDaqsi4xuvRRo8dMedGv2RFRCywgLCZaDLtmdvuQNlbv2EKoPDRBwiM2Qb5FyzbkKOOIORxK85e5z-I2M7ALrqxTe4d3bXlvu-VYM8damz_T-&xkcb=SoDK6_M3CDXejw2aYx0HbzkdCdPP&camk=4HOcmqOLYrCa3VjfoKWaeQ==&p=12&fvj=1&vjs=3,LA Fitness,"Irving, TX 75039
(Freeport/Hackberry area)","LA Fitness is a well-established fitness company with over 700 state-of-the-art gyms and sports clubs throughout the United States and Canada. Based in Irvine, CA & Irving, TX, our IT department is expanding to support new technology initiatives to keep pace with rapid company growth. Our team is one of the most rewarding to work within the industry, and we now have full-time opportunities for highly experienced and motivated IT professionals.
We seek a talented and passionate Business Analyst to join our company.
As a Business Analyst on the Product Management team at Fitness International, you will serve as a linchpin in the development of in-house software applications that merge cutting-edge technology with the dynamic needs of the fitness industry. Your role is crucial in shaping products that inspire and facilitate users to achieve their fitness ambitions.
Responsibilities:
Collaborate with business leaders to comprehend their requirements and translate these into detailed feature scope and sprint plans for the development team.
Develop comprehensive product documentation, including requirement statements, logical data models, process designs, user interface mock-ups, and use cases.
Engage with internal and external stakeholders to meticulously document business needs, create detailed scope documents, and ensure alignment with technical specifications.
Define and manage project scope, ensuring that design requirements and technical specifications are met within set timelines.
Spearhead product development initiatives, coordinating with both internal teams and external technology partners to drive product evolution and integration.
Generate and validate use cases, as well as review test cases to guarantee sufficient testing coverage and adherence to requirements.
Foster strong relationships with stakeholders, positioning the company to address and anticipate the changing demands of the fitness landscape.
Lead and contribute to design sessions, enhancing the overall user experience and functionality of new and existing products.
Provide exceptional implementation, training, and ongoing support to internal department leaders.
Coordinate with the Quality Assurance team to actively support testing efforts and address any design flaws to enhance product usability.
Produce and maintain product documentation, including specifications and user guides, ensuring all materials meet the standards for internal or external dissemination.
Conduct product presentations and walkthroughs for diverse audiences, ranging from internal teams to external partners and clients.
Efficiently manage and prioritize tasks to adhere to project deadlines and milestones.
Requirements:
At least three years of experience in product management, project management, software development, quality assurance, technical writing, or related fields.
Demonstrated expertise in requirement design and analysis.
Proven ability to deliver high-quality work within a fast-paced, team-oriented environment.
Exceptional analytical and problem-solving skills, with a strong emphasis on follow-through and attention to detail.
Capable of managing multiple priorities independently and with minimal supervision.
Proficient in Microsoft Office Suite (Word, Excel, PowerPoint) and familiar with Agile development methodologies and tools.
Strong interpersonal and communication skills, with experience in collaborating with diverse, global teams.
A deep-seated passion for the fitness industry and a commitment to impacting users’ well-being positively is a strong plus.
Experience in developing Fitness, Health, or Medical technologies is highly desirable.
A bachelor’s degree in computer science, Business, Exercise Science, Kinesiology, Physiology, or equivalent professional experience.
Ability to work in a dynamic, demanding, and challenging business environment.
Strong analytical and problem-solving skills
Excellent oral and written communication skills
Ability to work onsite at our Irving, TX office required**
Full-time position only. Contractors and Consultants will not be considered for this position.
Candidates must go through a background check before being considered for employment.
L.A. Fitness is an equal opportunity employer who recognizes the value of having a diverse workforce. We seek and encourage qualified applicants regardless of gender, religion, ethnicity, gender orientation, or other cultural or physical characteristics.
Job Type: Full-time
Benefits:
Health insurance
Experience level:
2 years
3 years
Schedule:
8 hour shift
Monday to Friday
Application Question(s):
Will you now or in the future require Visa sponsorship for employment?
Ability to Relocate:
Irving, TX 75039: Relocate before starting work (Required)
Work Location: In person",0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,0,0,1
Data Analyst I,https://www.indeed.com/pagead/clk?mo=r&ad=-6NYlbfkN0CgX5gwIat_CfVv0omsqnILiG7oVfG0KOHGCTUUKtbt9MQ5uKceR6wJIezbMZRsnGSkxH9QjdmuXAl71lTFjtv6ZGKYDLw4PCc5FqEiy0WQsKUxwjDwlRDhSJFs6N34GO31keo1PYjB4KnIHI6-Q6nphf9xcJXGY3YesMvnoDKnbbAx_PySbdgXW-UcLlL60TyIh04HBSi2QjJfKytWZyLp4LGuKxyAY4228qNJnMNRtpLYGWRNZ6vpdKmNCqfLXCYUuxzilgq9BaHJovyoxb-En1-HvVIg89iUMBbPHiLGiVBVurqWmBtS66cN59sTJnmhg35XPOfgJpi9ztzPyCbwk4R0c5rrvgtNAfxomrGz9iGrxUikRBp2mZ-xdY5mN_fe54uKNUIHIVjWLZ0XkAzbhDILFksijA-dNrczU9TFjeUQKCSwjHeBkfJC1M7r-lww4IcVeyH4vqudyi-N1mF5MOhY1uz5YOXUwkgXWNfXL72syfzGLlAtZ5OnfsXbaSAH8We1bKPe7p6ecWPRPPo7Q8RmME_G2WhoPkhTxMSEftC6jMWlet4v5WbGsuY-s2udW9fHcJeHJRjD3BTfc8qLf0WYSAzbreRLXJeYcndI-w==&xkcb=SoB-6_M3CDXejw2aYx0GbzkdCdPP&camk=4HOcmqOLYrC-OW7X0WGCog==&p=13&fvj=1&vjs=3,AAA Mid States,"York, PA 17402","Data Analyst I
For this position you must reside in York, PA (or a surrounding area) because you will be required to commute daily to the York, PA office.
AAA Mid States has an opening for a Data Analyst I in our Headquarters Office located in York, PA.
Duties and Responsibilities
Create reports for internal teams
Collaborate with team members to collect and analyze data
Use graphs, infographics and other methods to visualize data
Establish KPIs to measure the effectiveness of business decisions
Structure large data sets to find usable information
Work with analysts and other associates to process information
Create presentations and reports based on recommendations and findings
Skills and Qualifications
Coding skills in languages such as SQL, or Oracle helpful
Analytical and problem-solving skills
Knowledge of data gathering, cleaning and transforming techniques
Reporting and data visualization skills using software like Tableau
Proficiency in Microsoft Excel, and Microsoft Access
Knowledge of SalesForce helpful
Ability to set and meet deadlines
Ability to work in high-pressure situations
Experience with statistical software
Technical writing skills
Excellent attention to detail
Strong written/verbal communication skills
Ability to QA and troubleshoot data
Basic IT related skills required
Education
Bachelor’s Degree preferred
Experience
1-2 years in related field
What AAA Mid States Offers:
Competitive compensation package
Comprehensive benefits package including: Medical, Dental, Vision, Life Insurance, Disability Coverage, 401(k) with Employer Contribution, and more.
AAA Mid States is an Equal Opportunity Employer
Job Type: Full-time
Benefits:
401(k)
AD&D insurance
Dental insurance
Disability insurance
Flexible spending account
Health insurance
Health savings account
Life insurance
Paid holidays
Paid sick time
Paid time off
Prescription drug insurance
Vision insurance
Compensation package:
Hourly pay
Experience level:
1 year
2 years
Schedule:
8 hour shift
Day shift
Monday to Friday
Education:
Bachelor's (Preferred)
Experience:
Data analytics: 1 year (Required)
SQL: 1 year (Required)
Oracle: 1 year (Required)
Ability to Commute:
York, PA 17402 (Required)
Ability to Relocate:
York, PA 17402: Relocate before starting work (Required)
Work Location: In person",0,1,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,1,1,0,1,1,1,0,1,0
Data Analyst,https://www.indeed.com/rc/clk?jk=5b11c0d9c4e33776&bb=PtdRPYyO0eJYZ_rwRr22-LEWFczKANM-M6GpZJs0afXU2OwVkRaw6nTgVE7nnN3lDOedoaG6sT4Rozg5F0sHeyAxoX0GMv0eqZtnswNKKdyYd-3xMsRyjw%3D%3D&xkcb=SoAX67M3CDXejw2aYx0FbzkdCdPP&fccid=d1899448256d6028&vjs=3,Belden Inc.,Remote,"Belong. Believe. Be You. Belden.
Propel your career surrounded by a diverse team of innovative, goal-oriented individuals who are pursuing the next generation of connectivity solutions. At Belden, you’ll participate in work that will challenge you and position you to excel. You’ll collaborate with colleagues from around the world, gaining exposure to a broad base of expertise and perspectives.
Together, we’ll continue on a journey of innovation, creating a connected world and paving the way for automation. Join us and let’s build the future.
Job Summary:
We are seeking a highly skilled and experienced Data Analyst with a proven track record of analytical expertise and strategic insight to manage and innovate in our website analytics operations. This role is pivotal in generating essential datasets to shape the strategies for operational and business initiatives. In collaboration with the Website Manager and Marketing Automation teams, you will evaluate web trends, provide insights, and report findings to support site optimization, A/B testing, and personalized user experiences. Your expertise will also be instrumental in activating and consolidating digital marketing measurements and insights across our multiple channels. This position is a remote opportunity and will report to the Director, Master Data Management.
Responsibilities:
You will make a difference in the following ways:
Utilize advanced analytics to dissect web traffic patterns, user engagement, and sales data, providing strategic recommendations to boost website performance and marketing efforts. Select and implement cutting-edge industry tools to refine website analytics and performance metrics.
Spearhead website optimization strategies to augment ROI and elevate the efficacy of marketing, personalization, and social media outreach.
Design and sustain detailed dashboards and reporting mechanisms to track key performance indicators (KPIs), sales metrics, brand recognition, and the success of digitalstrategy campaigns. Influence the crafting of marketing programs tailored to our digital consumer base.
Serve as a data storyteller, conveying complex results in a clear and impactful manner to cross-functional teams.
Pursue continuous improvement in analytical methods, keeping abreast of the latest in technology and proposing enhancements to our processes.
What you bring:
Bachelor's degree in Business Administration, Marketing, Analytics, Computer Science, or a related field
Proficient in web analytics, tagging, and reporting tools, such as Google Analytics, Google Tag Manager, LookerStudio, and Adobe Analytics.
Minimum two (2) years' experience with hands-on data analysis utilizing modern database technology tools including SQL
Proven experience in web analytics, digital marketing, and marketing automation.
Strong analytical, project management, communication, and collaboration skills.
Applicants can expect a base compensation range of $71,800 to $107,700 annually, plus benefits and additional incentives based on the level of the role. This is the reasonable estimate that Belden believes it might pay for this job based on applicable circumstances at the time of posting. Belden may ultimately pay more or less than the posted range as permitted by law, and commensurate with the applicant#s experience, qualifications, and geographical location.
Belden also offers hybrid and remote work practices where feasible and provides employees with benefits that could include health/dental/vision, long term/short term disability, life insurance, HSA/FSA, matching retirement plans, paid vacation, parental leave, employee stock purchase plan, paid leave for volunteer work in your community, training opportunities, professional talent management and succession planning, corporate health well-being initiatives and a work culture which includes commitment to diversity, equity, inclusion and sustainability!
Let’s Write the Next 100 Years Together.
Join a global community striving to improve connectivity and security. The work we’re doing puts our people on the front lines of impacting lives and shaping the future. Propel your story of innovation by helping Belden write the next chapter in ours. Shape your future at Belden.
-
These statements are intended to describe the general nature and level of work involved for this job. It is not an exhaustive list of all responsibilities, duties and skills required of this job.",0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1
Data Analyst I,https://www.indeed.com/rc/clk?jk=9d57f54690f5af01&bb=-vRwgfRx9vzf9UJBFBOxidPAwC9v_uKf2E9YNJawhnWV8J94ZA3rLCWDaEYUIba_L_M_lGxv9k-mCn8yKHWJMD71bawL5-ublQkMj2CggLYyF157LAEBrQ%3D%3D&xkcb=SoAI67M3CDXtcjWaYx0LbzkdCdPP&fccid=3aaabf5c54e51db9&vjs=3,Massachusetts General Hospital(MGH),"Charlestown, MA 02129","Data Analyst I
- (3283396)
GENERAL SUMMARY/ OVERVIEW STATEMENT:
The Data & Informatics team at Massachusetts General Hospital is seeking a full-time Data Analyst for a functional multi-omics subgroup led by Rachel Buckley, PhD. We are a large multidisciplinary clinical Alzheimer’s disease research group spread across Mass General Brigham, focusing on early detection and prevention strategies of Alzheimer’s disease and related neurocognitive disorders. Our group runs multiple longitudinal cohort studies (e.g., Harvard Aging Brain Study) with rich neuroimaging, plasma biomarker, and neurocognitive phenotypes. We also work closely with secondary data from other studies across the United States. The successful candidate will help to establish and maintain genomic and transcriptomic data quality control pipelines, both single-cell and bulk tissue (brain and plasma), and will participate as a co-author in various scientific projects linking multi-omics data with neuroimaging and clinical phenotypes related to Alzheimer’s disease progression. As a data analyst in a functional genomics subgroup, the successful candidate will have opportunites for presentations/publications if desired. The successful candidate will also have access to the communities and meetings of the Broad Institute of MIT and Harvard, a leading genomics institution. Although the primary responsibility of this position will be to genomic/transcriptomic data management and analysis, the successful candidate will also work closely with the Harvard Aging Brain Study Data & Informatics team, to facilitate harmonized omics and phenotype data management. We see the skills that will be developed in this job as allowing the future candidate to successfully progress towards PhD programs or industry in relevant fields (e.g. computational biology, neuroscience, applied statistics).
PRINCIPAL DUTIES AND RESPONSIBILITIES:
1) Establishment, maintenance, update, and documentation of omics data processing (quality control) pipelines for ongoing multi-omic data generation projects.
2) Working with investigators to coordinate relevant data generation/acquisition/transfer procedures.
3) Rapid assembly and manipulation of omics and phenotype datasets for analysis.
4) Implementation of bioinformatics analysis plans to produce results for publication and conference dissemination for other lab personnel.
5) Researching, assessing, and implementing novel bioinformatics models and approaches.
6) Working with investigators to develop and implement data analytics and visualizations in service of research aims.
7) Provide consultation and drafting of omics-related methods and results sections for manuscripts in collaboration with researchers.
SKILLS/ABILITIES/COMPETENCIES REQUIRED:
Advanced computer skills, with the ability to manipulate large and varied datasets. (e.g., proficiency with Python and/or Unix shell scripting preferred).
Proficiency with R.
Prior experience in computational biology/bioinformatics (e.g., PLINK, RNA-Seq alignment tools, R Bioconductor, etc.) is strongly preferred, but not necessary if the applicant has the necessary programming experience.
Experience with cluster computing is strongly preferred, but not essential.
Demonstrable statistical and data analysis skills.
Must be highly motivated and well-organized, personable, and empathetic with team members.
Level of responsibility and maturity to work under pressure and meet the requirements of clinical research neuroscience laboratory.
Very detail-oriented and highly organized.
Ability to work independently and as part of a team.
EDUCATION:
B.A., B.S. required. Master's level candidates are preferred, particularly with training in the fields of computational biology, bioinformatics, computer science, biostatistics, applied mathematics or statistics. Individuals without formal training in these areas, but with the requisite experience and desired core skills will also be considered.
EXPERIENCE:
1+ years of experience is preferred. Experience through coursework or undergraduate/graduate research projects is applicable.
EEO Statement
Massachusetts General Hospital is an Affirmative Action Employer. By embracing diverse skills, perspectives and ideas, we choose to lead. All qualified applicants will receive consideration for employment without regard to race, color, religious creed, national origin, sex, age, gender identity, disability, sexual orientation, military service, genetic information, and/or other status protected under law. We will ensure that all individuals with a disability are provided a reasonable accommodation to participate in the job application or interview process, to perform essential job functions, and to receive other benefits and privileges of employment.
Primary Location MA-Charlestown-MGH 13th Street
Work Locations MGH 13th Street 149 13th Street Charlestown 02129
Job Data/Analytics
Organization Massachusetts General Hospital(MGH)
Schedule Full-time
Standard Hours 40
Shift Day Job
Employee Status Regular
Recruiting Department MGH Neurology Research
Job Posting Mar 27, 2024",1,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0
Junior Data Analyst,https://www.indeed.com/rc/clk?jk=ca2ec7656d544f7a&bb=-vRwgfRx9vzf9UJBFBOxiT5TtSEZ9ejq0qNS5gndHX9VKE15KF4CHjkeDWFxXThLUoYBv9jzlmpeV9F6mubQgwobB3lWi9fibS7xUx0yc-HeFu6EmwtzDQ%3D%3D&xkcb=SoC867M3CDXtcjWaYx0KbzkdCdPP&fccid=ab283d08aaa89866&cmp=Upen-Group-Inc&ti=Junior+Data+Analyst&vjs=3,Upen Group Inc,"Hybrid remote in Irving, TX 75038","We are a leading job agency seeking a Junior Data Scientist to join our team and work with some of our top vendors. The ideal candidate will have strong analytical skills, excellent attention to detail, and a desire to learn and grow in the field of data analysis.
Responsibilities:
Collect, manipulate and analyze data from various sources
Prepare reports and visualizations to communicate findings to stakeholders
Identify trends and patterns in data to help inform business decisions
Collaborate with cross-functional teams to develop and implement data-driven solutions
Requirements:
Expertise a relevant field such as Mathematics, Statistics, or Computer Science
Proficient in programming languages such as SQL or Python
Strong analytical skills and attention to detail
Excellent communication skills to effectively present findings to stakeholders
Ability to work collaboratively in a team environment
**Must be a U.S Citizen**
This is an excellent opportunity for a recent graduate or entry-level candidate to gain hands-on experience in data analysis and work with a dynamic team of professionals. If you are passionate about data and want to kick-start your career in this field, we would love to hear from you. Apply today to join our team as a Junior Data Analyst.
**WE are a Job Agency**
**Must be a U.S Citizen**
Job Types: Full-time, Contract
Pay: $40,000.00 - $63,725.50 per year
Benefits:
Flexible schedule
Schedule:
Monday to Friday
Experience:
SQL: 1 year (Preferred)
Work Location: Hybrid remote in Irving, TX 75038",1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,1,0,0,0,0,0
Junior Data Analyst,https://www.indeed.com/rc/clk?jk=91c1fe0c76e641f9&bb=-vRwgfRx9vzf9UJBFBOxiS4TaA3IoeWxBzECp8GwBirf9Ka3ekF8_AnEX3G5Dbphxs0OEMCcmbCqdrV1xAcy29Zi3OXvh82m27GfD8DAU6DlRhwCPA5tTw%3D%3D&xkcb=SoAh67M3CDXtcjWaYx0JbzkdCdPP&fccid=c3a81320c168e853&vjs=3,PetDesk,Remote,"About this role
As a Junior Data Analyst, you will be helping Petvisor's enterprise customers benefit from this data by analyzing customer data and creating custom audience segments to meet their specific needs. This entails understanding the workings of the products from the data perspective, identifying customer utilization patterns, and correlating with data requests. This role offers a unique opportunity for individuals passionate about data analysis and customer satisfaction to contribute to our goal of enabling customers to succeed with our products.
Apply if you're excited to:
Analyze PetDesk's unique data, perform advanced analysis, and provide reporting to both company leadership and enterprise customers
Work closely with customers to understand their messaging outreach requirements and create customized reports using data visualization tools and techniques
Translate high-level business or product objectives into accurate, efficient, and effective segmentation solutions, delivering critical insights to the product team. Continuously refine and optimize segmentation based on customer feedback
Establish data quality standards, troubleshoot data validation, proactively identify issues, and ensure the accuracy and integrity of data in custom segments and campaigns by conducting thorough quality checks and validations
Document the process of creating custom audience segments, including data sources, methodologies, and any specific customer preferences or requirements
Collaborate with cross-functional teams including product managers, developers, and strategic enterprise account managers, to ensure alignment between customer requirements and product capabilities
Serve as the subject matter expert for delivering targeted audience-based messaging in a data-driven way. Facilitate inquiries into our audience capabilities, then interpret and explain the findings to stakeholders clearly and concisely–addressing any questions or concerns they may have
About You
University degree in a quantitative field such as Statistics, Mathematics, Computer Science, or related field
Strong analytical skills with the ability to translate complex data into actionable insights
Relentless attention to detail to ensure data results are accurate and complete
Proficiency in data analysis and manipulation using tools such as SQL and Python
Experience with large-scale database technology such as Snowflake and common tools such as Git, Bitbucket, JupyterLab are required
Experience with data visualization tools such as Tableau or similar is preferred
Internal and external consulting or customer-facing experience with the ability to effectively communicate technical concepts to non-technical stakeholders
Exemplary written and verbal communication skills coupled with unparalleled follow-up skills
Customer-centric mindset with a strong commitment to delivering high-quality solutions and exceeding customer expectations
Proactive and inquisitive learner who seeks out and capitalizes on opportunities for growth
Previous experience in a similar role or familiarity with SaaS products and/or Enterprise services is a plus
Benefits & Perks
Medical coverage for employees and dependents (80-90% covered by employer)
Employer HSA contribution with HDHP
401(k) match up to 3.5%
Dependent Care Flexible Spending Account (FSA)
Dental & Vision coverage available
Basic Life and AD&D Insurance
Short and Long Term Disability
Flexible Time Off & 13 Paid Annual Holidays
Paid Parental Leave
Pawternity Leave, Financial Pet Adoption Support & Subsidized Pet Insurance
$250 Annual Stipend for Learning and Development
Pay Range
$72,000—$88,000 USD
Petvisor is the parent company of a family of brands that includes PetDesk, Vetstoria, WhiskerCloud, Kontak, and Groomer.io. Petvisor equips veterinary practices and pet services businesses with a suite of mobile-enabled tools, facilitating better communication, service, and client retention. The company's innovative approach supports over 10,000 veterinary clinics, 400 grooming facilities, and over 20 million pet parents globally.
We are an equal opportunity and strive for a culture where everyone feels empowered to celebrate their whole, authentic selves at work. We encourage varied approaches and points of view to cultivate an inclusive workplace where difference is valued. Diversity fuels innovation and strengthens our bond with our customers and the communities we serve.
Our recruiting process is rooted in ""Who: The A Method of Hiring"" and consists of an average 2-week hiring timeline. This standardized interview process allows candidates to answer the same questions, experience the same process, and ensure a fair performance review from multiple perspectives.
Please, no external recruiters—candidate profiles submitted from external recruiting agencies will not be considered.
Notice at Collection to Applicants Residing in California
Depending on your location, the California Consumer Privacy Act (CCPA) may regulate how we manage job applicants' data. Our full notice outlining how your data will be processed as part of the application procedure for application locations is available at this link. By submitting your application, you agree to our use and processing of your data as required.",1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,1,0,0,0,0,0
Data Analyst,https://www.indeed.com/rc/clk?jk=b4ef3507cd1201f4&bb=-vRwgfRx9vzf9UJBFBOxiV8f3bf-iDYgLEOr5g-mEHeltCyo3mVCA8hEseZWB7VrLujjnsGjSKSdszLHvHO7CL2VcNHbfWXruRzhCei2Q799ftnKwYUGHA%3D%3D&xkcb=SoCV67M3CDXtcjWaYx0IbzkdCdPP&fccid=17766421840efe5a&vjs=3,ARCO a Family of Construction Companies,"Chicago, IL 60607
(West Town area)","ABOUT YOU:
Do you have strong communicsation and analytical skills? Do you have the ability to harness logic and reasoning to identify complex relationships. Do you thrive in a fast paced environment and are you looking to join a growing and dynamic team? If the answer is, “Yes!” then we have an exciting, fulltime, Data Analyst opportunity for you. Who are we? We are ARCO, a Family of Construction Companies.
We are seeking a talented Data Analyst to join our dynamic Innovation Department. The ideal candidate will possess strong Python development skills, exceptional data structuring and organizational abilities, and a proactive, self-starting attitude. The candidate should excel in communicating with associates at all levels of the organization and thrive in a fast-paced, entrepreneurial environment. ARCO's Innovation Department is dedicated to leveraging data-driven insights to enhance project efficiency and safety, optimize resource allocation, and drive strategic decision-making. This role is not remote and is located in Chicago, IL.
WHAT WE CAN OFFER YOU:
We are dedicated to the well-being of our associates and are proud to be consistently recognized as a Best Place to Work. Our compensation and benefits package not only supports our associates and their families but benefits local communities and communities around the world.
Industry-leading performance-based bonus program
Employee Stock Ownership Plan (ESOP)
Traditional and Roth 401k
Tuition reimbursement for associates
Scholarship for associates’ children up to $28,000 per child
1-month paid sabbatical after every five years of employment, plus $5,000 for travel
1-week paid volunteer leave each year
100% charitable match
Medical, dental, and vision insurance coverage
100% paid 12-week maternity leave
At ARCO, our first core value is to treat people fairly and do the right thing. We are committed to building and sustaining a culture that supports diversity and inclusion. We are proud to be a drug-free workplace and an equal opportunity employer, and all qualified applicants will receive consideration for employment.
From recruiting, training, and hiring practices to selecting our subcontractors, we understand that diversity of all those involved in the construction process enhances our ability to deliver the best solutions to our customers. We hire the best and the brightest from across the country – constructing a team of experts in architecture, design, engineering, project management, and business services.
A DAY IN THE LIFE:
Collaborate with internal business users to gather requirements and understand project objectives, and apply analytic insights
Create wireframes and other proofs of concepts to visualize data solutions
Iterate on prototypes based on feedback and requirements, ensuring alignment with project goals
Work closely with stakeholders across departments to develop and refine data-driven solutions
Develop and maintain dashboards and visualizations using tools such as Power BI, Tableau, and similar platforms
Utilize Microsoft Access, VBA, and commercial construction knowledge to enhance data processes and analysis
NECESSARY QUALIFICATIONS:
Bachelor's degree in Computer Science, Data Analytics, Engineering, or a related field
2-5 years of experience in data analytics or a related role
Proficiency in Python development for data manipulation and analysis
Ability to perform basic data engineering and warehousing tasks like accessing data through APIs, data cleaning and setting up ETL
Strong understanding of data structures and organization principles
Excellent communication skills, with the ability to articulate complex concepts to diverse audiences
Experience with Power BI, Tableau, or similar dashboarding tools preferred
Knowledge of Microsoft tools (Excel, Access, VBA), SQL, and commercial construction practices is a plus
Construction experience is a plus
Proven ability to effectively communicate with associates of all levels of the organization",1,1,0,1,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1
Data Analyst II,https://www.indeed.com/rc/clk?jk=1d2c036d95397c2f&bb=-vRwgfRx9vzf9UJBFBOxievjUGzsrdf37UlfIHVaR6g0yq5yllJ1VK_XQH7Kw6rm6uswLyScLMBy-focHsIB-FFBGF91cku7DKo9VSGA-cmVp_9Zazq4ZA%3D%3D&xkcb=SoAb67M3CDXtcjWaYx0PbzkdCdPP&fccid=d31c26f816e76796&vjs=3,"SelectQuote, Inc.",Remote,"Company Overview:
More than 35 years ago, SelectQuote was founded on one core promise: to help our customers protect the people they value most. We pioneered the way consumers shopped for term life insurance, and now, we also help people find home insurance, auto insurance, senior health insurance and more. Our quick and easy process saves consumers both time and money, and today, more than 2 million families trust us to help them with their insurance needs.
But what truly sets us apart is our people, and the opportunities to grow your career with SelectQuote are unmatched.
About the Role:
Job Summary:
The Data Analyst II role is responsible for the execution of all reporting needs for a rapidly growing team. As a Data Analyst II for SelectQuote, you will work closely with both internal team members along with members of other departments to develop and analyze metrics that will be used to achieve performance targets for a multimillion-dollar division, including both operational and financial measures. This is a data driven role in which the analysis will drive company decisions, and provide the opportunity to have an immediate impact on the business’ performance.
Supervisory Responsibilities:
This position has no direct supervisory responsibilities.
Essential Duties and Responsibilities:
Develop detailed, quantitative analysis work associated while developing meaningful insights into business performance
Standardize and maintain metrics for dashboard tools and other reporting interfaces
Analyze/develop/optimize SQL Stored Procedures and Views
Provide variance and impact analyses of lead generation, cost, revenue and contribution margin
Collaborate closely with internal operations team members to develop ad hoc reporting as needed to ensure each team has the data needed to hit KPI targets
Collaborate with members of Sales, Finance, Operations and Accounting departments
Collaborate with the Data Science and Business Intelligence groups
Skills/Abilities:
Excellent written and oral communication skills.
High level of self-motivation; ability to accomplish goals independently.
Articulate and well-spoken; strong interpersonal, communication and presentation skills.
Strong analytical and detail-oriented aptitude; a high degree of accuracy is required.
Fast learner who is career-minded and seeks additional responsibility as earned
Education and Experience:
Bachelor's Degree in Finance, Data Analytics, Data Science, Mathematics, Statistics, Business Administration or related field or equivalent years of experience required
Strong proficiency with SQL – 3+ years of experience.
Skilled with Microsoft Office, including Excel and PowerPoint
Ability to work in a fast-paced environment managing multiple projects, multiple channels and segments simultaneously in a cross-functional team
Certificates/Licenses/Registration
N/A
Financial Responsibilities (budget revenue)
This position has no budget responsibility, authority and/or level of control.
Physical Requirements:
Work is performed indoors with potential for exposure to safety and health hazards related to office work.
Could periodically travel to other office and operational sites.
The noise level in the work environment is usually moderate.
Prolonged periods of sitting at a desk and working on a computer.
SelectQuote Core Values:
Service: We create positive customer experiences.
Entrepreneurship: We create innovate & take risks.
Leadership: We build & invest in high-performing teams.
Empowerment: We embrace a changing environment.
Courage: We challenge the status quo & drive continuous improvement.
Teamwork: We help support & celebrate each other.
Disclaimer: The above statements are intended to describe the general nature and level of work being performed by people assigned to this job. They are not intended to be construed as an exhaustive list of all responsibilities, duties and skills required.",0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0
HR Data and Compensation Analyst,https://www.indeed.com/rc/clk?jk=3a9f0e84a6be03e1&bb=-vRwgfRx9vzf9UJBFBOxiWICXpb-M2X4XNonwivJskJa2PHH0iTVmpucFXUs0SII0gGfhCBwoe9pFUQ2zzx-nFJsDgiH6VPWrSV5olUUTWY%3D&xkcb=SoCv67M3CDXtcjWaYx0ObzkdCdPP&fccid=ae6d66a77551b4d6&vjs=3,Presbyterian Homes,"Skokie, IL 60077","Join the Westminster Place Team! We are an independent, non-profit senior living care organization offering full continuum of care from independent and assisted living to skilled nursing and memory care at four luxury retirement communities. Presbyterian Homes has achieved national recognition and accreditation for senior living leadership and expertise. We were established in 1904 and have an excellent reputation for providing a wide range of living options to seniors to live every day as they wish. Our team members have consistently rated Presbyterian Homes as a great workplace in confidential engagement surveys.
The HR Data and Compensation Analyst reports to the VP of Human Resources to support the development and implementation of programs and systems to improve all HR analytic, reporting, and compensation processes. The role will be directly responsible for the administration of compensation programs to include, analysis, research, assistance with establishing and maintaining competitive pay structures and other compensation programs as assigned. In addition, the role will support the VP of Human Resources in providing direct support to corporate and community leadership on analytics and reporting related to HR initiatives. The individual will work collaboratively with all members of the Human Resources Team at the corporate office and at the communities.
Essential Functions
1. Compensation Management
Administers organization-wide compensation processes (including annual merit adjustment, market adjustments, leadership incentive awards, employee bonuses, incentives and recognition rewards)
Advises managers and HR team members proactively on recommended compensation actions using established structures and guidelines for competitive market adjustments, promotions, transfers, retaining talent and attracting new hires
Provides guidance on evaluation of new or revised positions and recommends changes (salary grade, position title or FSLA classification)
Initiates and executes annual executive compensation rfp and review to be presented with VP of Human Resources to governance/compensation committee
Works with Finance Department to properly project/budget for compensation adjustments into a given fiscal year budget
2. HR Management Programs and Systems
Supports the VP, Human Resources, HR Director and HR Senior Manager in the ongoing evaluation of talent management programs
Supports the streamlining of talent management systems and processes and support development and implementation of enhanced recruiting, onboarding, orientation, performance management, engagement, retention, development, benefits, worker’s compensation, rewards and recognition and other HR programs
Researches and recommends new ideas and best practices based on agency assessments, surveys and executive feedback
Develops and implements special HR projects
Partners with the Business Systems Analyst in IT to ensure that HR systems (HRIS, ATS, Engagement/Recognition and other systems as needed) are utilized efficiently to support talent management programs and takes on direct responsibility for data integrity and management reporting
Provides communications that support Human Resources and the promotion of talent management programs
Manages Human Resources Budget and works with Corporate HR Director to input, provide recommendations, and process the annual HR Budget. Provides financial reports and updates to VP and Director on YTD spending/trends
3. Geneva Foundation Liaison
Works with Geneva Foundation to gather foundation utilization reports for HR reporting including providing data on New Hop Scholarship Utilization and expenses
Collaborates with Foundation personnel to integrate information from GF servers to HRIS system to keep track of new hope scholars for PH career growth
Serves as committee member on Emergency Need Fund Committee
Ensures that HR Department is moving forward on initiatives that grants have been given to organization for staff enhancements
4. Data Analytics
Manages reporting in Excel and HRIS systems including retention, turnover, time to fill, referrals, candidate sourcing, open positions, employee engagement, cost per hire, benefits, worker’s compensation, and utilization metrics
Develops and manages HR dashboards and other tools and management reports
Proactively develops and leads HR programs to address any negative retention trends and promote positive trends
Partners with Finance/Accounting in working on corporate strategic initiatives related to financial success for departments and organization
Expert on all HR platforms related to data analytics for the department (ATS, Worker’s Compensation, HRIS, LMS, etc.)
Assists Benefits Manager with data input to carriers, vendors, and HRIS platform during annual Benefit Open Enrollment Process.
Other Duties and Responsibilities
Develop and deliver both oral and written presentations
Other duties as assigned
Skills/Qualifications
A bachelor’s in Human Resources or related field is required.
3-5 years’ experience in human resources and/or program development.
PHR or SHRM-CP preferred
Experience in analytics, reporting and dashboards.